| Thread | Last Post | Replies |
|
| Specific application design input required, please. | 24 Sep 2005 04:29 GMT | 3 |
I have an architectural question that I would appreciate some input on, please. Earlier this year I spent some time in Sri Lanka working with a rpoject to help after the tsunami. A part of the work I was doing was
|
| How to obtain error statusCode form Server.GetLastError()? | 24 Sep 2005 02:24 GMT | 3 |
I use GenericErrorPage.aspx for the redirect page when some error occur. I want to show some different according error statusCode . How can I get error statusCode form Server.GetLastError()?
|
| Priority in MSMQ (Microsoft Message Queuing) | 24 Sep 2005 02:05 GMT | 1 |
I have a question on Microsoft Message Queue. How do I give higher priority to messages and get it process before others. I will like to use the mechanism supplied by the queue service rather than relying on reading all the messages and ordering them. Below I have a simple send ...
|
| VC# 2005 beta2 - project crashed and burned | 24 Sep 2005 01:04 GMT | 1 |
VC# 2005 (express/beta2) crashed on me. It took my project with it as there's no trace of it on the hard disk. Is there a way to recover? Thanks,
|
| Clip a child control | 24 Sep 2005 00:02 GMT | 3 |
Hi, I created a control deriving from System.Windows.Forms.Control. In my own OnPaint method, I can draw and set the clipping and everything is perfect. But I also added some checkboxes by setting their parent as my control, and I can seem to get them to clip. They just draw
|
| xmldocument byval to a function is changing the input doc? Help | 23 Sep 2005 23:14 GMT | 5 |
I have an example below that is not working correctly. I have a web application that passes a System.Xml.XmlDocument object "oInputDoc" around to functions byval. I do not want the "oInputDoc" object to change when it is passed into
|
| Postfix increment | 23 Sep 2005 23:14 GMT | 13 |
I have found an interesting thing with postfix operator ++. What should contain the variable i after exceution the following code: int i = 5; i = i++;
|
| Run command line | 23 Sep 2005 23:00 GMT | 2 |
Isn't there a way to run a command-line string from .NET? Like: Shell.Execute( "del *.tmp" ); Seems I remember one but can't find it right now. I thought it would be on the Environment class, then I checked Console and Application. Or am I
|
| Getting args array from files launch through file association | 23 Sep 2005 22:17 GMT | 1 |
I've got a process engine written in .Net. the user writes a data file and saves it as file type ".xyz". I have a file assiciation set up in the database that when a .xyz file is invoked (double click or called in cmd prompt) it passed to my process engine executable as a cmd ...
|
| Exception with thread | 23 Sep 2005 22:09 GMT | 3 |
I have this: - a form - a user control in the form In the user control I have a worker thread.
|
| DateTimePicker | 23 Sep 2005 21:32 GMT | 1 |
When I select DateTimePicker a month calender is displayed. I pick a date and things work fine, but the calendar does not go away. How can I get it to go away after selecting a date. Please tell me what I am doing wrong!!
|
| ToolTip | 23 Sep 2005 21:13 GMT | 2 |
I've succeeded in creating multi-line ToolTips in code: ttAllToolTips.SetToolTip(this.btnNextTaskSet , "Retrieve the next\n" + Convert.ToString(TaskRecords) + " task records."); But I'm wondering if this can be done through the properties window. Anyone
|
| Converting characters in string to ascii | 23 Sep 2005 20:52 GMT | 8 |
In C#, how would you loop through each character in a string and convert them to their ascii values?
|
| Strong Name Assembly Issue | 23 Sep 2005 20:49 GMT | 3 |
We would like our application to be signed and have a strong name. However our application references a 3rd party .dll that does not have a strong name and so when we compile we get the dreaded compiler error: Assembly generation failed -- Referenced assembly 'Xxxxxxxxx' does not ...
|
| difference between two dates in Month | 23 Sep 2005 20:18 GMT | 6 |
In C#, How can I get the difference between two dates in number of months? I tried to use the Substract method of the DateTime class and it is giving me the difference in TimeSpan,From which I can get the duration in days, hours and so.. but how can I get the difference in months?
|