| Thread | Last Post | Replies |
|
| Problem with ManagementObject.. | 27 Sep 2005 22:08 GMT | 9 |
I am trying following code. string fileObject = @"C:\Documents and Settings\myfolder\Temp.txt"; ManagementBaseObject ret = null; ManagementPath path = new ManagementPath( );
|
| Auto generated code class in VS 2005 for C# 2.0 projects? | 27 Sep 2005 20:41 GMT | 2 |
Where is the auto generated code (InitializeComponent, etc...) located in VS 2005 projects and web projects now for c# 2.0 applications? I have my .cs page with the partial ....etc.... but I can't find a file with all the auto generated code that used to be in the page in 1.1.
|
| Slow form with multiple user controls redraw | 27 Sep 2005 20:37 GMT | 2 |
I'm working with WinForm. It has 30 same user control, each with 4 buttons, 3 labels, 3 textboxes, 2 picture boxes and uses override onPaint to draw gradient rectangle. Main form also has 2 panels with same gradient. I'm trying to reduce drawing speed on form activation. But at ...
|
| Function key to Press Button | 27 Sep 2005 20:07 GMT | 2 |
When the user presses F12, it would be like if the user click on the "Complete" button. In other words, when the user presses F12, I want the code be hide my button's "on_click" to run.
|
| Any API to access WebDAV | 27 Sep 2005 20:04 GMT | 2 |
Is there any programmatic way to communicate with WebDav. I only need to upload / download files from IIS 6.0. Thanks, Raj.
|
| How to copy a file from a .NET solution into a local folder during Runtime | 27 Sep 2005 19:57 GMT | 1 |
I'm want retrieve a file, edit it and then copy it to a folder during runtime I'm trying to figure where exactly can I store these files in the .NET solution so that I can access them during RunTime.
|
| Hide Datagrid Row Header...? | 27 Sep 2005 19:23 GMT | 4 |
I am trying to hide the datagrid row header (the left most column that has the 'select' triangle in it which moves with the selected row). It seems to be fairly simple; this.dgStockMasterSummary.RowHeadersVisible = false; however it doesn't hide it. Hiding the column headers works ...
|
| Interprete/calculate arithmetic expression | 27 Sep 2005 18:17 GMT | 6 |
Got earlier very valuable feedback from this group, so I am trying again. Given a string with an arithmetic expression containing variables, e.g. "a+b*sin(x)", how can I calculate its value within my program for given
|
| How expensive is binary deserialization? | 27 Sep 2005 18:11 GMT | 6 |
I need my program to start as fast as possible. Will deserialization a few settings using binary deserialization affect that? Or should I keep these settings in XML, will that be any better? Thanks in advance,
|
| C# constructor problem | 27 Sep 2005 18:11 GMT | 7 |
I've got a really weird problem. public Map(float zoomFactor, int panStep, float maxWidth, float minWidth, Document svgDocument, string svgId) {
|
| read Controles properties from other thread (problem) | 27 Sep 2005 18:08 GMT | 1 |
I have the following structure : public struct CA_structure { public int ModuleId;
|
| How to use File.Exists? | 27 Sep 2005 17:56 GMT | 3 |
I have the below string variable and I am wondering how to check if this file is present??? string str_Path = @"C:\Documents and Settings\DanielD\My Documents\PLAY AREA\ HLS 2\Layouts£.mdb"
|
| calculating date time | 27 Sep 2005 17:44 GMT | 5 |
I have used the datetime class, but I just came up with a situation that need to have some advise. If I now how much time have passed, can I know the original date?. Lets say that I know that have passed 2 weeks and 3 days after any given event. How can I know the original
|
| Calling a batch file in a Web Service using Process object, uses wrong user context. | 27 Sep 2005 17:30 GMT | 1 |
I have a web service that needs to create a batch file and call it (since there are no APIs for the functionality I am looking for). I am using the Process and ProcessStartInfo objects. When I try to call the batch file, it just returns with a return code of 1. When I call cmd.exe, ...
|
| can i get full class hierarchy of visual studio 2005?? | 27 Sep 2005 15:40 GMT | 2 |
can i get full class hierarchy of visual studio 2005?? especially, i want to get cotrol class hierarchy of vs.net 2005 help me...
|