2
votes
How do I kill a process using Vb.NET or C# ?
Killing the Word process outright is possible (see some of the other replies), but outright rude and dangerous: what if the user has important unsaved changes in an open document? Not to mention th …
6
votes
What language features (1 per answer please) should be added to VB.NET in future versions?
A C#-style yield return statement. …
1
vote
Where is the documentation for My feature in VB.Net?
The official reference for the My namespace can be found here on MSDN.
Unfortunately, it doesn't describe …
15
votes
Convert Byte Array to Integer In VB.Net
"Copying bytes of memory" is something that .NET isn't particularly suited for (and VB.NET even less so). So, unless switching to C is an option for you, a function call is pretty much unavoidable …
1
vote
How to Save a setting for All users under Vista
As Quintin correctly replied, the %ALLUSERSPROFILE% path (Environment.SpecialFolder.CommonApplicationData in .NET) is what you're looking for.
Two important things to keep in mind, though, …
1
vote
Create pdf file from Binary data using itextSharp
Assuming your MemStream already contains all the bytes making up a valid PDF file, you should be able to convince the visitor's browser to prompt to save it as a file by adding the following statem …
