Newbies markfairbairn Posted November 8, 2001 Newbies Posted November 8, 2001 Hello... The following script pastes the contents of 'gname' at the end of the data already in the 'comments' field. However I need to be able to paste the data at the cursor position in the 'comments' field. Any suggestions would be appreciated. Copy [select, "gname"] Go to Field ["comments"] Paste [] thank you. [email protected]
BobWeaver Posted November 8, 2001 Posted November 8, 2001 I recommend using the Set Field command instead of copy and paste. If you want to append the contents of gname to comments, then you would have: Set field[comments, comments&gname] If you want to insert gname at the beginning of comments, you would have: Set field[comments, gname&comments]
Newbies markfairbairn Posted November 8, 2001 Author Newbies Posted November 8, 2001 Thanks Bob. I'll try that. best regards...
Recommended Posts
This topic is 8420 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now