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
24 views
Eliminating repeating code in python
I'm trying to create a GUI in with PyQt4, I initially used QT designer to get my overall layout done and then modify the code afterwards. What I have noticed is that there is a lot of repeating code ...
0
votes
1answer
84 views
Text align right with icon menu action bar sherlock
I've a problem with menu option. I'm using action bar sherlock, when i'm clicking the option menu, the text align on the left side.
I want my text of option menu align on right side with a icon first. ...
2
votes
4answers
39 views
Load UIButton After UIView Loads
I have a set of buttons displayed in the center of a UIViewController. To give the effect that the buttons are popping/appearing on the view one after the other when the view loads I am trying to ...
0
votes
1answer
70 views
C# sometimes freezing form when running a thread
I mentioned in an other question, that I'm working on an ffmpeg-parser with progressbar and so on.
The following problem is not 100% reproduceable. When I convert a video file with my program the ...
0
votes
3answers
62 views
How to create a personalized user interface for iPad app? [closed]
I'm trying to create an application for the iPad but I would like to create a user interface with different styles and controls to those offered in xcode. I would like to create something with an ...
2
votes
1answer
29 views
jQuery UI div drags behind other div
My page has two columns (divs), first has a list of divs that need to be dragged to the second but the divs always disappear behind the second div...tries z-index but no success...
With a clone ...
0
votes
0answers
17 views
UI automation seems to run in background without launching browser
I'm trying to setup Jenkins to execute our UI automation(Ranorex) tests. When the job runs, the IE browser does NOT launch, thus the tests don't run.
Is there some setting that I'm missing here?
...
0
votes
1answer
27 views
JQuery UI two dependent sliders with different values
I have a little problem with the JQuery UI Slider.
I want to make two sliders as described below
First Slider - is the number of days from 1 to 365
Second Slider - the a percent from 5 to 30.
For ...
2
votes
2answers
54 views
Create JTextField dynamically in a loop
I am beginner on Java GUI. I am writing a program that calculates the inverse of the given matrix. To do this, first i have to scan matrix. I decided to scan matrix by this way:
First i am asking ...
-1
votes
0answers
44 views
an ending control for winning hangman
What would be a good control for if a user wins this game. I was trying to use this
if(dashReplace(s).equals(s)){button.setEnabled(false); }.
So if the replaced dashes equals the String s which is ...
0
votes
1answer
37 views
Spinner, add up/down arrow button listener
is it possible to add click listener for Spinner up/down buttons?
I need this behavior, because when I add Modify or Selection listeners, all changes that I enter manually to the Spinner field are ...
0
votes
1answer
67 views
Align views on LinearLayout programmatically
I am developing a ListView UI after parsing a json, We are looking for a template based solution to list row where each list row might have different-2 field and their alignment which will be driven ...
0
votes
1answer
15 views
Android UI - views slider
I need an android component that will hold two views (one on top, and the second one ont he bottom). There will also be a slider between views.
It will look something like this:
View 1 is bigger ...
-1
votes
1answer
25 views
How to find whether particular email id is a valid id or not before sign in that email service provider?
I am creating a windows form where i get inputs for mail id,password,service provider name from the user...i want to validate whether the user entered email id is valid for the service provider ...
0
votes
1answer
177 views
List view webpart JS Link is not working - Sharepoint 2013
I am trying to render the UI of list view webpart using JS Link option in SharePoint 2013. I uploaded the colorcode_items_script.JS file to masterpagegallary as 'JavaScript Display Template' content ...
0
votes
2answers
55 views
C# settings GUI
I wrote my first C# program a while ago. It got somewhat big. My .settings file has over 20 different parameters - booleans, sizes, strings, ints. I'd like to provide users with a GUI to change them ...
0
votes
1answer
48 views
Impossible to add digits to the ArrayList despite using appropriate method
I am currently implementing a binary calculator as a part of my course assignment for Java Programming. I have stumbled across one problem I don't understand. In the code outlined below, I wanted to ...
0
votes
4answers
32 views
Stop users from pressing two buttons at once?
Is there a way to only register a single button press? At the moment in my activity I have two buttons that each start another activity - at the moment if I press them at the same time both activities ...
1
vote
1answer
49 views
Qt using C++ or PyQT; which is mostly preffered for todays linux based embedded application development?
I spent few days to find out few open source application development libraries/tools for linux based embedded devices. I would like to know which one is mostly preferred in the industry. I understood ...
0
votes
1answer
25 views
how to extract a specific list from a Model with Agile Toolkit
i'm working with Agile Toolkit
i got a Model_Product
class Model_Product extends Model_Table {
public $table="product";
function init(){
parent::init();
...
1
vote
1answer
23 views
Abstract Error with JButton and Cannot Find Symbol on interface class
I'm working on a simple Java GUI, but an error came out about abstract methods. I marked the codes that has an error with a comment ERROR - etc. The interface class is at the bottom, which also has an ...
0
votes
0answers
32 views
Raw windows GUI programming books [closed]
I intend to program for Windows with already a excellent understanding of developing on Linux and Unix. I want to develop applications and directly render to the window my text and images using the ...
0
votes
1answer
38 views
Manipulating an OS directory with Tkinter
I'm writing a function that allows my Tkinter GUI app user browse a directory and choose a file from it. So far, I have the code to open the directory but I'm having problems with saving a selected ...
0
votes
2answers
46 views
MFC Application font issues - dialogs look wrongon Win2k8
My legacy application that runs on win2k3 citrix is about to be migrated to win2k8 citrix.
While testing on win2k8 I noticed UI issues that are not apparent on 2k3 - buttons are not wide enough for ...
2
votes
1answer
27 views
Cannot get result of paintComponent() to display in panel
I'm banging my head against the wall and have a feeling that I'm going about this completely incorrectly. I'm creating a simple hangman game and cannot, for the life of me, get the result of my ...
1
vote
0answers
30 views
How to change height of fregment & View in Android
I working on app that uses Google Maps API v2, in first place user can access a layout with the maps on full screen and with a small frame (let's call it BtmFrame) with text saying how much Clubs are ...
0
votes
0answers
21 views
Canvas with JQuery type GUI?
I want to create an online app that allows people to move graphic elements around, via the canvas, but I also want the user to be able to select objects, use drop down menus etc, as can be found in ...
0
votes
2answers
40 views
Compiling a python script I've written as an .exe and .app
To preface, I have very little python knowledge, so the simplest solution will probably be the best one.
Essentially, I've written a program that takes user input and writes it to a text file. I've ...
1
vote
2answers
61 views
GUI and Data loading parallel
first of all, I've been reading a lot about this issue, but it's not clear in my mind.
I'm developing a WPF app that implies loading large sets of information from databases, local/remote files, ...
0
votes
1answer
26 views
Android ScrollView hidding bottom
When I use a LinearLayout with an drawable background (floating_section) inside ScrollView, it doesen't let the very bottom of the drawable appear (the rouded corners, and also the "end" of the view.
...
0
votes
1answer
34 views
Building a music player for both android and Desktop at the same time
I'm going to build a music player working on both Android and Desktops. It won't be anything special, I'm doing it more to training myself and know more or less what problems I might encounter if I ...
0
votes
0answers
34 views
Recreate the toggle switch found in Time Machine system preferences
I am trying to recreate the switch found in the Time Machine options in System Preferences:
0
votes
1answer
36 views
Dynamic GUI in Python? [closed]
I had a question about whether it would be possible to make something like the following in Python:
I'd like to have a GUI such that, upon starting there are simply two fields allowing you load two ...
0
votes
1answer
28 views
pyqt - how to make a textarea to write messages to - kinda like printing to a console
I'm fiarly new to pyqt - I'm currently using it to make a visual representation of a graph. I made a custom widget for this, which was fairly easy. But now I'm stuck when having to use built in ...
0
votes
1answer
17 views
Is it possible in wxwidgets to determine if the window is currently visible?
In my wxWidgets (wxPython) app, I am using a 50 ms timer to do some polling and update a window if there are any changes. If changes are detected it calls wxWindow.Refresh to update the window, and ...
4
votes
1answer
75 views
MATLAB: GUI progressively getting slower
I've been programming some MATLAB GUIs (not using GUIDE), mainly for viewing images and some other simple operations (such as selecting points and plotting some data from the images).
When the GUI ...
0
votes
1answer
24 views
Text visual appearance in UIPickerView
I have a question about iOS UI customization. I found the built-in picker view has a glass-like cover and the label under the cover has slightly appearance (text with a little inner shadow? such as ...
-2
votes
0answers
17 views
View like Quick Action View in android [closed]
How to implement this, can anyone provide me the solution or suggest a way how to do it?
1
vote
1answer
45 views
GUI thread updating issue
I have a GUI class Gui:
public class Gui extends JFrame implements Runnable
{
private JPanel outer, inner;
private JLabel[][] labels = new JLabel[22][12];
private Color[][] defaultMap, map;
Thread ...
1
vote
1answer
31 views
Quadtree - When to use?
(This does not specifically relate to any language)
So I'm making a 2D game, and I was considering making a quadtree for my GUI manager (which is separate from checking collisions of the other parts ...
-1
votes
1answer
24 views
Multi JQuery UI Selectable
I'm doing a small software in php with the Jquery Selectable plugin.
I need to keep data with ajax of all my selectable and send it to my php script, finally print the result of my php script.
This is ...
0
votes
2answers
37 views
Accessing Components in JFrame from External Class
I am having trouble accessing several components in a JFrame to use their setText("...") method. My main is in a seperate class, because the actual program has many windows that need to be managed at ...
-1
votes
1answer
29 views
Images replacement
How would i go about replacing the image called hangmanImg every time it go's through the loop?
public void postImg() {
String imgName = Integer.toString(numError);
String hangmanImg = ...
0
votes
1answer
49 views
How to track Window close of SmartGwt
I am developing a SDI web app using SmartGwt. In the main window, I want to popup a Window, when a button is clicked. However when the popup Window is closed, the main window is not able to trap the ...
0
votes
1answer
24 views
How to remove Black Rectangle box in Dialog?
I used the following code to prepare an custom dialog,it is showing my custom layout in a black colored rectangle box.
final Dialog dialog = new Dialog(getParent(),R.style.PauseDialog);
...
0
votes
0answers
19 views
Droppable inside iframe with scrollable div
When you have a draggable outside an iFrame and a droppable inside an iFrame, when using the iframeFix option it works. But when you introduce an scrollable div around the iframe the coordinates of ...
0
votes
0answers
20 views
Updating UI on Android Widget
I have widget with a button and a progress bar. Basically, when the button is pressed the progress bar starts to fill up. This has been relatively simple - but it seems to lag as the progress bar ...
0
votes
1answer
32 views
Online tool for for Mock-up / wireframe / UI /sitemap creating pages with vertically flowing elements
I know that there are a lot of free tools out there to create clickable web mock-ups / wireframes.
The issue I have is that with most of them you push the elements around the page to create a ...
1
vote
1answer
34 views
Blackberry Click Events
I have a ImageButton in a VerticalFieldManager and VFM in a HorizontalFieldManager. The ImageButton click event is firing when I click anywhere in the surrounding field. I want that click event to ...
0
votes
0answers
12 views
Need GUI able to do a “git init --bare” on a project folder
I'm looking a GIT GUI that would be able to do a "git init --bare" on a folder. Just by clicking a button.
I'm looking for the best way to use Git in a window local network, where a connected local ...





