August 19th, 2012 06:28 AM
How To Modify An Element in the Dictionary Class?
=======================================
C# has this cool Dictionary class that you can use like a Hash Table. Is there a way of changing the...
August 18th, 2012 07:33 PM
C# Split String Is Not Working
======================
Please Help. I wrote a C# program that reads code one line at a time. Each line has data seperated by tabs.
Here is what my C# code is...
January 5th, 2012 11:30 PM
How do you set a default size of a control that you can resize?
I have been looking at a code sample from Charles Petzold.
It is from here:
...
December 30th, 2011 12:22 AM
Help me Convert this WPF to Silverlight
I am interested in a Charles Petzold C# example that shows how to do a fisheye effect (...
September 22nd, 2011 04:49 AM
How do I get a datetime format in C# that will look like this:
2011-09-01 00:00:00:000
September 12th, 2011 05:25 AM
TextBlock wrapping of text in Silverlight XAML file.
I have a wierd and annoying problem. I have a textblock that is inside a stackpanel that is Oriented horizontal. It would be nice if I could...
August 30th, 2011 05:00 PM
I have a float data type in C#.
Let's say its value is
5.827671
and I want to concat/round it to the nearest 100th place
5.83
How would I do that?
The value is ported to a string by...
January 14th, 2009 05:16 AM
In a main routine of a c sharp program, you have a string array like this:
public static int Main(string[] arguments)
Well, let's suppose I am mimicing this sort of function. Would this be the...
January 24th, 2008 10:14 PM
I thought that my problem was how I was declaring a manifest file.
But now I think I can safely rule this out.
I think the probem lies in the way I am loading the DLL/COM object
that the...
January 24th, 2008 07:13 PM
What is a good way to code a messagebox in C#, like the AfxMessageBox in used in Visal C++?
For code like the following, there must be a "using..."
declaration missing because I got this error:
...
January 19th, 2008 12:39 AM
Getting a C# program with a manifest file to run in the debugger
----------------------------------------------------------------
Does anyone know how to declare Manifest Files in the Visual...
January 10th, 2008 04:10 AM
I am new to C# and I am playing with my first bits of code.
I am building an application from scratch and looking at some
old code to model my new app.
The strange thing is this. I know that...
January 1st, 2008 04:09 AM
I have written some simple C# programs just to get my feet wet.
Now I have decided to build a co-workers program and step through it. I am not used to all of the problems that might arise when...