I'm really stupid at this, but I'm trying to do a VB macro in Emulator software (Reflections) and the thing compiles and seems to work okay except for one little thing. It doesn't put the user's input data that is prompted by the InputBox into the application I'm running the macro in.
The description for when to use InputBox is this:
Description
"Opens a dialog box containing a prompt and a text box for user input, and returns the contents of the text box after the user clicks OK."
My statement is this:
Dim eeSerial As String
eeSerial = Session.InputBox("Please Enter Employee Serial #", "Serial#"
.Transmit CR
With Session
.Transmit "1" & CR
It doesn't put the number in the field because the field is numeric, not alphanumeric. What is the proper statement to use to prompt for user input of a number which will actually be read as a number not text?
Any help would be greatly appreciated.
The description for when to use InputBox is this:
Description
"Opens a dialog box containing a prompt and a text box for user input, and returns the contents of the text box after the user clicks OK."
My statement is this:
Dim eeSerial As String
eeSerial = Session.InputBox("Please Enter Employee Serial #", "Serial#"
.Transmit CR
With Session
.Transmit "1" & CR
It doesn't put the number in the field because the field is numeric, not alphanumeric. What is the proper statement to use to prompt for user input of a number which will actually be read as a number not text?
Any help would be greatly appreciated.