Drag-and-drop GUI-testing for Windows 7 Programming Software Development by EddieC … 3.2, the latest version of flagship automated GUI testing tool from Bredex, now "officially" …new actions in GUIdancer 3.2 improve support for testing GUI-embedded tables, context menus--such as those that … the tool previously required a restart. Support for testing dynamic web-application components also has been added. GUIdancer… Re: Drag-and-drop GUI-testing for Windows 7 Programming Software Development by amilyjoe GUI is a an innovative step and make the users happy but these automated tools make the GUI coding very simple. This new version GUIdancer 3.2 will make the programming more easy and can help the novice programmer a lot because it gives the facility of pick and drop and make the programming less error prone. Re: GUI for job submission in Grid Programming Web Development by cmaheshwari16 testing is not a problem, just the way of implementation is more important. Please share if you can. [QUOTE=sindhuravindran;1512221]i have developed using php..but dint test yet..[/QUOTE] Re: Suggest a testing tool! Programming Software Development by Andy90 Mostly GUI testing, no database at all Re: GUI - creating buttons with action Programming Software Development by musthafa.aj …If you must revise this method, please backup this GUI file for JFrameBuilder * to retrieve your design properly …//= The following main method is just for testing this class you built.=// //= After testing,you may simply delete it. =// //======================================================================// … Testing input Programming Software Development by Katana24 I've created a simple GUI that's purpose is to square or cube a given … now want to do is to fine-tune it by testing the input. For example if the user enters a non… GUI tkinter help (Image button and background) Programming Software Development by tkpython Hi just wonderin if anyone can help with my GUI, I got this far, but want to have an…history(self): tkMessageBox.showinfo("Pyge Visitor",''' No History +++++++++++++++++++++++++++++++++++++++ Testing Date: 10/03/2008''') def create_widgets(self): # Menubar menubar =… Gui Help ( toolbar ) Programming Software Development by PieMan2004 …); MyUI ui = new MyUI(slider); int tw,sw,startGap; public Testing(){ setSize(250,100); setLocation(400,200); setDefaultCloseOperation(EXIT_ON_CLOSE); slider.setUI… = (sw-tw)/2; } public static void main(String args[]){new Testing();} } class MyUI extends javax.swing.plaf.basic.BasicSliderUI { public MyUI… GUI database query drop row error Programming Software Development by TIM_M_91 … '1'"; 5. String writeString3 ="DROP TABLE testing "; //// it works but when I try 6.…String v = NAME.getText(); String writeString3 ="DROP TABLE testing "; try { myStatement.executeUpdate(writeString3); TABLENAME.setText("&… Re: Python GUI Programming Programming Software Development by Ene Uran …notebook widget class for Tkinter: [code=python]# testing a notebook widget class for Tkinter (modified) #….pack(fill='both', expand=True) self.active_page = pg # testing the module if __name__ == '__main__': root = tk.Tk….geometry("400x200+100+50") root.title('Testing a Tkinter notebook widget') nb = Notebook(root)… Re: Python GUI Programming Programming Software Development by sneekula … expand='yes', fill='both') # put in some text for testing ... for k in range(10): s = 'now calling #'…50+(k*100), text=s, fill='beige') # for testing canvas (x, y) canvas.bind('<Double-1>… % (350, 250, 100, 80)) root.title('testing the scrolled canvas') ScrolledCanvas(root).mainloop() [/code] New to Java, Need Help With FractionCalc GUI. Programming Software Development by ppotter3 …); } } } [/CODE] [CODE] // PROGRAM: P#3 - Fraction Calculator Classes (GUI w/ Frames) // FILE: FractionCalc.java import javax.swing.*; import java…= st1.nextToken(); sNum2 = st2.nextToken(); sDen2 = st2.nextToken(); // TESTING PURPOSES ONLY System.out.println("Numerator1 = " +sNum1 + &… very strange GUI problem Programming Software Development by alastair1008 …. open up configure GUI 2. get congiguration 3. close configure GUI 4. open up main GUI now when I am testing in netbeans, this… Re: Starting wxPython (GUI code) Programming Software Development by vegaseat …row, col) self.select_list.append(val) print self.select_list # testing ... # now you can do something with the selected data …'): line_list = line.split(' ') data_list.append(line_list) #print data_list # testing data_dict = {} for row, item in enumerate(data_list): #print row,… Re: Starting wxPython (GUI code) Programming Software Development by sneekula … for input and output of text based data: [code=python]# testing wxPython's # wx.TextCtrl(parent, id, value, pos, size, style…) # create a MyFrame instance and show the frame MyFrame(None, 'testing wx.TextCtrl()', (300, 480)).Show() app.MainLoop() [/code][B][COLOR… Re: very strange GUI problem Programming Software Development by alastair1008 i have done some more testing and it only works in the netbeans ide, it does not work in jGrasp Re: very strange GUI problem Programming Software Development by alastair1008 …password = setupGUI.getPassword(); gui = new GUI(chatChannel, handle); // create the main GUI this code sets up the main GUI public GUI (String chatChannel, String… + " as user: " + handle); initComponents(); // initializes all the GUI elements - created by netbeans setVisible(true); } the problem i have… Re: Python GUI Programming Programming Software Development by Tech B … as the frontend? I use some pen-testing suites that use html as the GUI. Here is an example, kind of ugly…;> <html> <body> <h1>GUI via web page</h1> <p>Some… examples of using html for a GUI</p> <ol> <li>Element… Re: Starting wxPython (GUI code) Programming Software Development by vegaseat … the richedit format. Here is a short example ... [code=python]# testing wxPython's # wx.TextCtrl(parent, id, value, pos, size, style…) # create a MyFrame instance and show the frame MyFrame(None, 'testing wx.TextCtrl() part1', (300, 250)).Show() app.MainLoop() [/code… Re: Starting wxPython (GUI code) Programming Software Development by sneekula …300 + ix label = symbol #print label, ix, btn_id # testing self.buttons2.append(wx.Button(self, btn_id, label)) self.Bind…(btn_label, btn_label) #print event.GetId(), btn.GetId(), btn_label # testing self.SetTitle(message) # standard periodic table elements (q symbolizes an… Re: Starting wxPython (GUI code) Programming Software Development by vegaseat …, just take a look at this short example ... [code=python]# testing wxPython's # wx.TreeCtrl(parent, id, pos, size, style) # presents… MyFrame instance and show the frame MyFrame(None, 'wx.TreeCtrl() testing', (400, 300)).Show() app.MainLoop() [/code] Re: Starting wxPython (GUI code) Programming Software Development by sneekula … may be already somewhere. I am testing wxPython's fancy wx.AboutBox widget: [code=python]# testing the fancy wx.AboutBox() widget # snee… Re: Python GUI Programming Programming Software Development by Ene Uran Just testing out some of the many PyQT GUI toolkit widgets: [code=python]# explore PyQT QLineEdit, QPushButton, QLabel, QMessageBox, # … Re: Python GUI Programming Programming Software Development by vegaseat Introducing color to your PyQt widget ... [code]# testing the PyQT GUI toolkit # use setStyleSheet(format_string) # to set the background color of … Re: Python GUI Programming Programming Software Development by sneekula The Python module pygame is a GUI for games. In this case we use OOP. Let's … = random.randrange(0, screen.get_height()) def test(): """testing the class Square""" pg.init() # create the… Re: Python GUI Programming Programming Software Development by Ene Uran The PyGTK GUI toolkit can make a list box, but it is not …', model.get_value(iter, 0)) return # a list of names for testing name_list = [ "Frank Ferkel", "Erich Meitinger", "… Re: Python GUI Programming Programming Software Development by sneekula Explore the Tkinter GUI toolkit to draw a circle: # draw a circle with given … show the recangle the circle fits into cv.create_rectangle(rect) # testing ... print(get_square(x, y, radius)) # (10, 10, 90, 90) print… Re: Python GUI Programming Programming Software Development by bumsfeld …, height) self.setGeometry(100, 150, 320, 100) self.setWindowTitle("Testing dialog input") self.name = "" btn_name = QPushButton("… Re: Python GUI Programming Programming Software Development by agerven … and Python. C for the real-time part, Python for testing, calibration and rapid prototyping. In my spare time I'm… Re: very strange GUI problem Programming Software Development by jamesperkins0 I would like to think that this line below maybe your issue... However without seeing the full code, its difficult to see. is it possible for you to post the Full code? initComponents(); // initializes all the GUI elements - created by netbeans