What keyboard functions? I've only used the mouse for everything I've tried so far.
I'm still very inexperienced with Darkbasic Pro, I still need to find out why the mouse commands stop working when the program window becomes inactive.
The mouse commands I use are these ones
mouse_click(10,10)
function mouse_click(x as integer, y as integer)
`clicks the mouse at x,y
load dll "user32.dll",1
call dll 1,"SetCursorPos",x,y
call dll 1,"mouse_event",0x2,0,0,0,0 : `leftmouse down
call dll 1,"mouse_event",0x4,0,0,0,0 : `leftmouse up
delete dll 1
`other values
`LEFTDOWN = 0x2
`LEFTUP = 0x4
`MIDDLEDOWN = 0x20
`MIDDLEUP = 0x40
`RIGHTDOWN = 0x8
`RIGHTUP = 0x10
endfunction
I downloaded Matrix1Utils yesterday, is there anything in there that I could use?
I speak English, I don\'t speak DarkBASIC!