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
0
votes
1answer
10 views
QScriptEngineAgent and QtScriptDebugger
I've been traying to make some implementation using QtScript and QScriptDebugger, but I wonder if ayone have information regarding the following topic.
When using the function attachTo() of ...
0
votes
1answer
28 views
Text based adventure game using GUI having issues with being able to continue from pressing buttons
I'm trying to make a Text Based Adventure Game in Java using GUI for a summative project, the issue I am having is when I press option A, it will work once, and doesn't work afterwards. I haven't ...
0
votes
0answers
13 views
I need an advice from where I can get a similar user interface as another system
We are using a system for managing our day to day tasks (as shown in the below picture). And now we want to extend this system, by building a new asp.net mvc web application from scratch.
But I need ...
0
votes
2answers
31 views
Java JTable dynamic population
This is the first time I've ever tried using a Java Swing JTable, so I'm probably doing something silly.
I'm trying to dynamically update a JTable within a JFrame on a GUI, this is the code I've ...
0
votes
1answer
15 views
how to passing objects to jlist and loading them by click on the result
Ok,here i've some objects that they're loading from DB,as a tag search result,i want to pass the code list that i get it from the "searchCodeTags(String tags)" method to the GUI Jlist and selecting ...
-2
votes
0answers
11 views
WinRT turn off Transistion/Animations within an app
Some of my Customers are complaining, when navigating pages quickly, that the transition animations are making the UI seem unresponsive.
Is there a a way to globally turn off animations?
0
votes
0answers
45 views
What should my function be a member of in Qt?
I'm making a simple GUI with Qt Creator.
I'm trying to make an 'openFile' function in the mainwindow.cpp file, but I don't know whether to make this function a member of the mainwindow itself, a ...
0
votes
1answer
6 views
How do I place controls in a tab panel?
While using the 'pointer tool' I have placed a tab panel on a card. Then I added a scrolling field to the first tab.
When I switch to the 'browse tool' the field is visible on all the tabs including ...
0
votes
1answer
5 views
Parse and traverse client-side code in C#
I want to write automated tests for our website. My initial idea is to write some code to fetch the content of our webpage from our server and ensure the content is as we expect. However, to do this, ...
1
vote
0answers
8 views
Creating a remote host file explorer using jsch
In a project Im working on I included the functionality of transfering files between the local machine and a remote host. Still, the end users dont use it, because they dont like having to type in ...
0
votes
1answer
28 views
Passing an Object to swing GUI
I have 5-6 GUIs(seperate classes) one opens another according to their functionality, every GUI takes an object inside, I pass the final Object in a flight booking system like this to my GUI when a ...
3
votes
3answers
230 views
Checking if device is iPad
What is wrong with this code? I want to be able to check if the current device the user is using is an iPad but it keeps giving me errors.
if (UIUserInterfaceIdiom == UIUserInterfaceIdiomPad)
{
...
1
vote
1answer
32 views
Java Desktop Application on Network basis
Is it possible for a Java Desktop Application coded with java Swing to use in multiple computer through networking? I have a Java Desktop Application with MySQL as database. I want to deployed it in ...
1
vote
1answer
19 views
wxGlade GUI behavioural problems
I have designed a GUI with wxGlade in python and the design within the program looks fine.
But once i had generated the code and ran it in idle, it looks much different.
I would like to know why ...
5
votes
3answers
3k views
Removing Icon from a WPF window
I am able to remove the window icon from WPF window using WinApi's, however I get the icon again in the application window when I run just the executable of the WPF project.
How do I remove the icon?
...
-4
votes
0answers
10 views
designing sales order form in wpf [closed]
I am a novice WPF developer. I want to develop sales order invoice form in WPF. I am struck at designing sales order form, I mean what fields should I put into it, what controls should I use, how to ...
1
vote
1answer
2k views
Moving text from a textfield to textarea with a button
This code compiles and runs but it does not copy the text from the text field then place it into the text area.
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class ...
0
votes
4answers
144 views
validating correct answer with loops in python
Sorry for the non descriptive question I had no idea how to word it.
I'm trying to write a program (GUI) where I ask the users questions and then in return they answer and see if they are correct ...
1
vote
2answers
501 views
javafx gridpane - how to center elements
i have a gridpane filled with 1-letter-labels. here is an image:
int charSpacing = 1;
int charsInWidth = 28;
int charsInHeight = 16;
double charWidth = 15;
double charHeight = 20;
GridPane gp = new ...
1
vote
3answers
45 views
Python: get a checkbox - the easiest way
or perhaps the lazy way..
I'm looking for a python module that has some build-in GUI methods to get quick user inputs - a very common programming case. Has to work on windows 7
My ideal case
import ...
0
votes
3answers
31 views
jQuery Events On Newly Created Elements
I have a web app with a number of textareas and the ability to add more if you wish.
When you shift focus from one textarea to another, the one in focus animates to a larger size, and the rest shrink ...
18
votes
6answers
11k views
Easiest css for Facebook style “red” notifications
I need a facebook style notification, but getting something that looks nice cross browser seems tricky. For example, different browsers seem to treat paddings differently, resulting in weird looking ...
0
votes
0answers
6 views
Setting child templates based on type in RadGridView with hierarchical data
https://s3.amazonaws.com/MJWTEST/Images/JOBS1.png
https://s3.amazonaws.com/MJWTEST/Images/JOBS2.png
So I have three different types:
Structures
Specifics
Generics
Structures have a list of ...
0
votes
1answer
44 views
Back button unintentionally exiting app
Hopefully this hasn't been asked.
In building an app and having successfully opened a new activity from the main activity, when the back button is pressed the app exits instead of returning to the ...
1
vote
1answer
42 views
Why can't I access my other form's widgets in Qt?
So, I have the following code in my main window's Qt C++ form (under a button click slot):
newform *nf = new newform(this);
nf->show();
I want to be able to access a webview control I ...
0
votes
1answer
36 views
How to dynamic generate this layout and implements this UI ?(Android)
I have this layout to do.
![enter image description here][1]
But I don't know how to implement is the better method.
Is it use tabhost or dynamic generate layout to implement?
I have tried to use ...
1
vote
1answer
3k views
Android ListView delete row button - focus issue
I have an activity with ListView and buttons below:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
76
votes
4answers
6k views
The Use of Multiple JFrames, Good/Bad Practice?
I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
0
votes
0answers
10 views
Building a vst dll with vst gui in Mingw
I'm trying to build a vst with a custom vst gui in Mingw in windows, but I'm getting an error.
I'm not sure about what files I have to include to make this work, I included all sources and headers but ...
0
votes
0answers
29 views
self-destructive JFrames
Ever since I have learned C++, I cannot help but think of some of the features in some of the other programming languages (namely, Java) in terms of C++ every now and then. This may be because I ...
-2
votes
3answers
49 views
Running Functions in GUI matlab
Continuing my struggle against GUI's, I have run into another road block.
Ive successfully created a button that opens a file as a string, and places it in a text box in my GUI like so.
[filename, ...
0
votes
1answer
15 views
Make jQuery mobile elements more responsive?
I'm learning more about mobile development right now, but I'm wondering what some common methods are to increase the effectiveness of buttons, sliders, and interactive elements in jQuery mobile or ...
0
votes
0answers
9 views
Glade UI: Changing one combobox based on selection of another
I'm currently trying to design a simple UI in glade to use in a Python script. My question is this: How can I change the list of combobox2 based on the selection of combobox1.
For example, if a ...
0
votes
1answer
27 views
Changing the background color of a table cell in matlab using html content
we know that uitable supports html content
for an example similar to what I want see here
to solve the problem I asked before I used this code in the callback of a button in matlab:
color = ...
0
votes
3answers
35 views
Need to determine screen resolution to display necessary items on web page in ASP.NET
I have a peculiar scenario, where in I have to display extra elements on my webpage if the user is using a 24 inch monitor.
I know we could determine the height and width using Javascript, but how do ...
0
votes
1answer
97 views
Delphi XE - Delphi Project Using Qt GUI Library
I have a proyect in Delphi XE3 using VCL application, now I want to improve my application GUI and I want to use a Qt GUI Widget with stylesheets using my existing delphi source code (implemented ...
-2
votes
1answer
27 views
User interface error with width
I have some issues regarding css and UI.
Seems like when I click a button and there is a postback or a validation in my website, my divs, tables, tds, tr.. stop having the value I give them and change ...
0
votes
0answers
17 views
RGTK2 Implementing a Scrolled Window
I'm writing a GUI in R that compares a bunch of different plots. I am trying to implement a scrolling window to contain the plots.
What I am having trouble with is controlling the size of a ...
0
votes
1answer
33 views
weka and visual graphs
Here is my situation. I've been given testing and training data. Now, I'm supposed to run weka to run various machine learning algorithms. The catch is that I need to also produce graphs (the exact ...
-4
votes
0answers
26 views
GUI for matlab, number of input-boxes
I am trying to do GUI for my school project. The problem is, I want gui to create a defined number of input boxes. For example, I run the gui with number '7' and the gui shows up with 7 boxes. If '4', ...
1
vote
0answers
24 views
Creating a Dynamic/Visual Systems Diagram from Energy Flows
I am working on a technical engineering solution of connecting systems to other systems throughout a building environment. I am attempting to create a diagram that visually shows an input energy and ...
0
votes
0answers
12 views
jQuery UI autocomplete returning [object Object]
I'm trying to create a site search similar to Google using the jQuery UI Autocomplete plug-in. The problem is my website searches for the string "[object Object]" instead of the value that I clicked. ...
153
votes
9answers
66k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot? [closed]
There is quite a lot of gui frameworks out there for java, but what is reckognized as todays framework of choice?
The following is my understanding of the different frameworks, please correct me if ...
4
votes
0answers
1k views
jQuery Library to Create Photo Collage [closed]
I am making a photo collage app and looking for a javascript library to make my collage look like "Life in Landscape" from Path. (It came out 5 days ago.) Here is the screenshot:
I already know that ...
0
votes
0answers
13 views
Alloy UI Pagination attribute maxPageLinks is not working
I would like to set Alloy UI pagination with a fixed number of page numbers display, e.g. if the total pages are 100, and it should display 10 pages at a time.
In the official Alloy UI Pagination ...
1
vote
2answers
209 views
Table view not adjusting to keyboard properly
I have a custom inherited UIView class with a UITableView within it as its only subview. I'm trying to mimic the normal functionality of the UITableViewController when the keyboard is shown to adjust ...
-2
votes
0answers
26 views
Android: how this design was made? [closed]
I am learning Android from different web pages, and what they are teaching is how to implement different widgets (button, text areas, images, etc), but how can I design them? It's okay to use the ...
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: ...
0
votes
1answer
25 views
Submitting form whilst avoiding details and including list
This might be hard to explain, but I have an input field which is designed to add "responsibilities" to a list when the add button is clicked. This works fine. This can be seen here:
...
0
votes
4answers
64 views
Jquery adding items to a list without reloading page
I'm pretty stuck on how this should be achieved, mostly down to my lack of javascript knowledge. This is the code I'm looking at:
http://jsfiddle.net/spadez/VrGau/
What I'm trying to do is have it ...









