| Thread | Last Post | Replies |
|
| Set additional headers in email | 23 Sep 2005 12:29 GMT | 1 |
Is there a way to set additional headers in an email message sent using System.Net.Mail (.net 2.0) ? I want to add some additional headers to the outgoing emails but cannot seem to find a way to add additional headers to the email message.
|
| How do I put my own ActiveX control on an ASP.NET Web Form | 23 Sep 2005 12:26 GMT | 1 |
I have an ActiveX control that I have been using for years, it was written in VC6.0. How do I put this control on a c# web form and access it via a variable from the c# code ?
|
| Winforms application not running on W2000 | 23 Sep 2005 11:22 GMT | 2 |
I've developed Winforms C# simple application that does not contains any "strange" reference to any external or third-party DLL. It only reads and writes a file. A user tried to run it from his W2000, but failed. Normal because he
|
| How to work with inheritance of Delegate and Event | 23 Sep 2005 11:16 GMT | 3 |
There is a scenario, in which there is a counter in my base class. There is some initial value of this counter (check below code). Now there is a function "DecreaseCount", which will decrease count. Now I want some functionality like when this counter become zero(0) a
|
| Exception in String.Format "Input string was not in a correct format" | 23 Sep 2005 11:04 GMT | 1 |
if the reason for error is simple, excuse me. but i cant find what the reason is. Here is the snippet : string script = String.Format(@"<script src='common.js' type='text/javascript'></script>
|
| Naive memory management questions. | 23 Sep 2005 09:33 GMT | 9 |
I've an asp.net, c#, sql server website and the volumes are starting to rise quickly. I've been asked to look at improving the memory usage of the application. I've not looked at this before so these are probably naive questions:
|
| IP Address lookup problem | 23 Sep 2005 09:08 GMT | 2 |
Hope someone can help me out here. I'm writing some code (web forms) to see where a specific domain name resolves and if its not a local address, redirect to a specific redirect page.
|
| dotnet tries to preformat odbc data datetime but fails | 23 Sep 2005 08:50 GMT | 4 |
I am reading data from a unix odbc datasource in a c# program. Reading the data as works fine, but one field, contains a date-time format that .net does not understand. The query would be: "Select birthdate from <tabel> where bla bla"
|
| Database to use in C# | 23 Sep 2005 08:41 GMT | 5 |
I'm in the design phase of a little database program in C#. But I don't know what database to use. The DB should be free, easy to set up, and easy to program up against in C#. Are there any good guides regarding this subject?
|
| GDI, int and Color | 23 Sep 2005 08:27 GMT | 2 |
I would like to do int accumulator = (int) bitmap.GetPixel(x,y); but it is unable to do the casting from the Color to the int. How can I do?
|
| save a Bitmap as grayscale | 23 Sep 2005 08:23 GMT | 8 |
I'm using bmp.Save() and the bmp is in PixelFormat.Format8bppIndexed. But when I open the image with Gimp, it tells me that the image is RGB and not grayscale.
|
| General questions on exceptions | 23 Sep 2005 08:03 GMT | 3 |
In general how do you indentify a specific error? If 2 different error conditions throw the same type of exception how do you know which error occured? There are no error numbers, so are you forced to compare Message strings? But these strings are locale dependent, so that
|
| send some parameter value to exe file | 23 Sep 2005 06:32 GMT | 1 |
there is a execution file with some parameter which is title property . this file is a windows form file and also exe file . Not DLL file. i'd like to execute it another program. when another program start it i want to change it's title property
|
| Testing Transaction Commit and Rollback in C# ASP.Net | 23 Sep 2005 06:20 GMT | 1 |
I am just wondering how do we test the transaction's Commit and Rollback? How do we simulate a situation to let the transaction fail then Rollback? Thanks for help. Jason
|
| Add Records to Datagrid | 23 Sep 2005 04:29 GMT | 5 |
I have two questions. 1) What is the code to check if datagrid already has a datasource? When the user clicks "ADD" button I want to add a record to the data grid, if the user clicks "ADD" again I want another record added to the datagrid.
|