I'm trying to type a full string in some field but the type function doesn't write all of the text.
I got an object of a text field and I'm trying to fill it with type function. For some reason, the type function writes only part of the text. First of all, I remove all the text that used to be and then type the new text with type function.
InputAreaObj.Type micCtrlDwn + "a" + micCtrlUp 'select the text
InputAreaObj.Type micDel 'remove it
InputAreaObj.Click 0,0 'click on the object
InputAreaObj.type CodeToExecute 'type the string
I just want the text to show up, full of it and not part of it. I tried to use split to separate the string to array and it doesn't work. thanks!