invoke keybd_event,10,0,KEYEVENTF_KEYUP,0 ;shift
invoke keybd_event,VK_OEM_PLUS,0,KEYEVENTF_KEYUP,0 ;+
Getting
D:\masm32\code\bot\bot.asm(98) : error A2006: undefined symbol : BBh
D:\masm32\code\bot\bot.asm(98) : error A2114: INVOKE argument type mismatch : ar
gument : 1
I'm using regional settings english[ireland]
I'm trying to simulate a + press all the others work except this one.
Checked it in the windows.inc file and it looks fine.
Any ideas lads?
Thanks.
D:\masm32\code\bot\bot.asm(98) : error A2006: undefined symbol : BBh
Try defining it as "0BBh" :toothy
(hex numbers that start with an alphabetic character need to be prefixed with a zero)
Omg :lol
How stupid i feel now hehe.
Thanks Ted