Search Results

0
votes

How to detect whether serial port is in use or not in .net

There are undocumented APIs to find all the handles that are open in the system, and then you could check which ones are open to serial ports. That's if the user will always be an administrator an …
0
votes

Are .Net applications immune from classic pointer errors?

Memory overflow? First to answer your question, when you're out of memory you're out of memory. Pagefiles will help until they reach their maximum size, or until the disk partitions get fu …
-1
votes

VB runtime functions in VB.NET for VB6 programmers

If you're teaching VB, those functions are part of VB. If you're teaching the .Net Framework, those functions aren't part of the Framework. If you're trying to get your work done and you have too …
1
vote

Having a security problem with \windows\temp of all things

What calls are you really doing? For the first file, just create it and close it? For the second file, create and close and open again and write? Or open and open again? Or trying to create the …
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. …
2
votes

Microsoft.NET and the Multicore CPU of Doom

Blue screens aren't due solely to bugs in applications or frameworks. Blue screens need "help" from kernel mode. One of your problems is a defective driver, no matter which "era" the defective dr …
3
votes

What is the best Windows Server 2008 configuration for a .NET development environment?

Actually a default install of Windows Server 2008 doesn't have many services running to start with. Just add the roles you need to test your projects. If you want to minimize the number of …
0
votes

How do I call a Pb generated native Win32 dll from .Net? Or from anywhere else?!

If Pb obeys "extern C" on your function definitions, then it should export them with unmangled names. For your other question of why it seems to be OK to delete the dll and the program stil …
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 …
1
vote

How to add a shortcut to the exe file in the setup project?

http://msdn.microsoft.com/en-us/library/sat42980.aspx …
0
votes

Remote Debugging Fail - No suitable logon session

Maybe the deployment PC needs a firewall setting to allow control by the development PC? …
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 …
2
votes

Solid Foundation in programming for windows (Internals)

Your list is excellent. …