Hello again,
I've got an issue. I would like to be able to execute a specific piece of VB code from a string statement.
Let me explain. For instance, I know it's possible to run a SQL statement by using the command:
DoCmd.RunSQL STRING_SQL
Is it possible to do something similar, but not using SQL statements? For instance, is it possible to change the form title by using a Run command???
For example:
STRING_CODE="Me .Caption=" & Chr(34) & "My Form" & Chr(34)
DoCmd.??? STRING_CODE
Please let me know if you need more information.
Thanks in advance!
I've got an issue. I would like to be able to execute a specific piece of VB code from a string statement.
Let me explain. For instance, I know it's possible to run a SQL statement by using the command:
DoCmd.RunSQL STRING_SQL
Is it possible to do something similar, but not using SQL statements? For instance, is it possible to change the form title by using a Run command???
For example:
STRING_CODE="Me .Caption=" & Chr(34) & "My Form" & Chr(34)
DoCmd.??? STRING_CODE
Please let me know if you need more information.
Thanks in advance!
Comment