KenHigg
Registered User
- Local time
- Today, 17:32
- Joined
- Jun 9, 2004
- Messages
- 13,291
In Hyperion I'm using JOOLE application object to copy records to the clipboard and then paste them into an Access table. I can do it manually (the paste part) and using code I can even get the data to the clipboard but when I use:
Application.DoCmd.OpenTable("Table1")
to open the table it will not paste with:
Application.RunCommand(acCmdPasteAppend)
It appears to be because the entire row in the table is not selected. I tried to find something to select the row or all rows but can't get anything to work - Any ideas?
Application.DoCmd.OpenTable("Table1")
to open the table it will not paste with:
Application.RunCommand(acCmdPasteAppend)
It appears to be because the entire row in the table is not selected. I tried to find something to select the row or all rows but can't get anything to work - Any ideas?