0
votes
2answers
29 views
Why GetPixel() is so slow using Ruby (or probably Perl or Python too) and how to do it by other methods?
I tried using Win32's GetPixel() with Ruby and it is really slow even on a Quad Core Intel machine. I think for example, if I get a really small region such as 100 x 10 pixels = 1000 pixels and it …
0
votes
6answers
91 views
Good application for automated testing of .Net GUIs written in C#
Background
The company I work for is developing a .NET Graphical User Interface (GUI) written in C# and we're almost ready to test it.
Question
Is there a list of standard accepted programs that …
0
votes
2answers
16 views
datagrid and horizontalScrollPolicy
look at this code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalScrollPolicy="off">
<mx:VBox …
1
vote
15answers
257 views
Programming Languages for writing GUI application
Other than .NET or Java, which language can be used to write an application for Windows and Linux?
1
vote
2answers
45 views
Is it OK to change a model outside the Swing worker thread?
In a "serious" Java GUI app, you'll have models behind many of your GUI elements: A DocumentModel backing a JEditorPane, for example, or a ListModel behind a JList.
We're always told not to make GUI …
0
votes
1answer
18 views
setting the side for the radio button gwt
hi,
how can make the text of the radio box appear on the left side of the button instead of the right?
on left to right languages the standard is the text on radio button is on the right of the …
0
votes
1answer
16 views
Programmatically scroll the windows mobile window
I have a form that has a number of controls on it (enough that the scroll bar is visible). How can I programmatically control the scroll window?
I can fake it now by calling the .Select() method on …
0
votes
1answer
14 views
Dealing with multiple GUIs in Flash/Actionscript 3
I'm trying to figure out the best way to deal with writing multiple GUI windows using Flash Components. I thought the best way to handle this was to use a layer for each window that I want, and simply …
0
votes
2answers
22 views
How to create the notification icon in the right side of the statusbar on blackberry?
I am able to create the notification icon in the statusbar using ApplicationIndicator class. It shows up in the middle of the screen on the indicator area. How do I create the icon in the right side …
0
votes
0answers
5 views
What is the best way to create a custom derived grid control?
I want to create a custom grid derived from DevExpress grid control. I just want to add several columns and add custom painting. I will then use this control in 2 different forms.
The problem is that …
0
votes
0answers
12 views
NetBeans: Updating GUI Source is not reflected in Design or During Runtime
I'm new to NetBeans and am struggling with how to correctly use its GUI builder. I can construct the GUI just fine with the design editor, however, when I make changes directly to the source code, …
0
votes
1answer
41 views
writing to GUI issue
hello,
So i have a setup where two imacs, imac_1 and imac_2, are connected through firewire. imac_1 sends some debugging information to imac_2 and on imac_2 i have a program in c++ that captures …
0
votes
3answers
29 views
JEditorPane can’t take Google search queries, why?
Hi,
I am creating a very basic web browser using JEditorPane just to teach myself Swing and GUIs in Java but am having trouble implementing a Firefox-like Google Search bar.
I'm not if it's due to a …
1
vote
4answers
52 views
Java: Linebreaks in JLabels?
I'm trying to make a Swing JLabel with multiple lines of text. It's added just fine, but the line breaks don't come through. How do I do this? Alternatively, can I just specify a maximum width for a …
0
votes
2answers
23 views
SynchronizingObject for an event
With Timer objects, I can set the SynchronizingObject property to avoid having to use invoke when updating the GUI from the timer's event handler. If I have a class that instead subscribes to an event …
