Jump to content

ChiefORZ66

Members
  • Posts

    12
  • Joined

  • Last visited

About ChiefORZ66

  • Birthday 11/20/1989

Profile Information

  • Location
    Gleisdorf
  • WWW
    http://kareff.tk

ChiefORZ66's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, How can I find out what's the ComputerName in the Network when i know the IP? So i have the IP and i will become the ComputerName!PLZ HELP ME THX
  2. How can i run an progess in an label???? PLZ HELP
  3. ahhhm... das gleiche script per autostart nur als tray-icon (also GUI = @SW_HIDE) und sonst sichtbar (@SW_SHOW) starten. wie geht das?
  4. if I do mine script in startup, has to go that GUI as hidden!, HOW??? HELP HELP
  5. THX a lot!
  6. Wha?Wha?What?
  7. #include <GUIConstants.au3> $gui = GUICreate("GUI",230,170) $filemenu = GUICtrlCreateMenu("File") $optitem = GUICtrlCreateMenuitem("Options",$filemenu) $separator = GUICtrlCreateMenuitem ("",$filemenu,7) $exititem = GUICtrlCreateMenuitem ("Exit",$filemenu) GUISetState() While 1 $msg = GUIGetMsg(1) Select case $msg[0] = $exititem OR $msg[0] = $GUI_EVENT_CLOSE ExitLoop Case $msg[0] = $optitem GUISwitch($gui) $optgui = GUIOpt() GUIDelete() EndSelect WEnd Func GUIOpt() $gui2 = GUICreate("Options", 195, 89, -1, -1,$WS_POPUP) GUICtrlCreateTab(5, 5, 189, 83) GUICtrlCreateTabItem("Generally") $optab = GUICtrlCreateButton("Abort", 130, 54,40, 20) GUISetState(@SW_SHOW) While 1 $optmsg = GUIGetMsg() Select Case $optmsg = $optab GUIDelete($gui2) GUISwitch($gui) EndSelect WEnd EndFunc Help, when i click on "Abort" in the GUI "Options" It needs more than 10 seconds that it again reacted!!!Help
  8. Then how can i make an for-loop i doesn't understand it!!! PLZ
  9. please give me an example for an script that ping all computer in the network! PLZ
  10. Still one ask! How can i disable the x in an GUI? PLZ
  11. can somebody help me why this script doesn't functioned $gui = GUICreate("Test",230,170) $ipi1 = GUICtrlCreateInput("" ,10, 35, 25, 20) GUICtrlSetLimit(-1, 3) $label1 = GUICtrlCreateLabel(".",38,39, 4, 13) $ipi2 = GUICtrlCreateInput("" ,46, 35, 25, 20) GUICtrlSetLimit(-1, 3) $label2 = GUICtrlCreateLabel(".",74,39, 4, 13) $ipi3 = GUICtrlCreateInput("" ,81, 35, 25, 20) GUICtrlSetLimit(-1, 3) $label3 = GUICtrlCreateLabel(".",109,39, 4, 13) $ipi4 = GUICtrlCreateInput("" ,117, 35, 25, 20) GUICtrlSetLimit(-1, 3) $button = GUICtrlCreateButton("OK", 20, 80) GUISetState() $ip = GUICtrlRead($ipi1) & "." & GUICtrlRead($ipi2) & "." & GUICtrlRead($ipi3) & "." & GUICtrlRead($ipi4) While 1 $msg = GUIGetMsg() Select case $msg = $button msgbox(0,"Test","IP: " & $ip) exitloop case $msg = $GUI_EVENT_CLOSE exitloop EndSelect WEnd
×
×
  • Create New...