Search Results

1
vote

Convert WAV to WMA using .NET

I haven't tried it personally (so not sure if it's the 'best' solution), but http://www.codeproject.com/KB/audi …
0
votes

Is WebRequest The Right C# Tool For Interacting With Websites?

When it comes to POSTing data to a web site, System.Net.HttpWebRequest (the HTTP-specific implem …
0
votes

Position the caret in a MaskedTextbox

Partial answer: you can position the caret by assigning a 0-length selection to the control in the MouseClick event, e.g.: MaskedTextBox1.Select(5, 0) ...will set …
2
votes

Elevating process privilege programatically?

You can indicate the new process should be started with elevated permissions by setting the Verb property of your startInfo object to 'runas', as follows: startInfo.Verb = "runas"; …
1
vote

Catching exceptions within .aspx and .ascx pages

Using the global.asax Application_Error method, as described in How to create custom error reporting pages in ASP.NET by using Visual …
0
votes

Emulate hard disk in .NET

I use the Eldos Callback File System myself for this purpose, but although it's good, it's not exactly cheap. There are some free/cheap p …
1
vote

How can I access PostData from WebBrowser.Navigating event handler?

That functionality isn't exposed by the .NET WebBrowser control. Fortunately, that control is mostly a wrapper around the 'old' control. This means you can subscribe to the BeforeNavigate2 event yo …
6
votes

What language features (1 per answer please) should be added to VB.NET in future versions?

A C#-style yield return statement. …
14
votes

Targeting both 32bit and 64bit with Visual Studio in same solution/project

Yes, you can target both x86 and x64 with the same code base in the same project. In general, things will Just Work if you create the right solution configurations in VS.NET (although P/Invoke to e …
10
votes

System.IO.FileSystemWatcher to monitor a network-server folder - Performance considerations

From a server load point of view, using the IO.FileSystemWatcher for remote change notifications in the scenario you describe is probably the most efficient method possible. It uses the …
8
votes

Capturing the Console Output in .NET (C#)

This can be quite easily achieved using the ProcessStartInfo.Redirec …
5
votes

How can I compare multiple .resx files?

Although it's not a diff tool per se, RESX Synchronizer may help you out here. Its main use is to update the localized .resx files …
5
votes

C# - Exception messages in English?

This issue can be partially worked around. The Framework exception code loads the error messages from its resources, based on the current thread locale. In the case of some exceptions, this happens …
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 …
2
votes

What are the steps to repair the .Net framework (2.0 / 3.5) on Windows XP?

See How to repair an existing installation of the .NET Framework -- the procedure described there works fine with a downloaded co …

1 2 next
15 30 50 per page