Hi everyone,
I'm looking for a way to automate testing on my program's user interface.
Let me explain:
I have this program with a user interface. My programs makes calls to a web service. And that web service modifies data in my database.
For test purpose I need to do a whole lot of user interface manipulations. This is long and annoy...
I recently read Alan Cooper's "The Inmates are running the asylum" and found it quite enlightening.
Anyone of know decent C++ open source projects based on the principles in the book? I'd love to see how ideas from the book are implemented in practice.
...
I'm utilizing the code posted by Jesper Palm here: http://stackoverflow.com/questions/280891/make-user-control-display-outside-of-form-boundry
/// <summary>
/// A simple popup window that can host any System.Windows.Forms.Control
/// </summary>
public class PopupWindow : System.Windows.Forms.ToolStripDropDown
{
private System.Window...
Hi,
My project is based on MVC architecture and I have a UI design pattern problem.
I have several tabs which contain object as show in the picture.
My first idea was to link a tab to one view (phtml) so in the document each tabs is an embedding document.
The tab contains an element with an url to a page. I show you a piece of code. T...
It looks like in most browsers, an <input type="submit"> treats both [spacebar] and [enter] as a click, but an <a> link only treats [enter] as a click.
My app uses a number of links formatted to simulate buttons, so a user that is accustomed to tabbing to a button and pressing [spacebar] will be frustrated.
This bit of jQuery solves ...
Hello all. I have been struggling with this question for awhile now, and I haven't reached a conclusion. I'm not typically a UI programmer, so forgive the noobishness.
I'm writing a typical application with a UI layer (WPF) and a business layer. I want to post status messages to the UI from the business layer (perhaps deep within the...
i have designed a gaming kiosk app in as3
i am using it on a Sony vaio l pc (like hp's touchsmarts) in windows 7
the app doesn't need any multi-touch gestures (only single touch clicks and drags) so i am using mouse events
everything is fine (including mouse click and move events) except that a single touch to the screen (with no move) ...
All: I want to scroll through a sequence of tumblr/twitter posts as a long sequence of texts.
Let's say we have:
<div id="mainContent">
_some content_
</div>
where the css for mainContent is:
#mainContent {
padding: 20px 20px;
background: #FFF;
height:500px;
overflow:hidden;
}
I really like the functionality...
I am working on an application that requires text larger than the viewable screen size in both a TreeField and a ListField. As you know, the TreeField and ListField callbacks support only
graphics.drawText() methods, so I cannot add an instance of a Field per row.
Does anyone have a method of Scrolling horizontally past the viewable t...
In my application, I have a 'logging' window, which shows all the logging, warnings, errors of the application.
Last year my application was still single-threaded so this worked [quite] good.
Now I am introducing multithreading. I quickly noticed that it's not a good idea to update the logging window from different threads. Reading so...
I'm aware of this topic: I've used it to change most of the editor colors, and that's great.
But that wasn't enought, there's still too much white (and I need to change it because it hurts my eyes).
I've searched in the preferences (both using Eclipse itself and editing the files) for instances of while (255,255,255) and changed them a...
I've tried unsuccessfully for quite a few hours now to simply get a TableLayout to scale to the full screen. I've tried stretchColumns, shrinkColumns, (specifying the column index or using *) you name it.
It's almost as if the parent element (TableLayout) is completely ignoring 'android:layout_width="fill_parent"'.
I've read through s...
Can I create something like an Internet Explorer accelerator using JavaScript on the client-side?
I want a clickable icon to show up when the user selects some text on the page.
What is the event I should wait on?
...
Hi,
I developed a command line application, whose binary runs in Linux, Windows and Mac OSX. It reads some text input files, but I realize that some special users can not handle this. I would then like to build some kind of graphical interface, where the user only finds buttons and scroll bars for selecting the input parameters, a big "...
What is the best way to get people to fill out a form correctly? For instance I originally had a "Name" field on a form and I want 1 person per form. People filled it out like this: "Mark & Becky Newsman". So I broke it into 2 fields, "First Name" and "Last Name", And people are still filling it out wrong, like "First Name" = "Mark & Bec...
Do you (and would you) ever create progress bars that are just there to keep the client happy and moves without reflecting the true progress of the program? I remember reading about this somewhere, and am wondering if there are other developers that do it too...
...
The new Code Bubble IDE has been in the news. I wonder if there are useful libraries to implement this kind of interface (for other applications)? I prefer java or python. I understand Code Bubble has been implemented on Eclipse.
...
Hello,
I need to write a VB.Net 2008 applet to go through all the fixed-drives looking for some files. If I put the code in ButtonClick(), the UI freezes until the code is done:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'TODO Find way to avoid freezing UI while scann...
Seen various examples of WPF applications I've seen the use of the Grid control for almost anything, even simplest things with only 1 column or row.
Also, the WPF templates start with an empty grid.
For me, using StackPanel or DockPanel is less verbose and are better for maintenance (think adding a row later and having to add +1 to all...
I am using this code:
$('.ui-accordion').bind('accordionchange', function(event, ui) {
$(this).next().next().css({'background-image':'images/green-bg.jpg'});
//ui.newHeader // jQuery object, activated header
//ui.oldHeader // jQuery object, previous header
// ui.newContent // jQuery object, activated conte...