Jump to content

Darfi

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Darfi

  1. Hello, I need to create short script for: - Import persons data( name, score) from XLS then I need sort this data to 2 fields related to score and name but ,.... in every from 2 fields must be in the final result approx same score in total count + name. Thank you for any idea Im totaly lost with this. Thank you(noob in AUTOIT)
  2. Im looking on it. Its seems very nice
  3. Hi all, Im noob in AutoIt:) could you please tell me how make simple installator: - I will need to run some simple parameters which run some external file in graphical mode but in this I need to change some parameters (rollbox probably). For example what Ineed to run:"start /wait msiexec.exe /i "XXXXXX.msi" /l*v "%temp%XXXXXXXX.log" AGENT_SERVER= Parameters which i need to change" I was start with this(Its without any condition): #Region ### START Koda GUI section ### Form=C:\Data\03_Application\KODA\Forms\01_test.kxf ; Main menu table__________________________________ $CA_ITCM = GUICreate("CA_ITCM", 615, 421, 388, 411) GUISetIcon("C:\feed_viewer_setup.exe", -1); GUISetFont(10, 400, 0, "MS Sans Serif") GUISetBkColor(0xFFFFFF) ;Progress button__________________________________ $Progress = GUICtrlCreateProgress(8, 376, 593, 25) GUICtrlSetResizing(-1, $GUI_DOCKBOTTOM) ;Switch button___________________________________ $Change_button = GUICtrlCreateCombo("Choose location", 24, 104, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL)) GUICtrlSetData(-1, "[b]XXXXX|YYYYY|ZZZZZ|AAAAAAA[/b]") GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") GUICtrlSetCursor (-1, 0) ;PICture $Pic1 = GUICtrlCreatePic("C:\suit.jpg", 184, -40, 505, 401); ;Start Install button $Start_install = GUICtrlCreateButton("Start Install", 24, 208, 145, 113) GUICtrlSetBkColor(-1, 0xE3E3E3) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### Could you help me how to solve it? Thank you for response
×
×
  • Create New...