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) …
3
votes
What .NET Mime Parsing libraries are available?
I've not used javax.mail.internet.MimeMessage, so I can't say how any of this compares, but .NET 2.0 and beyond does have a …
4
votes
Why is String.Format static?
Because the Format method has nothing to do with a string's current value. The value of the string isn't used. It takes a string and returns one.
…
1
vote
Outlook Add-in using .NET
I don't know the answer to your question, but I would highly recommend Add-In Express for doing the addin. See http://www.add-in-e …
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 …
9
votes
Any pitfalls developing C#/.NET code in a Virtual Machine running on a MAC?
I can't tell you any specific experiences since I don't have a Mac, but I did want to point out that there was an awesome episode of the DeepFriedBytes podcast that discussed this very topic. It ma …
1
vote
7
votes
How do you configure an OpenFileDIalog to select folders?
Better to use the FolderBrowserDialog for that.
using (FolderBrowserDialog dlg = new FolderBrowserDialog())
{
dlg.Description = "Select a folder";
if (dlg.ShowDialog() = …
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 …
0
votes
How can you determine what version(s) of .NET are running on a system?
If you're wanting the current framework version in use then you can see that via:
System.Environment.Version
…
1
vote
Are CLR stored procedures preferred over TSQL stored procedures in SQL 2005+ ?
It always comes down to the right tool for the job, so it really depends on what you are trying to accomplish.
However, as a general rule, you're right that CLR procs have a greater overh …
11
votes
Is SqlCommand.Dispose enough?
No, Disposing of the Command will not effect the Connection. A better approach would be to also wrap the SqlCommand in a using block as well
using (SqlConnection conn = new SqlCon …
