Jump to content

Lynix

Members
  • Posts

    9
  • Joined

  • Last visited

About Lynix

  • Birthday 12/15/1987

Profile Information

  • Location
    Bavaria (that´s near Germany)

Lynix's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Normally I don't use the GUI-On-Event-Mode. But you could try this, if you want to solve the problem with GUI-On-Event-Mode: .... GUICtrlSetOnEvent ( $Button1, "ok" ) GUICtrlSetOnEvent ( $Button2, "close" ) while 1 Sleep(1000) WEnd Func ok() Do what you want EndFunc Func close() Do what you want 2 EndFunc
  2. Maybe I should install AutoIt on this computer to look on the help file
  3. I hope $c=$a doesn't change the size of $c. Else you should use a second Loop.
  4. Don't use GuiCtrlRead. You need GuiCtrlGetState!
  5. If you want every element of Array $a added with the same element of Array $b it could look like this (I'm not a Pro) For $start=0 To 99 $c[$start]=$a[$start]+$b[$start] Next If you want the contets of $b should be written in $c after the contets of $a it could look like this #include <Array.au3> $c=$a For $start=0 To 99 _ArrayInsert($c, $b[$start], $start+100) Next
  6. Format C: Don't worry that it show's something with Explorer.exe. Normally you can repair everything with your Windows-Installation-CD. Do you have an updated Scanner?
×
×
  • Create New...