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)

4
votes
2answers
106 views

Deploying an R app with a GUI [closed]

I developed an R application and I want to deploy it. Currently the application consists of a set of functions to be run from the command line, like an R package. In order to deploy it, I am ...
0
votes
1answer
41 views

User Interface doesn't update output with position data

I am creating a user interface using (Qt) and I am attaching it to my C/C++ motion application using shared memory as my form of Inter Process Communication. I currently have a class which I created ...
-2
votes
0answers
21 views

Derby desktop java swing application [closed]

Are there any detailed text and video tutorials on developing Java Swing Derby (or any kind of SQL, NoSQL) database desktop applications except those published on Netbeans website? I could compile an ...
1
vote
1answer
18 views

optimal message box size with wordwrap 2

Having a fixed size characters and a text which should wrap the whole words into next line, what would the optimal algorithm to calculate the fitting centered square which should be closest to the ...
1
vote
0answers
31 views

Dynamically change rcarousel using ajax

I am using rcarousel (http://ryrych.github.io/rcarousel/) and ajax (call to a php page) to show different galleries. I have a page that shows a bunch of different pictures from different galleries, ...
0
votes
1answer
67 views

How to make buttons call functions

After defining my word count method thanks to another member, I am now creating a GUI to go along with it. I have created three buttons, one for browsing for a file, one for counting the words and ...
0
votes
4answers
60 views

simple java gui display not working

import javax.swing.*; import java.awt.*; public class gui { JFrame f; JLabel fname,fsex,age; JTextField t1; JTextField t2; JTextField t3; gui(){ frame(); } ...
1
vote
2answers
74 views

GUI Library: How long should it take to write one from scratch? [closed]

For a single C++ programmer, how long should it take to write a GUI framework from scratch? Rough specification: You have access to boost, image loading functions, font rendering routines, ...
-4
votes
0answers
16 views

optimal message box size with wordwrap [closed]

Having a fixed size characters and a text which should wrap the whole words into next line, what would the optimal algorithm to calculate the fitting centered square which should be closest to the ...
2
votes
2answers
45 views

Swing GridBagLayout component resizing

I am working on a project and my goal is to make the components resize according to the size of the window. I am using GridBagLayout for this, however I am experiencing some problems when making the ...
0
votes
1answer
30 views

Creating Android UI with photoshop - How to implement final product?

Let's say you've created an app's UI in photoshop. For the purpose of this question I'll try to keep it simple. You have a background color, a few custom buttoms, and a variety of other things. My ...
0
votes
1answer
71 views

Creating a snake game, when you press two directions quickly snake eats itself [Java]

I hope this makes sense, but I'm trying to make a snake-type game in Java and if you press two directions at the same time/ too fast the snake goes on top of itself making you lose. For example if you ...
0
votes
1answer
16 views

Java GUI Creation Using 2dGraphics

I noticed swing is really hard to make a GUI look good. Instead of using JComponents, can you bind somehow text, images, buttons, etc. to 2dgraphic instead of using swing. In other words I would like ...
-1
votes
1answer
30 views

Form.ActiveForm occasionally works

I know it's poor design, but I've been transferring control of my GUI Form Class to other classes in my C# program. This has been working fine for a long time now, using: var form = Form.ActiveForm ...
0
votes
0answers
21 views

Making translations based on a database

I am being completely hypothetical at this point, but since I am new to c#, I wanted to ask the opinion of others to see what the better ways of approaching this might be. At this point, I have a ...
0
votes
2answers
20 views

Drag and Drop Files into Folders via Python GUI?

Problem I'm trying to make a gui in python that displays two directories in two side-by-side panels and their contents (via tree, thumbnails, list, etc), which then allows the user to either: drag ...
-3
votes
1answer
27 views

iOS Token Field [closed]

Any way of doing the described in this question in iOS? NSTokenField with mixed token/string input, possible?
0
votes
1answer
13 views

JQuery Sortable, optimize code for multiple input fields

I have 10 text input fields, each one working with select2 and jquery sortable. Actually, to have sortable function for each field, I've duplicated code for each one and it works well. But as you can ...
2
votes
1answer
36 views

Unittest Tkinter File Dialog

Question Is there any way to automate a tkFileDialog selection to run it through unittest? The following is the only use of tkinter in my application: root = Tkinter.Tk() types = [('Comma Separated ...
1
vote
1answer
24 views

Sortable lists in Ext JS 4

I'm trying to implement a sortable list in Ext JS 4. Pretty much almost exactly like the following example: http://jqueryui.com/sortable/ I'm aware that one can create a Grid Panel with a Grid Drag ...
0
votes
2answers
32 views

Class variables are not visible inside element event?

I am hoping to create a web application, this means that the HTML elements will have to be pretty dynamic as they will be being created and moved around being handled by different other elements a ...
0
votes
0answers
26 views

Java SWT doesn't work outside eclipse

i have a Java SWT Project, i want to export as a runnable Jar file. Inside of eclipse it works well (JUNO) with no Problems. After export (tried both ways [Runnable Jar File or jar File with manuel ...
0
votes
0answers
36 views

Implement GUI on an embedded system run on rtos [closed]

How to implement a GUI on an embedded system that runs an RTOS? we communicate with the embedded system from a linux pc via COM or Telnet, would I setup a GUI on the linux (like using WxPython) that ...
0
votes
0answers
13 views

Kendo UI horizontal Splitter get stuck.

Kendo UI, horizontal Splitter get stuck. When click on the Splitter page get stuck has to reload the page. I s this is a known issue what could there be a solution. I tried the Kendo.all.min.js ...
1
vote
4answers
52 views

What is wrong with this JFileChooser

I have created simple gui application using JFilechooser for opening a pdf file. The gui has a browse button and a textArea to visualize the contents of the file. I have created two classes: ...
-1
votes
1answer
26 views

sqlite database with the list view pyqt [closed]

I need to visually represent pyqt database with the list view or table view. Is there any function to link to the database? Then I have a doubt about sqlit there any way to generate a unique id, ...
1
vote
1answer
29 views

How many unit test or what kind of unit test do you do when developing a iOS app? [closed]

I know there are many tools to do unit testing out there and I've tried some. But actually I don't do any unit testing when developing an iOS app.(Which I think makes me a bad iOS developer) So my ...
0
votes
2answers
26 views

.setVisibility(View.VISIBLE) lagging my UI

How slow is that method, really? I have a ListView and a custom adapter, which populates my list with the following sample XML: <RelativeLayout> <TextView /> <View /> ...
1
vote
1answer
57 views

What exactly is the process for creating a GUI for Android? [closed]

I am new really new to Android development. I am trying to set up a GUI for an Android App with Eclipse. When I add components to the GUI such as a button, a yellow triangle with exclamation point ...
0
votes
1answer
22 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
2answers
40 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
13 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
34 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
49 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
16 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 ...
-3
votes
3answers
69 views

Login Help GUIEditor [closed]

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
35 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
16 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
29 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
28 views

Focusable composite - SWT [duplicate]

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 ...
2
votes
1answer
29 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 ...
-1
votes
0answers
84 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
29 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
19 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
23 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
vote
4answers
60 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
65 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
21 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
42 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
22 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 2 3 4 5 410