claytonjgordon
Technical User
I want a button to send an email with a button in it that adds the db to the user’s workspace and opens up a form in edit mode. I can create the email and I can create the button manually, but I can't seem to find out how to have that button created inside the email through automation i.e., not typing in the commands manually in the code window once the button is created.
Here's what I got so far:
Is there a way to move the cursor to the programming pane and type in the code via [EditInsertText] or something?
Or is there an easier method like copying and pasting the button somehow?
Any help you could provide like pointing me in the right direction would be appreciated.
Dominus Nihil
(Master of Nothing)
Here's what I got so far:
Code:
@Command([MailComposeMemo]);
@Command([EditInsertText];EMAIL);
@Command([EditGotoField] ; "Subject");
@Command([EditInsertText];"Project Manager Evaluator Request (PME)");
@Command([EditGotoField] ; "Body");
@Command( [EditInsertButton] ) ;
(This is where the code I can't figure out would go)
@Command([ViewRefreshFields])
Is there a way to move the cursor to the programming pane and type in the code via [EditInsertText] or something?
Or is there an easier method like copying and pasting the button somehow?
Any help you could provide like pointing me in the right direction would be appreciated.
Dominus Nihil
(Master of Nothing)