Jump to content

Chann

Members
  • Posts

    7
  • Joined

  • Last visited

Chann's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Melba23, thank you for the advice, but it is not a key-logger. When user double clicks on any word, my application use that event and use that word to do something.
  2. I have a complex AutoIt script that listen to user keystrokes and do some tasks according to them. Applications runs in background. It stops to respond to user inputs after while. How can I make sure scripts runs all the time. I tried restarting script after set time, but it interrupts my application's requirements. A while loop should be run all the time in my Script. Is there any method to refresh my script automatically?
  3. Are there any existing code to convert English words to its base form? (when we give a word in any form(eg past, singular,plural etc) I want to get the base form of that word.
  4. In my application I want to get data from a database(which contains more than 50 000 entries). When I use "access" database, Autoit script take some time to response(nearly 2seconds) Are there any better way to handle faster than that?
  5. I use _IsPressed() function to identify when user press specific key combination. But I want that to happen user clicks only in specific program(eg Adobe Reader, Ms word). I don't want anything happen when user click that key combination when opening folders etc. How do I do that with my Autoit script?
  6. Thank you jchd for your nice answer and for the advice.
  7. I'm making a accdb query in this function. Func Get_meaning($adoRs1,$adoCon1,$word1) $query = "select Sinhala from words where English='"&$word1&"'" $adoRs1.Open($query, $adoCon1) $word=$adoRs1.Fields("Sinhala").Value $adoRs1.Close return $word EndFunc When the $word1 is not in the database, i want to do some modification to the $word1 and recheck in the database. But when the $word1 is not found in the database, script gives an error and exit. Please give me some help
×
×
  • Create New...