user-interface

User Experience

Any key to become a user experience design and Rich Internet Application design? What should I learn to reach it? ...

Web UI Development - Dead End Career Path?

Hey There, I've been involved in web application development for the last 2.5 years. I don't have a technical degree nor prior technical experience -- I've broken into the industry simply through freelance / personal projects. I spent a year as a PHP / MySQL application developer, and for the last year and half I've been employed as ...

How to embed a common lisp interpreter into a gui application

I want to know how to embed a lisp interpreter into a gui application, i.e. something like what pyshell does for Python. ...

Unit testing Cocoa User Interface

Hi All, Anyone please let me know some links or examples for Unit testing user interface code. Is there a complete example app on that. Thanks in Advance, Bhanu ...

Graphic User Interface

Is there a way to make a more elegant UI easily? (Maybe something like Google Chrome) Is there a framework or something do this? --EDIT It would be best in Python/Java/C++. I don't mind learning something new. ...

iPhone Dev - keeping interface rotation

(Just so you know ,I'm learning to develop for iPhone without Interface Builder) I have an app with a root view controller, a blue view controller and yellow view controller. The root VC lazy-loads the blue and yellow VC's and displays the blue VC's view first, and then switches to the other one when a button in the toolbar at the bottom...

How does the "let me google that for you" site make an animated mouse?

How can I make an animated mouse move across the screen and click a button? It would be good for demonstration purposes! Ideally, it would be in javascript and/or jQuery. EDIT: there is a gigantic javascript file that the page calls, and that would take me a long time to parse and understand. That is why i am asking ...

How can I improve the subjective speed of my application?

Today my co-worker noticed that when adding a decimal place to a progress indicator leads to the impression that the program is running faster than without. (i.e. instead of 1,2,3... it shows 1, 1.2, 1.4, 1.6, ...) I checked it and I was surprised that I got the same impression even though I knew it was faked. That makes me wonder: What...

What should I do to develop a well structed C++ program?

Right now, I want to develop a C++ program. And the UI design is the difficult issue. my question is: 1. is there any good practice for developing a well structed c++ program ? 2. is there any good practice for developing UI in c++? 3. I usually heard of Activex in C++, can it use to encapsulate a UI, and is good for maintain after sof...

some questions about MFC development?

How do you develop UI in MFC? do you use any free libray, or usually develop from scratch? There are always so many DLL files in a C++ developed software, what are them used for ? What's the difference between MFC ActiveX Control and MFC DLL ? ...

Examples of context menus that don't require a right click

I am looking for examples of menus or toolbars that are shown without having to perform a right click. One example is the mini toolbar in Office 2007 which is shown automatically when selecting text. Are there any other examples out there of menus which are shown on a single click? I am looking for an elegant way to provide formatti...

Can I start a thread by pressing a button in a cocoa interface and keep using interface while thread runs?

I have a Cocoa interface. When I press a button I want to process some data, but I want to keep using the interface while it's working. I guess the only solution is NSThread. Now will there be a locking mechanism preventing me from returning from an IBAction method if it spawns a thread? ...

c# .Net CF Form.Invoke raise ArgumentException

Hello I am receving an ArgumentException from the following code, I am struggling to understand it the last entry in the stack trace is System.Reflection.RuntimeMethodInfo.InternalInvoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean verifyAccess,...

Interactive webcam

Hey all, I want to move objects in Flash with my hands via the webcam. How can I do this? ...

Silverlight Border - Am I stupid?

Hi, sorry, I did not find something useful when searching google. Very basic question, mainly "Am I stupid". I know StackPanel gives its child elements full space, but why does the "Auto" property relate to the PARENT element in case of a border. I mean perhaps I am doing something wrong, but this behaviour is definitly not what I intend...

What is the best method for supporting screen sizes in a Web app?

What is the best approach for defining page width of a web app? Most of our users have 19" monitors, but many run the apps from 14" laptops, and some have 24" monitors (assume it's a max resolution). From what I know, the two most common methods are: using fixed width pages or dynamic (max) width (100%). There are problems with either a...

Resizing iFrame with jQuery UI

I have this code and it works fine: Head <script> $(document).ready(function() { $("#test").resizable({minHeight: 50, minWidth: 50}); }); </script> Body <div id="test" style="border: .1em solid black;"> </div> However when I change my "div" into "iframe" I can't resize it anymore. Body <iframe id="test" style="border: ....

In GTK, how do I get the actual size of a widget on screen?

First I looked at the get_size_request method. The docs there end with: To get the size a widget will actually use, call the size_request() instead of this method. I look at size_request(), and it ends with Also remember that the size request is not necessarily the size a widget will actually be allocated. So, is there any f...

GUI border dilemma

I have this dilemma about designing/programming border or gap widths in an application of mine. I'm using Swing but this is sort of implementation-agnostic. I have a splitter pane (JXMultiSplitPane) dividing two subpanes, shown below outlined in black; the black border will be gone in the real application and is just here for debugging. ...

How do generate screen elements dynamically in the OutSystems platform?

I am using the OutSystems platform and I am having trouble implementing something like a dynamic questionnaire. Admin users should be able to login and add new questions(no limit to number of questions), modify existing questions/answers and delete existing questions. Answer Choices can be of various types like radio buttons, dropdowns, ...