Tagged Questions

69
votes
17answers
35k views

How to detect Windows 64 bit platform with .net?

In a .net 2.0 C# application I use the following code to detect the operating system platform: string os_platform = System.Environment.OSVersion.Platform.ToString(); This returns "Win32NT". The ...
69
votes
13answers
33k views

How do you configure an OpenFileDIalog to select folders?

In VS .NET, when you are selecting a folder for a project, a dialog that looks like an OpenFileDialog or SaveFileDialog is displayed, but is set up to accept only folders. Ever since I've seen this ...
50
votes
27answers
22k views

Why Windows 7 isn't written in C#? [closed]

I saw a similar question about the reason Google Chrome wasn't written in C#. But with the upcoming version of Windows and Microsoft's flagship language, I am having a hard time understanding why ...
36
votes
13answers
38k views

How to shutdown the computer from C#

What's the best way to shutdown the computer from a C# program? I've found a few methods that work - I'll post them below - but none of them are very elegant. I'm looking for something that's simpler ...
34
votes
14answers
20k views

How can a windows service programmatically restart itself?

I need to write robust code in .NET to enable a windows service (server 2003) to restart itself. What it the best way to so this? Is there some .NET API to do it?
25
votes
7answers
8k views

How do I spawn threads on different CPU cores?

Let's say I had a program in C# that did something computationally expensive, like encoding a list of WAV files into MP3's. Ordinarily I would encode the files one at a time, but let's say I wanted ...
21
votes
6answers
4k views

.NET WPF Remember window size between sessions

Basically when user resizes my application's window I want application to be same size when application is re-opened again. At first I though of handling SizeChanged event and save Height and Width, ...
19
votes
6answers
16k views

How do I get the title of the current active window using c#?

I'd like to know how to grab the Window title of the current active window (i.e. the one that has focus) using C#.
18
votes
2answers
278 views

How to deny reflection using ReflectionPermission

I am trying to add addons in my application, but I don't want the addon to use reflection at all, the addon code can be sandbox using Application Domain. I have found a AppDomain example at MSDN, ...
18
votes
2answers
8k views

Windows 7 theme for WPF?

Is there any way to make a WPF app look like it's running on Windows 7 even if it's running on XP? I'm looking for some kind of theme I can just paste in. I'm aware of the themes project on Codeplex ...
18
votes
6answers
5k views

Log off user from Win XP programmatically in C#

How do I initiate a Windows XP user Log Off from a C# app? The action of my app should produce the same result as clicking "Log Off" in XP start menu -- it's fine if the system asks for a ...
18
votes
13answers
15k views

What's the foolproof way to tell which version(s) of .NET are installed on a production Windows Server?

This question is not so much programming related as it is deployment related. I find myself conversing a lot with the group in my company whose job it is to maintain our production Windows servers ...
18
votes
6answers
10k views

Windows packet sniffer that can capture loopback traffic?

(This is a followup to my previous question about measuring .NET remoting traffic.) When I am testing our Windows service / service controller GUI combination, it is often most convenient to run both ...
17
votes
3answers
264 views

WMI, negative CPU usage value and Timestamp_Sys100NS in past

I am monitoring some machines using WMI, using .NET's System.Management stuff. The query I am using is this: SELECT Timestamp_Sys100NS, PercentProcessorTime FROM Win32_PerfRawData_PerfOS_Processor ...
17
votes
3answers
18k views

Can I load a 32 bit DLL into a 64 bit process on Windows?

I recently upgraded a c# windows service to run as a 64 bit .net process. Normally, this would be trivial, but the system makes use of a 32-bit DLL written in C++. It is not an option to convert this ...
16
votes
1answer
150 views

How to make my application be considered as a communication program in Windows

I'm making a program that uses the Speech library and I'd like to get all other sounds muted or reduced when the lady is talking. I've been looking for a way to mute other applications manually, but ...
16
votes
4answers
630 views

Why does my console application have command history?

I have written a console application, which is essentially a Console.ReadLine()-Loop. When the application is waiting for input, pressing the up arrow key iterates through all previous lines of input. ...
16
votes
8answers
601 views

