user-interface

Where are good examples of Web applications built for skilled and intense use?

I have spent most of my development career writing backend code, or front-end apps for used as daily business tools, by at least semi-skilled staff, e.g. order-tracking, sales capture, etc. That those I helped build peformed their tasks well is comfort enough, but I am still seeking excellence in the building of these kind of apps, vers...

How about using SVG(Scalable Vector Graphics) on desktop applications?

I am working in Train Traffic Controller software project. My responsibility in this project is to develop the visual railroad GUI. By now I am using some svg graphics in that GUI. I prefer them because of their scalability talents. Is it good or bad idea to use svg in a desktop application? Any suggestions? ...

C#: standard Windows menu bars in Windows Forms

I noticed that adding a MenuStrip (from the VS Toolbox) to my form design doesn't yield a menu bar like many native Windows applications. Instead I get a menu bar like VS's own. None of the style settings for MenuStrip appear to mimic the much more common native menu bar. Is there a way to add a menu bar to my Windows Forms application ...

Find the Window containing a View in Android

I can't find a way to obtain a reference the Window containing an arbitrary View v. I found getWindowToken, but I can't figure out how to use it? Does anyone know how? Also, does anyone know why it returns an IBinder rather than a Window? ...

How do I attach event bindings to items on a canvas using Tkinter?

If I'm using a canvas to display data and I want the user to be able to click on various items on the canvas in order to get more information or interact with it in some way, whats the best way of going about this? Searching online I can find information about how to bind events to tags but that seems to be more indirect then what I wa...

UI template with big controls

Im not sure if this question is appropriate to go in here but after some hard effort in google I had no option but to post this here. I'm in the process of doing some UIs for a touch screen, but not sure how the template should look like. e.g. how big the buttons/text/labels should be. If anyone has experience in doing s similar stuff,...

View is moved 3 pixels

Hello, In my app I move the table view (in order to make the text fields visible when the keyboard appears). The view is looks following: This is the code I use for resizing the view and moving it up: static const NSUInteger navBarHeight = 44; CGRect appFrame = [[UIScreen mainScreen] applicationFrame]; tableView.frame = CGRectMak...

How to get a stable, snappy UI using threads?

I recently watching this video on Google Chrome with great interest. It explains that Google Chrome uses one thread for IO, one for opening files and one for intermodule communication. I think I may be able to use something similar for my own - currently quite messy - application. I wondered if there were any good articles on best-prac...

library for simple GUI appications

I tried to use WTL, but i couldn't make it to work on VS2008 Express, there is any other option? I would like to test if any, before recur to the plain API :/ need to be small and have no external dependencies Thanks in advance! ...

Difference between chart, plot and graph

I'm thinking of what would be the right terms to use in the UI of my new program, when referring to graphical data representations - i.e., whether to call them "charts", "plots" or "graphs". I was wondering how these terms are different, and when is it appropriate to use each of them? Thanks, Pradyumna ...

Jquery UI Datepicker Date Range Inline Problem

Hey Guys, i have a big Problem with jQuery UI Datepicker. I have two Input Fields "From Date" and "To Date". When i choose a From Date - a Daterange of only 5 Days should appear on the "To Date" Picker. I used the Code from "Russ Cam" http://stackoverflow.com/questions/330737/jquery-datepicker-2-inputs-textboxes-and-restricting-range ...

what is the best way of giving the feedback to the user

I'm using speech recognition and I want to show the users that when they click a button they should speak. I was thinking about using a progress bar but i dont think its a good idea. Then i thought about putting a label saying whats going on. Can someone suggest any more options. Please. ...

Windows Form - ListView - Removing lines between columns

I need to display a ListView in WinForms which should not have any lines between columns. I tried GridLines=false and also tried setting HeaderStyle to ColumnHeaderStyle.None. But this is not working. I want to remove the 2 vertical lines coming in the middle. ...

C#: Populating a UI using separate threads.

I'm trying to make some sense out of an application Ive been handed in order to track down the source of an error. Theres a bit of code (simplified here) which creates four threads which in turn populate list views on the main form. Each method gets data from the database and retrieves graphics from a resource dll in order to directly po...

SAP B1 : Read from Matrix

I'm trying to read from a Matrix. The code that I have until now is: SAPbouiCOM.Matrix matrix = (SAPbouiCOM.Matrix SBO_Application.Forms.ActiveForm.Items.Item("38").Specific; SAPbouiCOM.Column col = matrix.Columns.Item("1") ; SAPbouiCOM.Cells cells = col.Cells; String cell = cells.Item(2).Specific.ToString(); String f = ce...

WPF - Pausing the UI Thread?

I have a tab control with draggable tabs. When the mouse is released it removes the selected tab from the tabControl and adds it to its new location. My problem is that the TabControl draws itself after removing the tab, and then again when adding the tab so there is a very noticeable flicker that shows the tab behind the tab being moved...

Multiple Controls on a Page with Multiple Instances of Javascript

I have created a Web Control in ASP for use in integrating with Telligent CommunityServer. The control is written in ASP with some 10 lines of C# backend for controlling visibility of the UI elements based on permissions, but I'd say 90% of the functionality is straight-up Javascript. The control works beautifully, until you drop two i...

Xcode / Interface Builder - better workflow from designer to coder?

Were dealing with some pretty custom UI elements while building our OSX / Cocoa and iPhone / IPad apps. I was wondering if anyone has good recommendations or tricks for getting a better workflow between UI designers and coders while using Xcode / Interface Builder? It seems that many things require programmatic settings with UI editing...

Tools to build a UI markup language parser

For a school project, I need to implement a parser for a (probably XML-based) markup language for User Interfaces. Based on the input it generates a HTML document with various UI components (textareas, inputs, panels, dialogs etc.) Do you have any suggestions for tools/libraries I might use for this? (At school we use Flex and Bison, b...

getHeight() vs getPreferredHeight() what is the difference

I know, that it is a stuped question. but I can't understand, what is the difference between getHeight() and getPreferredHeight() ? When I must to use getHeight and when getPreferredHeight ? :( ...