Jump to content

azeazezar

Active Members
  • Posts

    40
  • Joined

  • Last visited

azeazezar's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Perfect, just wat i needid, ty gafrost!!!
  2. I don't know any c++ , so i don't know how to use that... Is there any easyer wayto do it?
  3. parent process...
  4. Bumb, i kinda need help here...
  5. Your isp probably has one...
  6. Where did i say it was easy?, How would you know wat i'm thinking?I was only trying to help.... Thats wy i suggested something simpler... Your current script takes care of that. Who said you have to use outlook? there are faster email clients...,take a look here. Sure, you can do that as well, i was just posting an alternative.
  7. Is there a way to get a "creator process ID" of a process? i hope you guys can help me, couse i can't figure out how to get it
  8. you could simpley have the program send you an email with the price when its done... that would be a lot simpler...
  9. is this wat yer looking for? http://www.autoitscript.com/autoit3/docs/functions/Dec.htm
  10. while declareing the variable its the amount of stuff you can put in it while using the variable it is a lot of strings and numbers ect that you can store or read example: Dim $Array[5] ;creates an array for $i = 0 to 4 ;Fills the array $array[$i] = "This is element " & $i next for $i = 0 to 4; displays the array msgbox(0,"", $array[$i]) next
  11. #include <Array.au3> #include <GUIConstants.au3> Dim $data Dim $b GUICreate("dynaTree test",300,300) Dim $tree = GUICtrlCreateTreeView(10, 10, 280, 280) GUISetState(@SW_SHOW) $section = IniReadSectionNames(@ScriptDir & "\phones.ini") If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.") Else Dim $MainTreeViewItems[$section[0]+1] $MainTreeViewItems[0] = $section[0] For $i = 1 To $section[0] $MainTreeViewItems[$i] GUICtrlCreateTreeViewItem($section[$i],$tree) Next EndIf While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE GUIDelete() Exit EndSelect WEnd For $i = 1 To $section[0] CreateItem($i*3, $i) Next func CreateItem($ItemToAdd, $SectionNumber) GUICtrlCreateTreeViewItem($ItemToAdd, $MainTreeViewItems[$SectionNumber]) endfunc Does this help?
  12. http://www.autoitscript.com/autoit3/files/archive/autoit/
  13. Ahh, right...ok, Lar, you where right, it's kinda like pig farming...
  14. Nah..., did you ever do that?Its nothing like pig farming. You have to use a computer
  15. this wat you'r looking for? mkkk.rar
×
×
  • Create New...