**Back to the list So, as I said the PyQt doc is using C o.0
Yes, I read the tutorials, I'll google for some books and things related. On Tue Nov 18 2014 at 10:48:44 AM Vincent Vande Vyvre < vincent.vande.vy...@telenet.be> wrote: > Le 18/11/2014 13:18, Juan Christian a écrit : > > I have this simple code that load any Qt Designer .UI file: > > > > from PySide.QtCore import QFile > > from PySide.QtGui import QApplication > > from PySide.QtUiTools import QUiLoader > > > > > > def loadui(file_name): > > loader = QUiLoader() > > uifile = QFile(file_name) > > uifile.open(QFile.ReadOnly) > > ui = loader.load(uifile) > > uifile.close() > > return ui > > > > > > if __name__ == "__main__": > > import sys > > > > app = QApplication(sys.argv) > > MainWindow = loadui("main.ui") > > MainWindow.show() > > app.exec_() > > > > Let's say I have a QTextEdit called txtbox. How can I access this > > txtbox inside my Python code? > > > > > How about MainWindow.txtbox ? > -- > https://mail.python.org/mailman/listinfo/python-list >
-- https://mail.python.org/mailman/listinfo/python-list