TGhost 0 Posted February 8, 2007 I have a programm that send "00" or "01" or "02"....... I want to catch this value with HotKeySet. Ok this is no Problem with 01 and bigger value, bacause i can ignore the 0 like this: HotKeySet("2", "anythig") but my Problem is the value "00"!! What can I do, know anybody a solution?? Thanks Share this post Link to post Share on other sites
evilertoaster 3 Posted February 8, 2007 You can only catch one key at a time (or a combonation of keys at once)...you may be able to do somthing like- hotkeyset("0","Catch0") while 1 wend func Catch0() hotkeyset("1","Done01") endfunc func Done1() whatever endfunc basic idea and there's some otehr error handling ect that needs to be there but ehh.... all in all though you're better off trying to find a better way of doing...whatever your trying to do what is the intended function of all this? Share this post Link to post Share on other sites