Jump to content

sypard

Members
  • Posts

    8
  • Joined

  • Last visited

sypard's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Are there any Auto-it to VB Convirter ??
  2. where is your help
  3. Hello I made a small script to download me files from specific foler on my server then delete them but i alwais face an error at this line <<$aFile = _FTP_FindFileNext($h_Handle)>> this is the script $Host = "" $User = "" $Pass = "" $Port = _FTP_Open("CONNECTION") $Server = _FTP_Connect($Port, $Host, $User, $Pass) Local $h_Handle Local $aFile[10] $aFile = _FTP_FindFileFirst($Server, $sheepsurl, $h_Handle) For $i = 1 To $aFile[0] $aFile = _FTP_FindFileNext($h_Handle) If Not @error Then _FTP_FileGet($Serve, "/folder/" & $aFile[10], $sheepsfolder & $aFile[10], True) If Not @error Then _FTP_FileDelete($Server, $sheepsurl & $aFile[10]) EndIf EndIf Next can you help me to fiend a solution, or another script to do this function
  4. Hi all I've added a gif file on a script, but when i start the script, the gif file was fixed (no move) so how can i solute this problem
  5. I need this script, I want the image to change when i change radio #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 346, 177, 192, 124) $Pic1 = GUICtrlCreatePic("img\1.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $green = GUICtrlCreateRadio("green", 184, 56, 113, 17) $red = GUICtrlCreateRadio("red", 184, 96, 113, 17) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 If GUICtrlRead($green) = $GUI_Checked Then $Pic1 = GUICtrlCreatePic("img\1.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) If GUICtrlRead($red) = $GUI_Checked Then $Pic1 = GUICtrlCreatePic("img\2.jpg", 24, 24, 120, 120, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  6. Hello, For Example If I have this script after compiling it. the exe file dont contain the image "Slide1.GIF" So what the solution for this
  7. Hi Gedzy , First: there is proplem in Second: how can I Open Facebook page (after logging-in) in AutoIt Window
×
×
  • Create New...