| Thread | Last Post | Replies |
|
| reduce to icon tray | 25 Jul 2005 10:22 GMT | 3 |
Hello NG, I have a windows application (C#) and I want it to be minimized to icon tray (lower right corner) when user clicks minimize or close. It will restore to the size when clicked on that icon. Very much like SQL Server Service
|
| Changing the color of Menubar in Windows Form | 25 Jul 2005 09:26 GMT | 1 |
How is it possible to change the color of Menubar in Windows Form. I was able to do this for Menu items by using the property "OwnerDraw" and providing separate drawing functions. I tried using some of the Windows APIs such as "CreateSolidBrush" and "SetMenuInfo" but it always ...
|
| C# Service Terminating Itself | 25 Jul 2005 09:14 GMT | 18 |
I have a C# Windows Service running as the NetworkService account because it needs to access a network share. As part of the service's initialization, I want the service to terminate, if an unrecoverable error occurs. When that case occurs, I create a
|
| Menustrips | 25 Jul 2005 09:04 GMT | 7 |
How do I insert a MDI child menustrip without any matches within the parent menustrip so that the entire top level child menustrip comes after a specified top level parent menu item. For example inserting the child menustrip after a menuitem "View" on the parent and before ...
|
| adding XML documentation to dll in C# | 25 Jul 2005 08:10 GMT | 3 |
I want to add description of my functions in C#. I have there dll. This is for sure that I had to add XML documentation. But I don't know how to begin. I am new to C#. Help me by giving some example.
|
| Output data from SQL to MsWord! | 25 Jul 2005 07:23 GMT | 1 |
In ASP.Net, C#, SQL Server 2000, webform. How do I output data from SQL Server 2000 to a MsWord document, using C# webform? Any help will be appreciated. Jason
|
| getting name of a file extension from explorer | 25 Jul 2005 07:18 GMT | 5 |
How do you go about getting the "type" of a file from explorer? Say if I want to know what the type for the extension .DOC was, which is "Micrsoft Word Document" in explorer, how would I do this? I just want to get the name of the extension.. I do not have the physical file to ...
|
| listview item selection..?? | 25 Jul 2005 04:36 GMT | 7 |
hi groups, I have placed an listview control, i want to iterate thru the control and find the clicked event items. listView2.Items.Add(fname[i].ToString(), i); how i can perform the iteration to find the item clicked...? and its item.
|
| Can a type be instantiated at runtime? | 25 Jul 2005 03:52 GMT | 5 |
I have a function that I want to be passed a System.Type. If the type is derived from a specific class, I want to have the function instantiate an instance. With MFC, this would be a snap (provided the class was created with the DYNCREATE macros).
|
| Product Activation Question | 25 Jul 2005 02:12 GMT | 1 |
I can't seem to find either in my copy of Visual Studio.NET (academic version) or on MS website IF I can install VS.NET on both my Desktop AND my Laptop with respect to proper product activation. I know they let you do this with MS Office.
|
| Localhost IP Addresses Other Than 127.0.0.1 | 24 Jul 2005 23:33 GMT | 4 |
We are developing an application in C# that runs on a PC and communicates with a piece of equipment via the ethernet. For testing we have developed a simulation of the equipment that we want to run on the same PC as the application. We assigned the address 127.168.8.225 to the ...
|
| How process messages in a loop? | 24 Jul 2005 23:02 GMT | 3 |
I am copying data from one FileStream to another in a loop. Inside the loop I display progress messages in a StatusBar. The form has a Stop button that sets a private Boolean variable to true. Also inside the loop I check that value of the variable and exit the loop if it is true.
|
| Converting image to byte array | 24 Jul 2005 17:24 GMT | 6 |
I am trying to convert a jpeg image stored in a PictureBox to a byte array in order to later save it to a database, but I get this error : "Generic Error in GDI+". The source code is the following (when clicking in a button):
|
| Treeview -> TreeNode -> Object | 24 Jul 2005 17:03 GMT | 6 |
I have a treeview with a Root, a Contact Type, and a Contact. Like MSN Messenger. Is there a way that I can say something like if treenode.tag is classContact then
|
| Extract file name from full path? | 24 Jul 2005 16:09 GMT | 3 |
Is there a method that will take a full path and filename as a parameter and return just the filename? I am currently using the following code but it is extremely slow for files on a DVD. for (int I = 0; I < openVobDialog.FileNames.Length; I++)
|