| Thread | Last Post | Replies |
|
| Beginner Inheritance Question | 10 Dec 2005 03:01 GMT | 8 |
I have a question regarding inheritance. I'll use the following code for an example (its been stripped down to the minimum): // code start using System;
|
| Bug tracking software. | 10 Dec 2005 01:37 GMT | 13 |
We've got a small team (about 5 people) and we'd like to track bugs/features of our software. We'd like a web based solution and free if possible. Anybody got any suggestions? TIA - Jeff
|
| How to add struct comments? | 10 Dec 2005 00:14 GMT | 3 |
I have several structs in a DLL. When I reference this DLL in other projects and point to any of the structs, none of the comments I've placed with them appear. For example: /// <summary>
|
| System.Reflection questions | 09 Dec 2005 23:41 GMT | 2 |
I have two questions about Reflection. One I think I know the answer to but will ask anyway. 1) I can delve into a component or executable and get all the way to the method within a class. But I can't see the code inside the method.
|
| Unit Testing | 09 Dec 2005 22:57 GMT | 11 |
In an effort to improve my own code and try to teach others that I work with that unit testing IS MANDATORY. I'm interested in examples of unit testing that other people are using. How many folks rely on NUNIT?
|
| ToolBox Implemetation | 09 Dec 2005 22:51 GMT | 1 |
Would any of you have a sample code to implement something similar to the Visual Studio toolbox? I'm trying to create a form that has a toolbar going in and out of the form.
|
| return value from store procedure | 09 Dec 2005 22:47 GMT | 3 |
I have this code: SqlConnection conn = null; string Table=""; int rCount;
|
| about SQL Server connect string | 09 Dec 2005 22:39 GMT | 1 |
How can set the SQL connect string , when I connect to SQL Server via TCP/IP? What else I need to do?
|
| DLL | 09 Dec 2005 22:37 GMT | 1 |
I am creating a wrapper dll. example i want to add a user. logic is written in SP. Web Service is used to get details from the application, then web service will pass the details to the
|
| EndTask don't work | 09 Dec 2005 22:11 GMT | 1 |
I'm using EnumWindows (User32.dll) function to get all currently open windows and fill a ListView. Then I want to close the selected windows using EndTask(IntPtr hwnd) or EndTask(IntPtr hwnd, bool fShutDown, bool fForce) (User32.dll) but always return false and not close de window. ...
|
| How to associate Panel and VScrollBar in c# | 09 Dec 2005 22:00 GMT | 1 |
I have a panel on which various components are placed. I now need to scroll the panel vertically using an exteranal VScrollBar component. Please help me with the code on how this can be achieved. Your help is appreciated.
|
| Queue.Dequeue () slow? | 09 Dec 2005 21:53 GMT | 4 |
It's currently taking a minimum of .2 seconds for me to dequeue an object - I'm wondering if it's the dequeue that is taking so long or if it's just the fact that i'm doing it like this: retMsg = (ServerMessage)s_messages.Dequeue();
|
| Crystal Reports Export to PDF Error | 09 Dec 2005 21:50 GMT | 3 |
VS 2005 Pro. I am getting the following error when I try to export a report to PDF or any other format using Crystal Reports 11 library. Does anyone knows how to fix this problem, the same code work fine in .NET 1.1 I have search for this error in Google and BusinessObjects ...
|
| valid types for Keys (Hashtable, Dictionary) | 09 Dec 2005 21:25 GMT | 4 |
Why can't I use an int[] for a key? Doing so evidently doesn't result in unique IDs being generated. I can convert the array into a delimited string, which works fine, but then I have a good deal of overhead parsing/casting the ints back.
|
| Mysterious error with System.Windows.Forms | 09 Dec 2005 20:49 GMT | 4 |
I reloaded a WinForms project in VStudio 2003 that has been working perfectly fine for months. Suddenly I'm getting strange reference errors AND I can no longer load any form in Designer view. Yet when I start a new project, everything appears to be working fine.
|