Issues with adding keystrokes to Type Into activity

I am trying to upload data from excel onto a program, but when I do something like row(0).ToString+ “[k(tab)]”, it appends the “[k(tab)]” to the value of row(0)… so it gives me something like 450[k(tab)].

Also, in some parts I want to add 10 tabs before using the type into activity. How do I go about doing this?

Can you try unchecking simulate click in the type into activity property @Hisuhong?

2 Likes

Fine
kindly disable Simulate Type property in the property panel of TYPE INTO activity and enable Send window message property
image

that would work for sure
the reason when simulate type is enabled it wont take the hot keys passed along with the string while sendwindow message is there to use it instead

hope this would help you
Cheers @Hisuhong

1 Like

@Hisuhong

Kindly disable Simulate type in Property Panel.
Refer this for second part

Thanks,
Suresh J

1 Like

Thank you so much for your help everyone! I will try it out now :slightly_smiling_face:

1 Like

Great
Cheers @Hisuhong

Have you tried row(0).ToString+ vbTab ?