Hi,
I ran across a cool way to link an oracle table to an access app.
Here's the command:
DoCmd.TransferDatabase acLink, "ODBC Database", "ODBC;DSN=;UID=;PWD=;SERVER=", acTable, "oracle_Table_Name", "Access_table_name", False, False
When the code reaches this command it prompts the user to enter the fields you want to come with the linked table.
Question: Is there a way to avoid the prompt and just go on to the next line of code?
Thank you!
I ran across a cool way to link an oracle table to an access app.
Here's the command:
DoCmd.TransferDatabase acLink, "ODBC Database", "ODBC;DSN=;UID=;PWD=;SERVER=", acTable, "oracle_Table_Name", "Access_table_name", False, False
When the code reaches this command it prompts the user to enter the fields you want to come with the linked table.
Question: Is there a way to avoid the prompt and just go on to the next line of code?
Thank you!