Search Results

-1
votes

Best way to parse float?

Since you don't know the web user's culture, you can do some guesswork. TryParse with a culture that uses , for separators and . for decimal, AND TryParse with a culture that uses . for separators …
6
votes

C#/.NET, what to look at?

The .Net Framework library is more important than the language. …
1
vote

Exceptions causing junk data in string (C#)

"And I'm checking it in the "Locals" window in VS" That explains it. Contrary to popular belief, C# is allowed to do some amount of optimization. If you don't add a "KeepAlive" at the end …
0
votes

Regex to match alphanumeric and spaces

The circumflex inside the square brackets means all characters except the subsequent range. You want a circumflex outside of square brackets. …
3
votes

What are the ways to obtain HDD serial number without WMI?

http://www.winsim.com/diskid32/ …
1
vote

Why aren’t classes sealed by default?

80% of the features of Word go unused. 80% of classes don't get inherited from. In both cases, once in a while, someone comes along and wants to use or reuse a feature. Why should the original d …
3
votes

In .Net, what’s the better choice to code key presses in keyboard, key-up or keydown?

It doesn't matter if it's .Net or not, it matters what the user expects. Keydown is a good time to respond to the four arrow keys. Character input is a good time to respond to input of visible ch …
4
votes

Would you go back to VB.NET after getting C#?

If your day-to-day work uses programming languages X and Y, and the number of months since you last used Z is gradually increasing, then Z will gradually look more foreign. In your case Z is VB. …
0
votes

How to capture a serial port that disappears because the usb cable gets unplugged

If your try statement isn't catching the exception then let's hope Microsoft will inspect the dumps. There are some SetupDi APIs (I think ... it's been a while) that permit you to be advise …
1
vote

Breaking out of a nested loop

You asked for a combination of quick, nice, no use of a boolean, no use of goto, and C#. You've ruled out all possible ways of doing what you want. The most quick and least ugly way is to …
0
votes

out of memory exceptin

The .Net Framework doesn't handle graphics very well. When it works it's very convenient, but when it doesn't work it's useless. You'll have to learn GDI and do a Platform Invoke to StretchBlt. …
4
votes

Problems Closing a C# Windows Form

Put the InitializeComponent call back at the top where it used to be. An attempt to use uninitialized variables, including trying to tell them to close themselves, is a bad idea. Configure …
0
votes

Why is string.contains() returning false?

What's evaluating to false, your test variable or part of the display in statusLabel.text? Are you sure the display isn't something like this: The value of test: false The value of …
0
votes

Windows Invariant Culture Puzzle

"However, I don't really have any idea what kind of mappings the invariant culture does, other than the fact that its what windows uses for comparing file names." I didn't think Windows use …
1
vote

What font and size is used in Windows 7 File Explorer Tree

P/Invoke to SystemParametersInfo with SPI_GETICONTITLELOGFONT. It depends on the language version of Windows. If you look at Robert Harvey's answer, you'll see a character that can't be dis …