| Thread | Last Post | Replies |
|
| Cause form to blink different colors within the task bar? | 20 Jul 2005 17:48 GMT | 4 |
Many of my users have their sound cards muted, so I need some way of alerting them visually that a message box has appeared on a form that could be hidden beneath other open applications. I've noticed that whenever I receive a message from within MSN Messenger, the chat window ...
|
| programattically adding Text to RichTextBox | 20 Jul 2005 17:47 GMT | 2 |
It seems that when I programattically add to the Text property (something like RichText1.Text += string1), I lose the formatting that was previously applied to the original Text. Is that how it's supposed to behave? Does that mean I have to add the text directly to the Rtf property ...
|
| int to proc conversion | 20 Jul 2005 17:24 GMT | 2 |
I am using a conversion from int to char to use it with SNMP. In this moment I use: int proc=45; // here cam be any value from 1 to 255 string cProc="";
|
| possible to populate a collection in its constructor? | 20 Jul 2005 17:16 GMT | 2 |
Is there some way to achieve something this (without calling the Add method of the collection)?: NameValueCollection nvc = new NameValueCollection() {"foo"="bar", "a"="b"};
|
| Pass input to a running process. | 20 Jul 2005 16:55 GMT | 4 |
Hi all, I want to run an external app from an assembly. Simple enough...
> Process ExtProcess = new Process(); > ExtProcess.StartInfo.FileName = myAppName; |
| Uniquely Merging XML files | 20 Jul 2005 16:42 GMT | 1 |
I was easily able to merge 2 XML files using the guide at http://support.microsoft.com/kb/311530/EN-US/. However, the two XML files may contain duplicate tags. Is there an easy way to merge so that I do not have duplicate tags in the final document? The format of my XML files are ...
|
| How to fill listview in a different class and file? | 20 Jul 2005 16:17 GMT | 2 |
In Form1.cs I have defined the "InstituteAdministrator" class which contains ListView "listViewAddress". In a second file (FormTreeView.cs) I have the class FormTreeView with the method "dataTreeView1_AfterSelect". When the user
|
| card reader for pocket pc | 20 Jul 2005 16:17 GMT | 5 |
anyone got any examples of smart card reading for the pocket pc?
|
| Specify number get color | 20 Jul 2005 15:54 GMT | 3 |
Is there a way to specify a number (0-141) to obtain one of the system colors ? Pen pen = new Pen(ColorNum); where ColorNum is a method to specify a color by its enumeration value.
|
| writing to a specific point in an array file | 20 Jul 2005 15:36 GMT | 2 |
I'm trying to store all of my data into one file (there're about 140 things to keep track of). I have no problem reading a specific string from the array file, but I wasn't sure how to replace just one item. I know I can get the entire array, then save the whole thing (with a ...
|
| ADO.Net or DB Engine? | 20 Jul 2005 15:17 GMT | 1 |
this post also appears in ado.net group, anyway I appreciate any help here too. I created an sp in northwind in SQL server 2000, CREATE proc [dbo].[up_getCount]
|
| licences.licx hell | 20 Jul 2005 14:31 GMT | 1 |
We're using several sets of third party toolbox controls and each of these append licensing information to a licences.licx file when they're dropped onto a form. Our solution currently has 25 different projects. Different subsets of the
|
| How to eject CD ROM in C#. | 20 Jul 2005 14:25 GMT | 4 |
I want to access, detect, eject(open and close) CD Rom using C#. How i can do this..?
 Signature Mähésh Kumär. R cyberiafreak
|
| Convert byte[] into Array? | 20 Jul 2005 13:50 GMT | 6 |
I need some help converting byte[] into Array: int bufferLen = Convert.ToInt32(file.Length); byte buffer = new byte[bufferLen]; int len = sr.Read(buffer, 0, bufferLen);
|
| A Bitmap from a Bitmap | 20 Jul 2005 13:41 GMT | 3 |
=========== INTRODUCTION: =========== I'd like to take only a part of a Bitmap. I'm workin in unsafe mode with
|