| Thread | Last Post | Replies |
|
| XmlSerializer | 19 Sep 2007 19:58 GMT | 1 |
When I execute this code everything works fine, no exception is throwed. Method GetObjectData was not entered, but object was serialized and file cos.xml was created with correct data. When I use BinaryFormater then Exception(" That metod... is throwed. I don't know why ...
|
| Events and threads | 19 Sep 2007 19:38 GMT | 7 |
Are there any specific rules or best-practices I should be aware regarding events and the threads they're fired on. Object 1 can be created on thread 1 for instance and an event then registered with it on thread 2. Object 1 might then fire the event on thread 3 and the event ...
|
| Inheritance question - Controlling Order | 19 Sep 2007 19:25 GMT | 7 |
I am coming from Delphi and when I have a method in the inherited class, I call Inherited to call the base class method. This is handy cause you can control where and when these things happen. Can you do this in C#?
|
| Showing a context menu during drag and drop | 19 Sep 2007 19:20 GMT | 2 |
I'm trying to show a context menu during a drag drop operation similar to the windows explorers right click drag and drop behavior (A full working sample is at the end of the post): void treeView1_DragDrop(object sender, DragEventArgs e)
|
| ArrayList | 19 Sep 2007 18:43 GMT | 4 |
I build arraylist from SqlDataReader with 3 fields. How Can I get for example the record number 100 and the second field? Thanks
|
| Better Auto-Generated Column Names for DataGridView | 19 Sep 2007 18:03 GMT | 1 |
Did the all-wise writers of DataGridView think of making an attribute we could apply to our class properties to give them prettier column names? It is nice and all having a property called 'CustName', however,
|
| Trace Listeners vs. Custom Logging Component | 19 Sep 2007 17:01 GMT | 3 |
I'm writing several small utility apps that all need to do some routine logging of their progress, exceptions encountered, etc. The utilities include a couple of Console apps, a windows Service, and a couple of Windows Forms apps.
|
| ASP Website dataBase connection works on one pc and not on another | 19 Sep 2007 17:00 GMT | 2 |
I've created a ASP.NET application on my pc using visual studio and it works fine. when i moved it to my web server (another pc with IIS) and surf to my website, the website comes up but for some reason doesn't connect to the
|
| Information about the process that called an application | 19 Sep 2007 16:58 GMT | 3 |
Basically i need to get an information about the process that started my console app. For example: cmd.exe -> myApp.exe I need to get current directory in cmd.exe when myApp.exe is called.
|
| Any way to restart a terminated thread | 19 Sep 2007 16:16 GMT | 11 |
Is there any way to start a terminated thread without using a pool or creating a new thread object? void counter() {
|
| Extracting days of the week from int/binary | 19 Sep 2007 16:02 GMT | 3 |
I'm writing an app to track file transfer activity. I have this enum to represent days of the week: Monday = 1 Tuesday = 2
|
| How is the start sequence for windows service | 19 Sep 2007 15:27 GMT | 2 |
Hello!! Below I have written the main method, the C-tor and the OnStart. Who is calling OnStart? It must be the operating system that calls it after the C-tor has finished
|
| TabPages, stop multiple instances of same thing? | 19 Sep 2007 15:18 GMT | 1 |
Within my application I have a TabControl and I am adding TabPages in dynamically at run time. My problem is that I am able to create the same TabPage twice, ie.
|
| Adding shapes to InkCanvas | 19 Sep 2007 14:50 GMT | 1 |
Could someone please tell me how to add a circle (ellipse) to an InkCanvas but as a stroke - a collection of StylusPoints. The requirements is to allow the user to create a sketch on the canvas and allow circles and rectangles to be dragged onto the canvas. I then playback
|
| ASP.NET starter book | 19 Sep 2007 12:32 GMT | 1 |
I want to learn ASP.NET using C# (not VB.NET). Any beginner book worth to buy? I am application developer using Delphi so will stick with that for desktop development.
|