Jump to content

87450kalle

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by 87450kalle

  1. Jesus!! I was still using the old udf... it works perfect with the new one... for a little while I almost thought that my brain was stupid... Sorry!!
  2. Hi, I'm looking for a simple example how to receive a midi message from an external midi device. In my case it is a foot controller... I'm able to send messages but I cant get the midi in to work... have tried this post "http://www.autoitscript.com/forum/index.php?showtopic=89944&st=0&p=647010&hl=midi%20input&fromsearch=1&#entry647010" but it doesnt work. So if anyone have an actual au3 example how midi in should work then it would be great if you could share it. Br. Johan
  3. I had the same problem, changed $struct = DllStructCreate("udword") to $struct = DllStructCreate("dword") and now it is working... //Johan
  4. Hi, I wounder if anybody knows if there is a way to send SMTP messages by using a AutoIT script? Regards Johan
  5. Ok, I wrote a stand alone program that took care of it. My problem was that I want to have a GUI that is always on top so that I can quit all Autoit programs that is running at ones. Thanks for a fast reply. //Johan
  6. Hi, I need some help with a script. I am calling a function inside a loop and I want the loop to continue at once without waiting for the function result. Regards Johan
  7. Hi, I would like to write the following string to a html file... Any suggestions how I can do that? <td class="apptextPlain" width="81" style="height: 17px" valign="top"> //Johan Think I got it.... 'string' //Johan
  8. Hi, Need some help with autoit Gui, I want to create a Gui with a Edit control or something that looks like it (white backround and a scrollbar) where the user cant write any text. I also want to place buttons and pictures inside this control. Is there a way to create this? One thought was to place a html window inside the Gui, is it possible to do that? Regards Johan
  9. Thats it!! Finally, Thanks Kurt u made my day:-) and I found the help text in the Beta help file. (will be using that one instead...) Thanks again /Johan
  10. Hi, When I open a file dialog and select any file then the script cant open the temp.txt file. If I choose cancel in the file dialog the script will open the temp.txt file. Why is that? //Johan $message = "Select new driver file" $var2 = FileOpenDialog($message, "C:\Windows\system32\drivers\", "All (*.sys)") $file = FileOpen("temp.txt", 0) ; Check if file opened for reading OK If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf
  11. Ok, i added the part that doesn´t work. It is pretty messy... The script works fine, but if I perform the task from row 197 to 207, then row 416 - 445 will generate the error message: Array variable has incorrect number of subscripts or subscript dimension range exceeded temp.au3
  12. Fast Reply!! Thanks!! /Johan
  13. Hi, Having a problem in my prog. that i can´t work around. Get the following error message: Array variable has incorrect number of subscripts or subscript dimension range exceeded. Any suggestions?? //Johan
  14. Hi, I am writing a program where I want to replace a specific line in a txt file. I know the line number that i want to replace but I dont know how to get the program to replace it with my new text line. Appreciate any suggestions... /Johan
  15. I found a way to fix it.... /Johan
  16. Hi, Working a program and need some help. If I click on a button in my parent window a child window pops up with a close button. I wounder if any body knows a smart way to disable the parent window if a child window is open? So, the only way to access the parent window again is to press the close button in the child window. Regards Johan
×
×
  • Create New...