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 While 1 $iMsg = GUIGetMsg() … … WEnd   Action is put into the WHILE LOOP using the SWITCH and CASE STATEMENT. The GUIGetMsg() function polls…

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]: import sys from PyQt4 import QtGui, QtCore # to help add buttons #app = QtGui.QApplication(sys.argv) # #window = QtGui.QWidget() # ##set the posstion and size of the window #window.setGeometry(50, 50, 500, 500) # ##lets set the title #window.setWindowTitle(‘Date…