0
votes
1answer
29 views
Calling CreateFile on a physical device path in a loop
I have some C# code that is calling CreateFile on a different physical device path each time through a loop(ie \.\PhysicalDrive1, then \.\PhysicalDrive2, ...) via pInvoke and then using the returne …
0
votes
0
votes
How to validate ASPNET AJAX installation
Haven't tried this myself, but I found several forum postings recommending the following
Try and add the following to your
web.config
within
<system.webSer …
2
votes
Searching for file dependency for nunit unit testing
I would set a breakpoint and then use the immediate window to find out what is getting passed to GetDirectoryName. It probably isn't what you intended.
…
7
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Takes a camelCaseWord or PascalCaseWord and "wordifies" it, ie camelCaseWord => camel Case Word
public static string Wordify( this string camelCaseWord )
{
// if …
1
vote
Where to get custom controls for Winforms .NET?
There are lots of places.
telerik is a popular commercial
option
…
1
vote
Casting generic collection to concrete implementation in C# 2.0.
One option:
Make the methods on the derived types non-extension static methods that take in a specialized RecordsCollection ie
public static List<string …
0
votes
How do I get notification that the local Visual Studio build is complete?
I have used this.
It's pretty neat for visual n …
0
votes
Use Excel Interop to grab image of Excel chart without writing to disk or using the clipboard
One option that may work would be to use a memory mapped file. Of course disk can be involved there, so you should profile the standard export to disk vs. using a memory mapped file (assuming the …
1
vote
Getting a member via string in C#?
Yes, via reflection. Take a look at the Type class and associated methods. A good place to start might be …
0
votes
C# bool expression evaluation order
This doesn't matter in C# like it does in c/c++ because conditions must evaluate to a boolean.
…
0
votes
C# 4.0 AsParallel() UnAuthorizedAccessException when accessing the file system
You have more than one thread trying to access the file. Using code that high level (meaning File.Open ) won't do, you need to use something that sets the Share level.
…
0
votes
Are custom Winforms control auto generated designer files needed?
Strictly speaking I don't think so, but then you will lose any design time benefit you would get when creating the control, and my guess is that VS will keep trying to recreate them.
…
0
votes
How to invoke a click method on an html page which has no id/name but a class name in c#??
I am assuming that you are using IHTMLElement interface, with which you can iterate over the document and check the className member, collecting those that match.
If you are using 3.5, this …
3
votes
Call unmanged Code from C# - returning a struct with arrays
Since you say the c++ code seems to run fine alone, there must be something wrong on the c# side.
Try marshalling the char arrays as char arrays instead of strings and see if that helps. A …
