The system through which people interact with a computer. UI stands for User Interface. There's now a Stack Exchange site for UI, Interaction and User Experience design: ux.stackexchange.com

learn more… | top users | synonyms (2)

0
votes
0answers
9 views

Changing the title bar on a Python window

I'm looking to edit the title bar in a python window. I have compiled multiple different python widgets into one window using a main.py to get the ball rolling. I feel like I should add a piece of ...
0
votes
1answer
25 views

Cross-thread operation not valid during multiple event handling

I'm having UI issues in a Windows Forms application. I know there are countless posts on the Internet regarding this issue but I still could not find an appropriate solution. I have this method: ...
0
votes
1answer
9 views

Creating user profiles that are editable by users

Several sites have the ability for users to create profiles from Facebook to StackOverflow. I have experience with the WordPress CMS, is it possible to create a user profile upon registration that a ...
0
votes
1answer
16 views

Qt Creator and main window background image

I have a question about Qt creator. I would to add a image as background of my main window. what is the best way to add this background image? The remaining part of the my main window must be ...
1
vote
1answer
28 views

WPF - prevent user actions queuing-up while application is busy

What approach would you suggest for ignoring user requests (like mouse clicks) while application is busy (meaning that UI thread is blocked doing something). Concrete example for this might be sorting ...
1
vote
0answers
12 views

PyQt Targeting of Specific Objects

This is my first time posting in stackoverflow so please bear with me. I am trying to create a GUI using PyQt for a research application and am having some stylesheet trouble. This program uses CSS ...
-2
votes
3answers
36 views

Login Help GUIEditor

I am trying to create a login screen but when I enter in information into the username and login fields I get a window that gives me a java.lang.NullPointerException error. I want the username and ...
0
votes
2answers
27 views

input-prepend in Bootstrap responsive grid

<div class="container-fluid"> <div class="row-fluid"> <div class="span6 well"> <div class="clearfix control-group"> <div class="input ...
0
votes
2answers
13 views

Title for popup-menu in matlab

I've made a popup-menu in Matlab using uicontrol, instead of using GUIDE. Here is my code: figure; String = sprintf( '%d#', 1:5); String(end) = []; CString=regexp(String , '#' , 'split'); ...
0
votes
1answer
13 views

How do I format the string of a uicontrol to not use scientific notation?

I have a popupmenu using the uicontrol class within matlab. However, the numbers that are greater than 1 million are expressed in scientific notation: This is generated using the following code: ...
0
votes
0answers
16 views

Focusable composite - SWT

Is it possible to create a focusable composite in SWT? I'm catching all keyboard events via Display filter, but there are some problems when the focus is on the tree or list - GTK+'s default action is ...
1
vote
1answer
16 views

HTML5 Canvas - Context Sensitive Menu

I'm drawing a number of rectangles on an HTML5 canvas and want to be able to right click on the boxes and get a context sensitive menu displayed. The menu should be specific to the type of box being ...
-2
votes
0answers
73 views

Why is it common to not remember the password when registering fails?

When registering for an account on a website and an invalid field causes registration to fail, typically the values in a form are persisted with error messages when the registration form is ...
0
votes
0answers
20 views

OpenCV buttons not displayed

I create buttons as in open source doc of opencv , but they are not displayed. Any help ? OpenCV documentation void callbackButton () { cout<<"click "; } int main(int argc, char** argv) { ... ...
0
votes
0answers
9 views

WPF rendering difference between Windows client versions

I have a TextBlock where the text is getting trimmed at WordEllipsis level. The text is also Wrapped. It's working the way I want it to on all my Windows clients except for one. Example of the ...
0
votes
1answer
15 views

In R / gwidgets, how to create a new Widget from Scratch - links between boxes / nodes?

I want to have an interface that allows to draw links between boxes and save the results (box1 is connected to box2, 3 to 4 and so on) as shown in the picture below: I do not really know where to ...
-1
votes
0answers
16 views

javafx table with integer column and fast sorting

this question is some what continuation of my other question which is this. Refer to answer by James_D The only change am making is Now I need Integer column instead of String columns which has fast ...
0
votes
3answers
27 views

How to build this RMI project using Netbeans?

I have been following this step by step tutorial about RMI : http://www.javacamp.org/moreclasses/rmi/rmi.html and already succeeded in compiling and run this project by using command prompt as what ...
-2
votes
2answers
53 views

Which software to add a UI to my program [closed]

Ive been programming C++ for a few years (3+) to intermediate level in console and using windows forms.. However, now my target I want to build up to is some graphic rendering software like Photoshop ...
0
votes
1answer
17 views

Adding controls at runtime in from derived class in MFC

I have two classes. class DialogBase is inherited from CDialog class DialogDerived is inherited from DialogBase. BOOL DialodDervied::OnInitDialog() { CDialogBase::OnInitDialog(); //Add ...
0
votes
3answers
34 views

Create a two dimensional array of different data types (Date and double)

I am trying to make a program to do calculations of doubling time based on multiple readings at different points in time. I am using a Netbeans JFrame with a JTextfield and a DateChooser with an add ...
0
votes
1answer
13 views

how to connect MS Access database with matlab (transfer data from GUI and save in database )

Hello ppl I am trying to work with databases and I am new to Matlab. I want to manipulate databeses created in MS Access but I don't know(I hope find a way to enter data from GUI (this GUI created ...
1
vote
1answer
38 views

Transparent window with blurred corners

I want to have a WS_POPUP window with blurred edges like this illustration: Any suggestions? I've been looking into layered windows but still don't know how I could achieve the full transparent ...
0
votes
0answers
15 views

How to use functionality of EasyGUI in one of several tabs?

I am using GUI Layout Toolbox as well as EasyGUI from MATLAB file exchange to develop my GUI. I have created 6 tabs using the Layout Toolbox and I would like to use the functionality of EasyGUI (such ...
0
votes
1answer
15 views

Drop down “context” menu appearing in Eclipse that I can't get rid of

A few days again, a new drop-down auto-complete menu started showing up in Eclipse. I have no idea how I turned it on, I don't find it useful, and I can't figure out for the life of me how to get rid ...
0
votes
2answers
26 views

Add a JLabel on key press

I have a simple JFrame that implements a KeyListener. I want to add a label when the user type the letter A. When I do so The label doesn't appear directly. When I resize the frame it appear. But it ...
0
votes
0answers
25 views

R : How to control the right click of mouse in gWidgets

In gWidget GUI I have seen a feature on right click on mouse Copy Save How can I use that Save handler so save my shown dataset in table ? Kindly refer to the image below : Also in my code I ...
0
votes
1answer
15 views

Qt & Qt Designer - Making widget fill the parent without padding

I wanted to make my widget fill the parent window, even when the window resizes, so I read this: How to make a Qt Widget grow with the window size? But this solution created a new problem: my widget ...
-6
votes
4answers
73 views

Can this be made in Java? [closed]

I am using WindowBuilder to create GUI for my app. Since I have alot of frames inside main frame I liked idea from this app: So when user click on button different frame (different labels and so ...
0
votes
1answer
20 views

Auto Sizing Labels in Qt

I'm developing a Qt application and it's currently in an internal beta test. One member of the company has Windows configured to display text larger than its normal size, which breaks my UI. The About ...

1 2 3 4 5 680
15 30 50 per page