| Thread | Last Post | Replies |
|
| Using LinkLabel to open a linked project html file | 07 Oct 2007 15:38 GMT | 2 |
To all, Thanks for the help in advance, to what is likely an utterly foolish question. I have a form with a linklabel control, that I want to open a web
|
| Translating using resource files | 07 Oct 2007 10:52 GMT | 2 |
I have resource files in different languages created by VCS 2005 Express. I want to use those files to translate reports at runtime. I have text to be translated as string. I think I need to search resource file for this string id.
|
| Deriving a class from Socket. | 07 Oct 2007 10:00 GMT | 3 |
I would like to derive my own class from the Socket class so that I can pass data from my client socket to the socket Server's OnAccept event.. I tried the syntax : public class MySocketClass: Socket
|
| Looking or c# project - Printer Management | 07 Oct 2007 03:07 GMT | 1 |
Several months ago I came across a C# (I think it was) project which was open source and managed printers like the commercial program PCounter. It tracked what printers and jobs were printed. Does anyone know the URL to this project.
|
| For a UserControl the message WM_INITMENU is never raised for a Context Menu? | 07 Oct 2007 02:57 GMT | 2 |
I'd really appreciate it if you can either verify or contradict following statement. I experiment but do not trust that I can design a perfect experiment. For a UserControl the message WM_INITMENU is never raised for a Context
|
| How to access app.config in a library | 07 Oct 2007 01:42 GMT | 2 |
I have a library project that implements a Business Layer for a web and a desktop application All my business classes are in this lib, so I have here the connection string to database as app setting (in app.config
|
| get the URL | 07 Oct 2007 00:12 GMT | 2 |
I have made a small form to send the mail to the websmaster, but i don;t know how to code this action: if the mail was sent successfully, than go to the url www.xxxyyyzzz.com Thanks
|
| How To Tell If A Type Supports And Interface | 06 Oct 2007 23:02 GMT | 5 |
I am using reflection and trying to determine if an assembly contains a type that has a particular interface. So my code looks like this: Assembly assembly = Assembly.LoadFile(fileName); foreach (Module module in assembly.GetModules())
|
| Play a Sound File and know when it's finished... | 06 Oct 2007 22:16 GMT | 3 |
As the title suggests, I'm trying to play back an audio file and know when it's finished. I've tried several methods: 1. My.Computer.Audio.Play - No way of knowing when a file is finished
|
| dataGridView setting a row | 06 Oct 2007 21:52 GMT | 1 |
I have a scenario where I am coding in the cellvaluechanged in case the user enters some bad data into a cell in a datagridview. The problem is it crashed during run because I think that there is no current row selected.
|
| regexes with balancing group definitions | 06 Oct 2007 20:29 GMT | 1 |
There's an article (well, an editor's update to an article - at http://msdn.microsoft.com/msdnmag/issues/04/06/NETMatters/#edupdate ) that presents the following regular expression for detecting balanced brackets.
|
| ComboBox of colors | 06 Oct 2007 15:41 GMT | 3 |
In my form, I want to have a comboBox fo colors. on each color i want to add my remark (like in outlook calendar), how can i do it? Thanks,
|
| dll paths | 06 Oct 2007 15:36 GMT | 3 |
in the app config...how can i tell my app where dll's are without registering them Thanks DaveP
|
| Simple Question about WMI in C# | 06 Oct 2007 14:38 GMT | 3 |
I just want to write a small program to do some job on the remote system with WMI, and my question is how can I deal with the WMI connection? To connect the remote host once we need or just keep the connection alive? I think maybe I can use a singleton pattern here, but I'm ...
|
| remove key from dictionary | 06 Oct 2007 11:13 GMT | 1 |
How do you remove a key, i.e. an entire key/value element, from Dictionary<K, V>? Thank you.
|