Click here to Skip to main content
15,908,909 members

Comments by sparky2778 (Top 5 by date)

sparky2778 14-Mar-13 7:40am View    
Deleted
Wasn't looking at the date, figured I'd help someone looking to solve same problem. Is the language that hard to translate for you people? I just quickly posted the code I had in hopes of helping someone. This page still comes up as a top hit in google.
sparky2778 20-Sep-10 10:15am View    
My Configuration says "Active(Debug)" and Platform says "Active(Any CPU)"
sparky2778 20-Sep-10 10:14am View    
Thank you, this sounded like a good idea. I was following the instructions on the link you provided:

To set this compiler option in the Visual Studio development environment

1.Open the project's Property Pages dialog box. For details, see Setting Visual C# Project Properties.
2.Click the Configuration Properties folder.
3.Click the Advanced property page.
4.Modify the Incremental build property.

Under "Configuration Properties" I only have one node called "Configuration". There doesn't seem to be an "Advanced" property under "Configuration Properties". Ideas?
sparky2778 20-Sep-10 10:11am View    
I installed this hotfix. Nothing seems to have changed. (In the hotfix it mentions that this is applicable to VC++, no mention of VB.NET. Do I need to do anything after installing this hotfix?
sparky2778 2-Sep-10 16:22pm View    
Why should .Equals be case sensitive when the following is from MSDN:
(http://msdn.microsoft.com/en-us/library/8t3khw5f(VS.80).aspx)

Option Compare

Declares the default comparison method to use when comparing string data.

Option Compare { Binary | Text }
Parts
--------------------------------------------------------------------------------
Text
Optional. Results in string comparisons based on a case-insensitive text sort order determined by your system's locale.


Binary
Optional. Results in string comparisons based on a sort order derived from the internal binary representations of the characters.