| Thread | Last Post | Replies |
|
| sending data to printer | 12 Mar 2008 09:38 GMT | 2 |
I need to print the image i have drawn in a picture box. My program is create an application similar to paint in windows, I used picture box as the area to draw. Now after completing the work i need that picture to be printed. Can any one tell me how to send the picture data to
|
| First message sent is lost (TCP) | 12 Mar 2008 09:36 GMT | 3 |
Hello, I'm very new at C# and I'm writing a simple card game where two players can play a simple card game against each other. Communication is done through a server. I'm using the TcpClient class and I'm trying to do asynchronous reads
|
| How to force the program to continue after unhandled exception detection | 12 Mar 2008 09:03 GMT | 13 |
For my winforms app (.net 2.0) I have defined a general exception handler: Application.ThreadException += new
|
| insignificant question about spelling | 12 Mar 2008 08:04 GMT | 11 |
with regards to naming - eg methods or properties - I wonder sometimes about British vs American spelling. The c# language obviously uses American spelling, "serializable" or "color" for example. In my classes should I also follow this? Or is it ok to use British
|
| Controler | 12 Mar 2008 07:56 GMT | 1 |
I have a checkedListBox in the Form and have noticed that if I want to check a checkbox for one row in the checkedListBox I have to do it in two steps. First click on the selected row and then check the checkbox for the selected row.
|
| Typed datasets and joins | 12 Mar 2008 07:29 GMT | 4 |
How is the best way to deal with typed datasets which need to have joins, and having the adapter manage the Updates and Insert Commands. Obviously the designer wont generate the commands when the query contains a Join so I'm a bit stuck here.
|
| foreach Vs. dt.Select | 12 Mar 2008 07:20 GMT | 3 |
I need to update an particular set of rows in a datatable. Here is some sample code of what I want to do: DataTable dt = (DataTable)Session["Table"]; foreach(DataRow dr in dt.Rows)
|
| How to make common connection string for diff program? | 12 Mar 2008 07:17 GMT | 1 |
i have a problem where as i want to use two different C# net program in a single system where i have used 2 different sql server name. when i execute those program each time iam renaming the sql server name and executing the programs. Is there any way where i can write a
|
| batch printing pdf files | 12 Mar 2008 05:11 GMT | 2 |
I loop through the code that looks like this to batch a set of pdf files. Process command = new Process(); command.StartInfo.FileName = "AcroRd32.exe";
|
| Upgraded to Visual C# Express 2005 SP1, can no longer persist data in SQL Server Express | 12 Mar 2008 01:51 GMT | 1 |
After upgrading C# Express 2005, none of my apps will persist data to SQL Server Express (have not yet applied the Service Pack...downloading now). While the application is running, I can access the data I have tried
|
| validating dates and times | 12 Mar 2008 01:16 GMT | 12 |
(I know there are lots of different ways to do it) no regex, please if we have string date yyMMdd "080230" whats the best way to test for valid date ? Feb will never have 30 days,
|
| Schemagen for .NET | 11 Mar 2008 23:32 GMT | 3 |
In javaland, there is a program called schemagen which uses reflection to fetch the attributes (or annotations) of the classes and create a table in the database. Is there a similar feature for .NET programmers to automate the generation
|
| ClickOnce Help | 11 Mar 2008 22:36 GMT | 2 |
Not sure if this is the right NG, if not please point me in the right direction. We are developing a clickonce installer for our program Here are my basic questions:
|
| generics and reflection | 11 Mar 2008 22:28 GMT | 2 |
One of the property of returnedObject is of the type List<MyClass> (in just one instance) in some other case it could be List<MyClass2> I want to check if a particular propert is a generic list.
|
| C# API | 11 Mar 2008 22:28 GMT | 9 |
I am new to C#. I need to know hoe to write C# API. If somebody can point in right direction ; where to look at e.g. some link and example etc. that will be great. Cheers.
|