2 basic but interesting questions about .NET

when I first saw C#, I thought this must be some joke. I was starting with programming in C. But in C# you could just drag and drop objects, and just write event code to them. It was so simple. Now, ...
16
votes
7answers
2k views

How can I make my .NET application erase itself?

How can I make my C# app erase itself (self-destruct)? Here's two ways that I think might work: Supply another program that deletes the main program. How is this deleter program deleted then, ...
15
votes
4answers
10k views

Win32 API function to programatically enable/disable device

I am writing a small C# app to disable a device (my laptop touchpad) whenever another mouse device is detected, and enable the touchpad again if a mouse is not detected. I am not even able to disable ...
15
votes
4answers
7k views

Bluetooth APIs in Windows/.Net?

I am in the process of writing a Bluetooth scanner that locates and identifies mobile devices in the local vicinity. Is this something that I can accomplish using C#, or do I need to drop down into ...
15
votes
7answers
14k views

How can I register a global hot key to say CTRL+SHIFT+(LETTER) using WPF and .NET 3.5?

I'm building an application in C# using WPF. How can I bind to some keys? Also, how can I bind to the Windows key?
14
votes
9answers
19k views

Safe to uninstall .NET Framework 2.0 and 1.0 after installing 3.5?

I'm new to Windows development and I have a question. I'm using a Mac with Boot Camp to run Windows in dual boot, but I have an extremely small Windows partition (10 GB, because Boot Camp failed with ...
14
votes
7answers
2k views

Windows temporary files behaviour - are they deleted by the system?

Using the .net framework you have the option to create temporary files with Path.GetTempFileName(); The MSDN doesn't tell us what happens to temporary files. I remember reading somewhere that they ...
14
votes
4answers
2k views

How do you place a file in recycle bin instead of delete?

Programmatic solution of course... Man i wish i could choose both the VB and Unmanaged as an answer ;) Thanks for both.
14
votes
7answers
4k views

How to load plugins in .NET?

I'd like to provide some way of creating dynamically lodable plugins in my software. Typicial way to do this is using the LoadLibrary WinAPI fuction to load a dll and calling GetProcAddress to get an ...
13
votes
7answers
2k views

Is there a way to determine the .NET Framework version from the command line?

To troubleshoot an installation, sometimes I just want a quick answer to what version of .NET is installed. Is there a way to determine the .NET Framework version on a standard Windows system, other ...
13
votes
3answers
8k views

Path.Combine absolute with relative path strings

I'm trying to join a windows path with a relative path using Path.Combine However, Path.Combine(@"C:\blah\",@"..\bling") return "C:\blah..\bling" instead of "C:\bling\" Does anyone know how to ...
13
votes
2answers
10k views

How do convert unicode escape sequences to unicode characters in a .NET string

Say you've loaded a text file into a string and you'd like to convert all unicode escapes into actual unicode characters inside of the string. Example: "The following is the top half of an integral ...
13
votes
11answers
17k views

