| Thread | Last Post | Replies |
|
| Double vs double | 10 Sep 2007 07:34 GMT | 8 |
Is there a difference between: private Double[,] B = new double[2, 2]; and private double[,] E = new double[2, 2];
|
| How to stop a thread | 10 Sep 2007 07:30 GMT | 9 |
I'm using Thread and ThreadStart to create a thread for testing purposes and I do not want to use a pool because the thread exists for the life time of the app. Eventually I might move on to using pools but at this point I'm just testing some timing issues.
|
| Importance of Anonymous Methods/Delegates | 10 Sep 2007 06:29 GMT | 7 |
I have just gotten up to speed on what anonymous methods are (syntax, capabilities, etc), and how they can be used with /called via delegates. What I am wondering is... 1. Are they only/mostly syntactic sugar (important as that can be)?
|
| Certification | 10 Sep 2007 04:42 GMT | 7 |
I've currently started my MCAD certification. I'm wondering, however, if it would be a better idea to take the MCTS for the 2.0 framework instead. I realize I can upgrade from a MCAD to a MCPD, but I'm wondering which route would be best.
|
| Access lookup-service managed by C module | 10 Sep 2007 03:37 GMT | 3 |
I'm not a C# programmer so please be gentle: Prereq: --------------- - The lookup service (see below) implemented by a C module cannot be
|
| Read/Parse a fixed length file | 10 Sep 2007 01:56 GMT | 5 |
Is there an easy way to read a fixed length file that will be parsed and it’s data inserted into a DB table? Currently, the fixed length file contains 61 columns, and I am defining variables in my code to store those values. I am also defining the variables
|
| strange compilation warning | 10 Sep 2007 01:53 GMT | 3 |
The following code: enum Foo { one, two }; int Bar(Foo foo) {
|
| How to work with Header files(.h) and lib files in C | 10 Sep 2007 00:58 GMT | 1 |
Hi!all. As part of the course project in the university, students have been given task to develop a front-end for SMILE( an API written in C++ for network modelling). Upon extracting the setup, it gives a collection of " Header files and Lib files" written in c++.
|
| Crystal Reports Book | 10 Sep 2007 00:48 GMT | 1 |
Does anyone know a good book (or tutorial) on Crystal Reports in C# ? Thanks in advance.
|
| RichTextBox scroll position | 09 Sep 2007 23:15 GMT | 2 |
I have a somewhat long calculation report printed out in a RichTextBox. To find or monitor a particular value, users scroll down to the location of the data in the RichTextBox. However, when the user changes the input data, a recalculation is made and a new report is generated. ...
|
| 'embedded resources' and Dispose error..? | 09 Sep 2007 22:34 GMT | 8 |
I'm using Visual C# 2005 Express. if I create a new "application windows" project and run it (F5), it works well. (an empty window is launched..) as soon as I set the build action to embedded resource, I can't run it
|
| how calc the DesktopLocation of a control on a Form? | 09 Sep 2007 22:27 GMT | 2 |
I am using ShowDialog to show a popup form and want to position the popup relative to the control on the form the popup is pertinent to. For this, I am using FormStartPosition.Manual to set the position of the form relative to the desktop.
|
| MessageBox | 09 Sep 2007 21:40 GMT | 3 |
Anyone knows if a Message Dialogue Box (MessageBox) is available in the Toolbox panel, or if i have to write all the time the code to create it? Thanks
|
| Generics with multiple constrains | 09 Sep 2007 21:24 GMT | 6 |
I am trying to create a generics class with multiple constrains, as follows: public class KeyHandler<T> where T : TextBoxBase, ComboBox When I try that, the compiler would complain: The class type constraint 'System.Windows.Forms.ComboBox' must come before
|
| Compiler that allows inline IL | 09 Sep 2007 20:02 GMT | 3 |
As far as I know, csc does not support inline IL. I was wondering: is there any C# compiler that allows inline IL????
|