Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-23-2009, 11:15 AM
Member
 
Join Date: Apr 2009
Posts: 1
Rep Power: 0
ahmed.kotb is on a distinguished road
Default strange swt exception
i was just making my first steps in swt world and i faced that strange exception

Code:
** (SWT:7229): CRITICAL **: giop_thread_request_push: assertion `tdata != N
this message appears in console after i close the application...
the swt code it self is very simple and i dont know if it was the reason for that exception...any way here it is
Code:
		Display display = new Display();
		Shell shell = new Shell(display);
		shell.setText("Hello world!");
		GridLayout gl=new GridLayout();
		gl.numColumns=2;
		shell.setLayout(gl);
		Combo combo = new Combo(shell, SWT.READ_ONLY);
		combo.setItems(new String[] { "A", "B", "C" });
		combo.setSize(100, 200);
		
		Label label =new Label(shell,SWT.CENTER);
		label.setText("ahmed");

		Label label2 =new Label(shell,SWT.CENTER);
		label2.setText("kotb");
		
		shell.pack();
		shell.setLocation(display.getPrimaryMonitor().getBounds().width/2, display.getPrimaryMonitor().getBounds().height/2);
		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		display.dispose();
thanks in advance...
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
strange code tghn2b New To Java 3 12-23-2008 12:51 AM
AffinedTransform strange behaviour Echilon AWT / Swing 3 12-11-2008 10:58 AM
strange Error message little_polarbear New To Java 4 08-26-2008 12:45 AM
Strange problem Tamir Eclipse 1 08-18-2008 10:44 PM
Strange behaviour in swing cbalu AWT / Swing 1 05-23-2008 10:23 PM


All times are GMT +2. The time now is 04:51 PM.



VBulletin, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2009, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org