Search Results

0
votes

Use Float or Decimal for Accounting Application Dollar Amount?

Floating point numbers can only represent numbers that are a sum of negative multiples of the base - for binary floating point, of course, that's two. There are only four decimal f …
1
vote

How to wrap an existing memory buffer as a DC for GDI

Use CreateDIBitmap rather than CreateDIBSection. …
1
vote

Debugging a stack overflow in .NET (I’ve checked the usual suspects, and have moved on to winDBG and co.)

You need some decent symbols for the CLR. Set _NT_SYMBOL_PATH (in WinDBG, use File/Symbol File Path) so that it includes: SRV*C:\WebSymbols*http://msdl.microsoft.com/do …
1
vote

Which language should I pick up: VB.Net or C#

Learn C#. You need a clean break from VB6, otherwise you'll be tempted to keep using the legacy functions. That's not to say that they don't work, but that a lot of VB6's functions fell into the pi …
4
votes

DataReader within try block causing potential null reference error

If GetDataReader throws, dr will not be assigned and will still have its initial value. VB.NET does initialise references to Nothing, but the compiler will no …