| Thread | Last Post | Replies |
|
| KeyedCollection in use for GUI editor? Chicken in Egg problem... | 14 Dec 2006 01:38 GMT | 3 |
So when you use VS's View Designer, each object included is keyed off its Name. You cannot make the name the same as some other component. You can change the name in a PropertyGrid. I want to do a similar thing. I have a class (MissionManager with a bunch of static functions)
|
| IDisposable or not in custom classes | 14 Dec 2006 01:20 GMT | 8 |
Following on from the recent thread about why HttpWebRequest doesn't implement the IDisposable interface, I got to wondering whether people make their custom classes inherit IDisposable or not as a general rule, or only under certain circumstances...
|
| Dynamically creating form controls | 14 Dec 2006 00:48 GMT | 1 |
Hi everyone :) I'm a newb to C-Sharp but more I learn about it - more I like it. I need some help please. I'm trying to find out to dynamically allocate form controls. For example I want to have 5 combo boxes on my form and
|
| Is file is being used | 13 Dec 2006 23:45 GMT | 16 |
I have a mdb file shared in the LAN. I want to write app that verifies if it's open. If the file is not open, then my app can open the file. if the file is used, then the app won't open it.
|
| Launch Application as Different User in C# Windows Applicatoin | 13 Dec 2006 22:44 GMT | 5 |
I am not asking how to impersonate a process within C# windows application. I already know that, in C# v2.0, you can easily achieve it using ProcessStartInfo. You can run a process or call external program as of different user.
|
| Temporarily give the current user Local Admin rights | 13 Dec 2006 22:14 GMT | 5 |
I'm a C# newbie and have inherited a program that runs at login. Part of the program looks at a text file to see which version is installed and then installs the latest greatest version if needed. In order for this to work, the person logging into the Windows XP desktop needs to
|
| Upgrading from Framework 1.0 to 2.0 | 13 Dec 2006 21:07 GMT | 2 |
I'm currently working on a project upgrading the whole system that was written in Framework 1.0 into 2.0. It uses the following main features of .Net. 1. Serialization.
|
| Question about MDI-Child Closing events | 13 Dec 2006 21:04 GMT | 4 |
The Closing event is broadcast by the multi-cast delegate which sends the event to all subscribed delegates. I wonder if the MDI container receives this event and then sends one to each MDI-Child
|
| Problem with application trying to read data from a network stream when the socket is closed | 13 Dec 2006 21:00 GMT | 2 |
I have a function within an application where a client connected to a server continuously sends data. The code on the server side is of the following form: Socket socket = receiveSocket;
|
| Background worker tasks sequentially? | 13 Dec 2006 20:58 GMT | 6 |
I'm able to use the Bacground Worker class to execute task and pain the UI. However I want to be able to execute n tasks in order, say n1, then n2 if there were no errors during n1, n3 so on. I'm wondering what would be the best way to do this , do I wait in a
|
| Where is System.Reflection.dll assembly? | 13 Dec 2006 20:51 GMT | 3 |
Hi, I am using FXCop on my c# project and it is complaining about signing the assembly with a strong name key. All the documentation I can find says to do: using System.Reflection;
|
| Outlook Message Format Library | 13 Dec 2006 20:49 GMT | 2 |
I need to be able to take messages that have been saved from Outlook (*.msg) and read them into a C# application (think of it as workflow management). But these msg files are pretty funky. All my research only turned up stuff about Automating Exchange and MAPI
|
| using System.Windows.Forms - can't find namespace? | 13 Dec 2006 19:42 GMT | 9 |
I am using a C# solution that somebody kindly sent me. It was a console application. I am trying to get use of the MessageBox. I have added the following using directive to the namespaces at the
|
| Spaces in Paths and Winword.exe | 13 Dec 2006 19:03 GMT | 1 |
I have a simple problem I am sure somebody can solve very easily. I want to do this; OpenFileDialog theDiag = new OpenFileDialog(); theDiag.ShowDialog();
|
| How to catch kill application | 13 Dec 2006 18:49 GMT | 3 |
How to I catch task manager killing application event or accidentally switching off the computer?
|