gui

Need to control "Z Order" of windows within WPF Application.

I have an application that, due to OpenGL airspace issues, has to host several controls in separate, exclusive windows. This is working quite well, but I am setting all of the windows to TopMost=true, which means that they do stay showing even when they lose focus, but they also overlay other applications... Also, it kind of binds me t...

Changing multiple .fig files in Matlab systematically

I want to browse a directory where many Matlab GUI's (.fig files and their related .m files) are stored and change them systematically. For each, I want to search for a certain popup menu and, if it exists, delete some specific options. I usually use get() and set() or similar functions to fiddle with GUI's, but these functions require ...

How to make C++ code draw on Java components

We are designing physics app, and we would like to have it written in Java, and also we want to use root (root is writen in C++). Root has some nice graphical features -- it is able to draw very nice 3D charts, and I'm thinking whether it's possible to embedd those charts in Java app. Is there any way to make C++ code draw on for examp...

How to create an image map using Java Swing?

I need to make an image map using Swing that displays a background image, and then when the mouse hovers over (or clicks) specific hotspots, I need to pop up a 'zoomed-in' image and have it display. I was thinking of extending JPanel to include an image reference and have that drawn thru the paintComponent(g) method. This part I have d...

Populating a subform with different displays as a GUI in Access 2007

This is my first time building a UI in Access (using Access 2007), and I'm wondering what is the Right Way (TM) of going about this. Essentially, I have several different queries that I'd like to display as pivot charts, pivot tables, tables, and reports. Eventually I'm also going to have to build forms to manipulate the data as well,...

My own tableheader?

I want to make a table header: The steps I have taken Made a user control Placed a TableLayoutPanel on it(this is basically a grid layout?) Added and removed the number of columns/rows I wanted Placed a label in each cell For each label set its dock to fill and borderstyle to fixedsingle However the borders are not lined up against ...

What makes a good options/settings dialog box?

I was browsing the Worst UI You’ve Ever Used question, when I realized that many of them involved the options dialog of some application. This is obviously an area where a developer could get "lost" easily, since there are often a large number of options available which can be hard to organize. (Especially to the stereotypical programmer...

Clear DateField in Flex 3

there's no way to clear a date after it has been inserted! I had to add an ugly button near it to clear it programmatically... Do you have a nicer solution? ...

trying to determine best user interface for layouts - winform button that shows dropdown

I am adding layout management to my winforms GUI which really just means that you can "Save" the current column settings with a "Key" so for example you can have "View 1" or "View 2". anyway, i dont have much real estate on the screen but i am trying to figure out the best way to: Allow you to save the current layout as a "Saved Layo...

GUI for Standard ML?

I started learning Standard ML recently out of curiosity. So what I know is that is has an efficient compiler (MLton) which allows us to freely use abstractions without worrying about performance. It would be perfect if I could do some GUI programming with Standard ML, too. Is there anything like Gtk, Qt, or WxWidgets binding for Standa...

How can I stop window rendering and later resume?

I'd like to prevent my window from being updated until I finish receiving data from the server and render it. Can I hook on the WM_PAINT event, or better still call some Win32API method to prevent the window from being updated and unfreeze it later? More info: In the context of an MMC snapin written in C#, our application suffers from a...

Why isn't there a Windows.Forms like program for C++ (is there?)

I don't think there is any program like VS Windows.Forms for C++. Now I know that "Windows.Forms" are in themselves a C# "thing", but it eludes me why no one has put together a similar graphical construction interface for C++ Windows GUIs. Am I just not aware of it/them? Should I try to make one (that'd be a challenge, for me anyway, bu...

How to make a continuous TrackBar in c#?

How can I make a continuous trackbar in c# using VS2005? Right now, I have a trackbar but it's only letting me select the values that are ticks. How can I make the trackbar continuous? Thanks. ...

What are UI Patterns?

What is the difference between User Interaction Design Patterns and User Interface Design Patterns. I have heard that one is the subset of the other, but how do thy correlate? What is the correct term for ui patterns e.g., from http://uipatternfactory.com/? ...

VB.net simple threaded GUI based program. Where to put the thread

I have written a small GUI based vb.net program that speaks to embedded devices via the com port. The GUI code contains a class which all communication to the embedded device is handled through (com port device, communication protocol, parsing info, holding device related info after each read).That class is called EDComms. I wanted to a...

How to make a general form in Flex to deal with Entity CRUD?

I would like to create a general form so that it can deal with creation/read/update of an entity. When creating an entity, it may only contain a subset of all fields; when updating the entity, it may contain a different subset of fields; and when reading the entity, none of the fields are editable. Anyone with experience in designing suc...

How do you add GUI to this java program?

I know only basic stuff in java. And I need to create a GUI for this type of program. It shows your credit card info. It has some other classes and makes use of the rmiregistry. This works fine in console but I need to show it in a GUI. The first thing that promps here is to enter your name (java Shopper localhost my name). Then it shows...

Black Berry Table View

here is my app. how to add table view or grids in the following. should i draw every thing plz help this is my code import net.rim.device.api.ui.*; import net.rim.device.api.ui.component.*; import net.rim.device.api.ui.container.*; import net.rim.device.api.system.*; import net.rim.device.api.util.*; import java.util.*; /*An applicati...

Any suggestions for best practices to follow when creating UI prototypes using sketchFlow for multiple screen sizes?

Hi all am looking to prototype the UI for an windows application. The app will be deployed on several display devices with different (physical) screen sizes and aspect ratios. Would like to be able to generate scenarios optimized on one display and quickly check if the layout is OK on different screen sizes, orientations. That is, I'd l...

XNA and GUI controls (eg. xaml and xna)

Hello. Is there a way to get textboxes, labels and other wpf controls in xna that supports margins, etc that flexes for window size? ...