How to Capture Info in User Input Dialog Boxes
Keywords:
Here's a handy little trick to capture informatin in a dialog box, and copy it to the clipboard.SendKey("{END}") ;Puts the cursor at the end of the line SendKey("+{HOME}") ;highlights the data to the beginning of string. SendKey("^{INSERT}") ;copies to the clipboardData can then be stuffed into a variable or text file, etc.
Article ID: W13821Filename: Capturing Dialog Box Information.txt