Advertisement
yankwizera

Ivuriro.py( one of the forms that i wish to call from menu)

Jul 24th, 2011
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. from PyQt4 import uic
  2.  
  3. (Ui_Ivuriro_Identification, Ivuriro_Identification) = uic.loadUiType('Ivuriro_Identification.ui')
  4.  
  5. class Ivuriro_Identification (Ivuriro_Identification):
  6.     """Ivuriro_Identification inherits Ivuriro_Identification"""
  7.  
  8.     def __init__ (self, parent = None):
  9.         Ivuriro_Identification.__init__(self, parent)
  10.         self.ui = Ui_Ivuriro_Identification()
  11.         self.ui.setupUi(self)
  12.  
  13.     def __del__ (self):
  14.         self.ui = None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement