| Thread | Last Post | Replies |
|
| How to make my methods dynamic? | 26 Mar 2008 13:50 GMT | 11 |
Currently I have the the following methods in my class; public Circle LoadCircle(int a) { Circle result = new Circle(); ...
|
| run batch file with Standard Output and Input | 26 Mar 2008 12:22 GMT | 16 |
In my windows applicationm, i need to excute a batch file. this batch file throws some text and questions to the screen, i need to catch the standard Output, check if it's a question, in case it's a question, i want to popup a messageBox or something, and bring back to the batch ...
|
| Service terminating silently | 26 Mar 2008 11:34 GMT | 13 |
Thought I'd throw this out and see if anyone's seen anything similar. I have a Windows service written in C#, which occasionally stops silently. The process goes away, Windows notices and shows it as unstarted in the service control manager.
|
| Convert a int[] to a double[] | 26 Mar 2008 10:01 GMT | 13 |
I am passing a int[] to a function that only takes a double[] private double[] GraphData; public Form3(int[] OurData) {
|
| SOT: VS 2k8 have the ability to automatic event handling | 26 Mar 2008 08:13 GMT | 3 |
I know this isn't a VS specific NG but I'm curious as to if VS can automate handling events in the designer. The issue is that when I, say, double click a control it has some default event attached to it but what about in general? I can't find any place where I can select the ...
|
| C# set algorithm | 26 Mar 2008 05:13 GMT | 14 |
Does anyone have any tips on creating an efficient set algorithm? I have the following set {a, b, c, d, e}. I need to combine them in all possible ways: a
|
| FileUpload size limits | 26 Mar 2008 05:13 GMT | 2 |
I get the message "Not enough space for the file on this disk" whenever I try to upload a jpg file using the FileUpload member in my web based C# program. I increased the requestMaximum file size set to 8192K in the httpruntime parameter in my web.config file and the file I am ...
|
| Form | 26 Mar 2008 00:27 GMT | 2 |
Here is an easy question I just wonder if it's possible to say that a Form is a control like TextBox for example. //Tony
|
| Invoke in C# | 25 Mar 2008 23:12 GMT | 2 |
I have a problem to understand and use invoke in C#. I have a function in C. I need to use it in my new software (C#). This is the function : int StrToParameters( char **pCmde, char *pFormat, ... ) ;
|
| Truncated data using .NET 3.5 sockets VS 2008 | 25 Mar 2008 21:54 GMT | 26 |
I am having trouble sending streams of data from one socket to another using the following code. When the transmitter is running on the same machine as the receiver, the data transmits perfectly. When the transmitter runs on another
|
| c#3.0 and delegate question | 25 Mar 2008 21:19 GMT | 9 |
I have a callback method where I am going to update GUI with a status. In C#2.0 I can do the following if (this.InvokeRequired) {
|
| Image Resizing. | 25 Mar 2008 21:17 GMT | 5 |
I have a class I created to resize images in my program. It seems to work pretty good with JPGs and GIFs. Pngs look pretty good until you try to expand them, such as in Micorsoft Office Picture Manager by holding down the ctrl key and rolling your mouse wheel. It expands fine ...
|
| DateTime /File question | 25 Mar 2008 20:44 GMT | 6 |
I am trying to add Date and Current time to a name of a log file. I tried doing this: string logDateExtention = DateTime.Now.ToShortDateString().ToString() + DateTime.Now.ToShortTimeString().ToString();
|
| Testing Local Connection / Internet Connection | 25 Mar 2008 20:25 GMT | 6 |
I am trying to make sure that the local connection is up. I have presently been using the NetworkChange.NetworkAvailabilityChanged Event for this. Is there a better way to do this? Also, I want to test to see if the Internet Connection is up. I need the
|
| Array of Classes with user-defined constructor with parameters | 25 Mar 2008 20:20 GMT | 3 |
Is there a way to declare and use an array of classes using a constructor that takes parameters i.e. class something {
|