Jump to content

cleiton12

Members
  • Posts

    17
  • Joined

  • Last visited

cleiton12's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Testing and aproved tyy man
  2. does not understand that you want to open the alert file Settings.ini
  3. hello people Today I was wondering how do I open the file indicated in setting.ini pressing the $Button1 Here is the script compress and open #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $test = IniRead("Settings.ini", "Global", "Stest", "1") If $test = "1" Then $test = InputBox("test", "Type in your test Path [EXAMPLE : C:\LOL\test]") IniWrite("Settings.ini", "Global", "test", $test) EndIf If Not FileExists($test & "\test.exe") Then MsgBox(0, "No test.exe found", "Cannot find test.exe") Exit EndIf #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 208, 106, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 32, 16, 145, 41) $Button2 = GUICtrlCreateButton("Button2", 64, 64, 89, 25) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  4. hello autoiters I have a doubt wanted to know if a button is possible to open an Archiving outside the script example I have a picture and when I press on the button opens the picture example script #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 302, 186, 192, 124) $Button1 = GUICtrlCreateButton("Open Picture", 24, 32, 257, 97) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  5. tested and approved Thanks
  6. i have this script Func Help() MsgBox(0, "Test", "now I want the text to be centered on lines 8 this way", 0) now I want the text to be centered on lines 8 this way
  7. Tyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy Man's you are a super HElper very gooood
  8. yes I'm very new to autoit and thank you very much because I'm learning here with you guys Thank yourself and I am already working on the problem and already understood the problem haha I'm Brazilian and not understand very much English and difficult the guys that reason they feel this
  9. this is the program I want to create a select all the groups TEst
  10. yes i don't understand how to fix that
  11. error look Func _Flip($chkid, $sGrp) error: "Func" statement has no matching "EndFunc"
  12. sorry I have the script and has many names and I really wanted and a check box that selects groups because what you send me one that was selected by name type A and B by group I wanted
  13. yes that and what I was looking for thank you thank you even serious
  14. and so I want more I want in groups so #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form2 = GUICreate("Form2", 217, 294, 228, 172) $Group1 = GUICtrlCreateGroup("Group1", 8, 8, 97, 185) $Checkbox2 = GUICtrlCreateCheckbox("Checkbox2", 16, 48, 97, 17) $Checkbox3 = GUICtrlCreateCheckbox("Checkbox3", 16, 72, 97, 17) $Checkbox4 = GUICtrlCreateCheckbox("Checkbox4", 16, 96, 97, 17) $Checkbox5 = GUICtrlCreateCheckbox("Checkbox5", 16, 120, 97, 17) $Checkbox6 = GUICtrlCreateCheckbox("Checkbox6", 16, 144, 97, 17) $Checkbox1 = GUICtrlCreateCheckbox("Checkbox1", 16, 24, 97, 17) $Checkbox7 = GUICtrlCreateCheckbox("Checkbox7", 16, 168, 97, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group2 = GUICtrlCreateGroup("Group2", 112, 8, 97, 185) $Checkbox8 = GUICtrlCreateCheckbox("Checkbox8", 120, 24, 97, 17) $Checkbox9 = GUICtrlCreateCheckbox("Checkbox9", 120, 48, 97, 17) $Checkbox10 = GUICtrlCreateCheckbox("Checkbox10", 120, 72, 97, 17) $Checkbox11 = GUICtrlCreateCheckbox("Checkbox11", 120, 96, 97, 17) $Checkbox12 = GUICtrlCreateCheckbox("Checkbox12", 120, 120, 97, 17) $Checkbox13 = GUICtrlCreateCheckbox("Checkbox13", 120, 144, 97, 17) $Checkbox14 = GUICtrlCreateCheckbox("Checkbox14", 120, 168, 97, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $Group3 = GUICtrlCreateGroup("Group3", 8, 200, 201, 89) $SelectallGroup1 = GUICtrlCreateCheckbox("Select all Group1", 16, 216, 105, 17) $SelectallGroup2 = GUICtrlCreateCheckbox("Select all Group2", 16, 232, 97, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
×
×
  • Create New...