Archive for April, 2008
c# force uppercase lettering in a ComboBox
by brian on Apr.28, 2008, under .NET, GUI, c#, c# coding GUI, coding
I recently changed from a TextEdit control to a ComboBox and was somewhat annoyed that there wasn’t a property that forced the input characters to all be uppercase. So I dug around and came up with the following method using the KeyPress event.
private void productNumber_KeyPress(object sender, KeyPressEventArgs e)
{
char c = e.KeyChar;
// make it uppercase only
if (c >= 'a' && c <= 'z')
{
int digit = (int)c;
digit = digit - 'a' + 'A';
e.KeyChar = Convert.ToChar(digit);
}
}
When the event handler is called it gives you a chance to edit the hit character. Just by changing e.KeyChar you change the actual input character. This is a nifty trick to have under your belt.
c# getting rid of the jitter!
by brian on Apr.18, 2008, under .NET, GUI, c#, c# coding GUI, coding, graphics
I recently was getting greatly annoyed with some drawing code in my program. I was drawing a photo that I could zoom and move around. When I zoomed with the wheel though it would briefly draw the image in two positions. The first position after it was zoomed, and the second position after it was re-centered on the screen. Well this looked awful. Not exactly professional looking. So I tried a hundered different things. I tried setting a bool variable in the control to tell the paint function not to draw. No good. The drawing was done with asynchronous messages. Then I tried BeginInvoke. That didn’t work also. I tried SuspendLayout and ResumeLayout functions of the Control class: No good. Finally I just used the Visible property which kind of worked, well I didn’t get the double picture, but my background was light color and the foreground dark, so there was still a bad looking flicker. After a couple of hours I finally found the solution at: http://weblogs.asp.net/jdanforth/archive/2004/03/12/88458.aspx. I worked on the example a little and boiled it down to two functions: StopDrawing and StartDrawing.
The techinque basically turns of drawing and events to the object on the win32 level underneath .Net. This is very handy and it worked very very well. Here is the code.
using System.Runtime.InteropServices;
private const int WM_SETREDRAW = 0x000B;
private const int WM_USER = 0x400;
private const int EM_GETEVENTMASK = (WM_USER + 59);
private const int EM_SETEVENTMASK = (WM_USER + 69);
[DllImport("user32", CharSet = CharSet.Auto)]
private extern static IntPtr SendMessage(IntPtr hWnd, int msg, int wParam, IntPtr lParam);
IntPtr eventMask = IntPtr.Zero;
public void StopDrawing()
{
if (drawStopCount == 0)
{
// Stop redrawing:
SendMessage(this.Handle, WM_SETREDRAW, 0, IntPtr.Zero);
// Stop sending of events:
eventMask = SendMessage(this.Handle, EM_GETEVENTMASK, 0, IntPtr.Zero);
}
drawStopCount++;
}
public void StartDrawing()
{
drawStopCount--;
if (drawStopCount == 0)
{
// turn on events
SendMessage(this.Handle, EM_SETEVENTMASK, 0, eventMask);
// turn on redrawing
SendMessage(this.Handle, WM_SETREDRAW, 1, IntPtr.Zero);
Invalidate();
Refresh();
}
}
c# open an URL programatically
by brian on Apr.15, 2008, under .NET, c#, coding
Here is the easy way to open the browser from a c# .Net application.
string url="http://blog.bee-eee.com"; System.Diagnostics.Process.Start(url);
There you go. Pretty easy uh.
c# joining an array of strings.
by brian on Apr.14, 2008, under .NET, c#, coding
Here the easy way to get comma’s between each of the items in an array in a string.
string[] string_array=new string[]{"1","2","3","4"};
String.Join(",",string_array)
The output is:
1,2,3,4
c# Command Line Arguments
by brian on Apr.14, 2008, under .NET, Uncategorized, c#, coding
Here’s how you access the command line arguments:
string[] argv = Environment.GetCommandLineArgs();
