5
votes
2answers
496 views
.NET Control like Outlook’s E-mail Address Text Control
I am looking for a control (or suggestions on building my own) for a .NET 2.0 (windows) app that works like the address box in the Outlook mail window (bee below)
…
21
votes
Reading Excel files from C#
If it is just simple data contained in the Excel file you can read the data via ADO.NET. See the connection strings listed here:
…
0
votes
Sending a mouse click to a button in the taskbar using C#
To be honest I've never had an issue bringing a window to the foreground on XP/Vista/2003/2000.
You need to make sure you do the following:
Check if IsIconic (minimized) …
0
votes
What is needed to get Delphi back on top?
I loved Delphi years ago. When what seemed to be the most "mainstream" choices were C++, VB, or Delphi (not that it was really ever mainstream), Delphi was the cat's meow.
However, I do n …
4
votes
Code Injection With C#
Just came across a link that discusses this subject in detail so I wanted to post it back here: …
13
votes
What is the best way to store user settings for a .NET application?
I love using the built-in Application Settings. Then you have built in support for using the settings designer if …
1
vote
What is the best way to store user settings for a .NET application?
is there a reason you can't just use
the Registry?
Using the registry would require that the user has write access to the registry. Can't assume that will alw …
7
votes
How do you programmatically fill in a form and ‘POST’ a web page?
You can see a sample of that here: http://en.csharp-online.net/HTTP_Post
Basically, the code will look something like th …
1
vote
0
votes
Pass reference to element in C# Array
Use Array.Copy. It has an overload that does what you need:
Array.Copy (Array, Int32, Array,
Int32, Int32)
Copies a range of elements from an Array starting a …
12
votes
What’s the best way to allow a user to browse for a file in C#?
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Select a file";
if (dlg.ShowDialog()== DialogResult.OK)
{
//do something with dlg.FileName
}
}
…
0
votes
What’s the best way to allow a user to browse for a file in C#?
Close, Ryan, but you never showed the
dialog.
Hehe, I typed it too quickly and edited that after posting.
…
0
votes
Constructors with the same argument type
Only thing I can think of to handle what you're wanting to do is to have to params, one that describes the param type (an enum with LogonName, BadgeNumer, etc) and the second is the param value. …
1
vote
How to Compare Flags in C#?
Not sure why:
if(testItem & FlagTest.Flag1)
is getting upmodded. It won't compile as it is missing the check for eqality. FlagTest & FlagTest does not eva …
3
votes
How do you generate a random number in C#?
// generate a random number starting with 5 and less than 15
Random r = new Random();
int num = r.Next(5, 15);
For doubles you can replace Next with NextDouble
…