.NET (C#): Getting child windows when you only have a process handle or PID?

Kind of a special case problem: I start a process with System.Diagnostics.Process.Start(..) The process opens a splash screen -- this splash screen becomes the main window. The splash screen closes ...
12
votes
1answer
689 views

AnonymousPipeServerStream.Read() occasionally hangs on client exit

I have a master and a slave program who interact through a pair of anonymous pipes. The interaction looks like this: Master creates two AnonymousPipeServerStream's Master starts client process, ...
12
votes
6answers
285 views

How do you protect yourself from runaway memory consumption bringing down the PC?

Every now and again I find myself doing something moderately dumb that results in my program allocating all the memory it can get and then some. This kind of thing used to cause the program to die ...
12
votes
4answers
2k views

How to scan the wireless devices which exist on the network

Now my team working in a network project using windows application c#. How to scan the wireless devices which exist on the network.The functionality is exactly the same thing that you see in the ...
12
votes
5answers
8k views

Finding the default application for opening a particular file type on Windows

I'm developing an application targeting .NET Framework 2.0 using C# for which I need to be able to find the default application that is used for opening a particular file type. I know that, for ...
12
votes
5answers
13k views

How do I get the current user's Local Settings folder path in C#?

I want to point a file dialog at a particular folder in the current user's Local Settings folder on Windows. What is the shortcut to get this path?
11
votes
3answers
149 views

What is exactly happening when I spawn a new thread from .NET?

I want to understand what precisely is happening behind the scene when I spawn a new thread in .NET, something like here: Thread t = new Thread(DoWork); //I am not interested in DoWork per se ...
11
votes
2answers
279 views

Memory limitations in a 64-bit .Net application?

On my laptop, running 64 bit Windows 7 and with 2 Gb of free memory (as reported by Task Manager), I'm able to do: var x = new Dictionary<Guid, decimal>( 30 * 1024 *1024 ); Without having a ...
11
votes
9answers
289 views

Should I use a warning icon or a question mark icon in a Windows message box?

Many know of the MessageBoxIcon of type "question". If you are not particularly familiar with this icon, it is just a glorified question mark. I am curious as to whether or not this icon is ...
11
votes
5answers
199 views

Extension Methods in C# - Is this correct? [closed]

I have been delving into C# recently, and I wonder if anyone would mind just checking my write up on it, to make sure it is accurate? Example: Calculating factorials with the use of an Extension ...
11
votes
1answer
4k views

Gacutil.exe successfully adds assembly, but assembly not viewable in explorer. Why?

I'm running GacUtil.exe from within Visual Studio Command Prompt 2010 to register a dll (CatalogPromotion.dll) to the GAC. After running the utility, it says Assembly Successfully added to the cache, ...
11
votes
3answers
3k views

Unique file identifier in windows

Is there are way to uniquely identify a file (and possibly directories) for the lifetime of the file regardless of moves, renames and content modifications? (Windows 2000 and later). Making a copy ...
11
votes
4answers
5k views

In .NET/C# test if user is an administrative user

Is there a canonical way to test to see if a user has administrative privileges on a machine? I'm going to be starting a long running process, and much later in the process' lifetime it's going to ...
11
votes
3answers
4k views

Environment variable to force .NET applications to run as 32bit

I've been told there is an environment variable you can set to force .NET applications to run as 32bit applications on x64 versions of Windows. Do you know what it is, or know of a reference on it? ...
11
votes
8answers
3k views

What's the 'correct' way of registering/installing an Assembly to the GAC?

There seems to be lots of different ways to register assemblies with the GAC, as in, they 'work'. However, what's the "proper" way of doing it? In response to Lou Franco (and gacutil): I'm using ...
11
votes
12answers
12k views

Visual Studio 2008 source control for small teams

I work on a small web team where I am the only .NET developer currently using Visual Studio 2008 Professional to build and maintain a few web applications. I am about to start training another member ...
11
votes
4answers
16k views

Elevating process privilege programatically?

I'm trying to install a service using InstallUtil.exe but invoked through Process.Start. Here's the code: ProcessStartInfo startInfo = new ProcessStartInfo (m_strInstallUtil, strExePath); ...
11
votes
7answers
2k views

What is a good plotting library for .Net?

I'm writing some data acquisition software and need a gui plotting library that is fast enough to do realtime updated graphs. I've been using Nplot which is pretty good for a free library, but I'm ...
10
votes
4answers
1k views

Can old native applications run on Windows8 tablet version?

I don't understand this picture well. In the Metro style Apps, what does C/C++ mean? Native C/C++? or is it managed C++? They(Metro style apps) don't even have Win32 layer! To make an application ...
10
votes
2answers
259 views

MonthCalendar width on different (platforms), correction: themes (XP vs Aero theme)

Apparently the .NET monthcalendar renders differently on different platforms. A calendar on Vista is wider than a XP calendar. I want to make the calendar fit nicely and precise on all platforms. Is ...
10
votes
3answers
322 views

How do I compute the non-client window size in WPF?

WPF has the SystemParameters class that exposes a great number of system metrics. On my computer I have noticed that a normal window has a title that is 30 pixels high and a border that is 8 pixels ...

1 2 3 4 5 42