Jump to content

SirDarknight1200

Active Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by SirDarknight1200

  1. Maybe my question is not accurate but what I'm trying to say is in >this link taietel created a panel in the left side and used labels like tabs. But as I am a novice, the code is too complicated for me. Is there any easy way to do it? P.S. Sorry, If I'm bothering you with my questions.
  2. Another question : 1.If I put any bg image in my gui and put some controls in there, they won't work, how can i make them work?
  3. Thank u for ur quick reply, I'll let u know if it works!
  4. I'm still a noob and now I am going to ask some more nooby questions : 1.Kindly explain the _Singleton, the help file isn't enough detailed(for me) 2.How can I make a script which will create a directory at a place(suppose desktop) in it's first run and everytime it is run it'll check if the directory exists and if it doesn't then it'll create the directory again. 3.How to open a folder using autoit?
  5. Sorry,If I'd been rude. Open koda - File - Import and you'll see external import which is Form Captor. But I dunno why it doesn't work, is it un-complete or is it my fault?
  6. Did u read my question?? The video doesn't show Form Captor
  7. Hey, the windows 7 theme files doesn't work. This UDF works for only themes of win xp
  8. How to use the Form Captor? Doesn't work for me
  9. #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 615, 438, 192, 124) $Input1 = GUICtrlCreateInput("Input1", 24, 32, 265, 21) $Input2 = GUICtrlCreateInput("Input2", 24, 80, 265, 21) $Button1 = GUICtrlCreateButton("Button1", 296, 240, 225, 73) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 If $Input1 > $Input2 Then MsgBox(0,"Test", "Greater") Else MsgBox(0, "Test", "Smaller") EndIf EndSwitch WEnd What I want is if I put 2 in input1 and 1 in input2 and press the button. the msgbox will show greater. But it shows smaller everytime
  10. Thanks. I'VE GOT MY answer
  11. How do I edit the color,design of a gui's selected items? As an example, is it possible to make a gui in autoit like following?
  12. Wondering if there is any way to make an installer(setup) with autoit Ex :
  13. I was thinking if it is possible : When I first open my script it will show a msgbox/gui etc.... but other time I'll run it it won't show it Example : #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> MsgBox(0, "Test", "Welcome to my project") ;~It will only be shown on the first run of this app $Form1 = GUICreate("Form1", 448, 276, 321, 124) $Button1 = GUICtrlCreateButton("This is a button", 56, 104, 329, 81) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
  14. lol, maybe I am getting old and losing memories
  15. Another problem :: FileWriteLine($filepath2 "reg add %key% /v Start /t") It doesn't work too
  16. The following code won't work : FileWriteLine($filepath1, "key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Service\Mouclass"") I want to write the following line in a file named 1.txt "key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Service\Mouclass" But it'll give me Syntax Error
  17. You're spamming!!!
  18. Autoit : Easy to learn BASIC-like syntax Easy to make Windows Applications (GUI) Very helpful Recommended for beginners C : One of the most popular language Low Level Language Support High level features Good for console applications Modular Programming Hard for beginners C++ : An updated version of C Good for Console Applications Not suitable for GUI Advanced type of syntax Many features Not recommended for beginners C# (C Sharp) : C# is a simple ,modern,object oriented language derived from C++ and Java Good for both Windows Apps and Console Apps The classes and data types are common to all of the .NET languages C# includes native support for the COM and windows based applications. Easy to beginners Java : Object Oriented Looks familiar to existing programmers: related to C and C++: No Pointers Not so hard Java does automatic garbage collection, which prevents memory leaks
  19. Kindly see the following picture and you will get what I wanna say :
×
×
  • Create New...