I want to display a picture that is of jpeg type onto my interface. I want that picture to be displayed when my program is being executed. I'm doing this:
private void frmMain_Load(object sender, EventArgs e)
{
LoadRecords();
Image.FromFile("@ C:\Users\cAndyb0eMeh\Documents\Downloads\images.jpeg");
}
But this doesn...
I don't mean the standard mysql-client CLI, but rather something similar to what midnight commander is to filesystem management. The simple command history of the basic cli is not bad but really doesn't cut it when testing more complex query, and the layout of the data isn't that great. PHPMyAdmin is useful and all, but it's ugly and req...
I am developing a simple WYSIWYG RTF editor in Java and have a small issue. I need to be able to synchronize the style selection toggle buttons (such as bold, italic, underlined) to the users text selection. For example, if the current text selection is plain, the bold, italic and underlined toggle buttons are not selected, but when the ...
CLIM = Common Lisp Interface Manager, it's like the REPL, ported to the GUI.
Is something like this similar possible in C++? If so, pointers?
Thanks!
...
I have a main view with a controller and two seperate view controllers with their own xibs.
something like
@interface MainViewController : UIViewController
{
FirstViewController* firstController;
SecondViewController* secondController;
}
I would like to have FirstViewController.xib and SecondViewController.xib so that I can p...
All,
What is the best UI software for a kiosk app. My particular app will show some small images, show some video 1-2 minutes and have buttons (i.e. next, payment button, etc...). So far, I have JAVA SWING, WINDOWS presentation foundation, windows VC++, FLASH.
...
Hi, i have a small WPF application where im simulating movement detected by a sensor. I fake that movement occurs after 1 minute and it stops after 2 minutes. Below is my code:
public event Action OnMotionDetected;
public event Action OnMotionReset;
private DateTime startTime = DateTime.Now;
public MotionDetect...
Hi,
One thing that constantly causing me headache in programming is when I don't have any naming-convention in a domain where I have to deal with a lot elements. It is clearly what is happening to me when using UI designers such as Windows Forms designer.
Everytime I start a new project I am trying to reinvent a "seem-strong" naming co...
I'm using the following code to make a small view disappear at the bottom of the screen:
int y_dest = self.application.windows.frame.size.height;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.33f];
[UIView setAnimationDelegate:self];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@sele...
I know this questions seems extremely open ended. I will try to narrow scope.
I have been struggling for some time as to include or exclude real time user performance stats in an application gui.
Does anyone have any info on the harm vs gain in including these stats in an app?
i.e. number of emails answered, number of customer calls ...
Hello
I need to create a desktop lob interface presentation where a user has crud capabilities on items in a list, which is why I am thinking of using the wpf datagrid control.
Does anyone know of a widely available program that has an inspiring interface? I am just drawing a blank right now - I can't even think of an MS office list ba...
Does anyone know of any good resources / tips for designing the user interface of an application which will be used extensively over remote desktop / VNC?
There are some obvious ones like: Don't use gradients, use solid blocks of color instead as it helps avoid screen refreshes. I'm looking for more advice and tips like this for making...
Hi,
I'm developing in Visual Studio in C++, all managed code. I have a tight processing loop that, theoretically, can run for up to around 30 seconds. During that time, I want the UI to be reactive to any user activity, such as pressing a "Stop" button, or clicking a scroll bar.
I know the technique is to peek at the UI queue (in a non...
I have an Ajax call that currently needs to be synchronous. However, while this Ajax call is executing, the browser interface freezes, until the call returns. In cases of timeout, this can freeze the browser for a significant period of time.
Is there any way to get the browser (any browser) to refresh the user interface, but not execute...
A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a standard for representing human sexes (or is it genders? - thanks @Paul).
For a pet project I'm working on I need my database schema to store the skin color of a person, and I'm wondering if a similar standard exists. All my life I've h...
I'm having a bit of a brain melt at the moment where I have a WiX Combobox and when I change the selection I want to disable/enable other UI controls.
<ComboBox Property="SQLAUTHTYPE">
<ListItem Value="WindowsAuth" Text="Windows Authentication" />
<ListItem Value="SqlAuth" Text="SQL Authentication" />
</ComboBox>
That is w...
I'm trying to present a view on the iPhone which asks a user for any 2 of 3 values and using them to calculate the third value. I'm struggling a bit with the usability.
One option is to have three rows each with a label, textfield and button. Whichever row the tapped button is on is the value that will be calculated. I'm not terribly fo...
I'm using Winforms/ C# .NET.
In the ToolStrip I've different buttons, each should take us to a different page. (I don't know what term should I use for this.)
I'm unable to express it clearly. The closely related software that depicts what I want is ccleaner
see image here: http://i.imagehost.org/0569/cc.gif
on selection, of each ta...
I have a file which stores a list of enumerations with their associated values. The following is an illustration what the file looks like (rather than its actual contents):
Enumerated value Meaning (associated text)
0 Sunday
1 Monday
2 Tuesday
3 ...
I wrote a program in C# .NET, that needs to be run in the background. I mean it should have any user interface. Neither a GUI nor a CLI. It is not also a windows service(because it must run only after user has logged in).
It should just run in background. example of such programs are AdobeUpdater.exe , GoogleUpdater.exe etc.
...