gui

  • Generate AutoIT GUI and Assign Actions to Form Elements

    This is a quick code to create a BUTTON , CHECKBOX and COMBO BOX and assign some action to them using “MessageLoop Format”. The general message loop format is

      Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls the GUI to see if any events…

  • Python PyQt Gui Basics Button Window PyQt4 Pt1

    This is just some quick scrap notes on the basics of Python GUI building using PyQt. In [1]:

     

      the ‘init‘ statements runs anytime we call call the Window class we have created and it runs all the code in the Window class the _init__ method calls the super constructor and then sets…