| Thread | Last Post | Replies |
|
| No memo control in C# | 25 Nov 2007 15:44 GMT | 2 |
I am writing my first PPC program in C#, but I just noticed that there is no memo control in my toolbox by default. What is the procedure of installing a memo into the toolbox? Thanks
|
| Getting form NameValueCollection from Html | 25 Nov 2007 14:45 GMT | 12 |
I need to check for forms in html on the web, and I found this: http://msdn2.microsoft.com/en-us/library/system.web.httprequest.form(VS.90).aspx But I can't find this property in C#... Am I doing something wrong? Is there something else that dose it?
|
| Hidden data in ListBox/ListView items? | 25 Nov 2007 14:14 GMT | 2 |
I have a ListBox that is displaying a formatted string based on the contents of a DataSet. The purpose of the listbox is for the user to select an entry to delete, but I'm not sure how to match the listbox entry with the corresponding DataRow.
|
| Width an decimal places of DbLinQ property | 25 Nov 2007 14:01 GMT | 3 |
I have lot of columns in database like Price Numeric(5,2) Street Character(30) For UI display and validation I need to retrieve width and for numeric
|
| what is the best datatype for.. | 25 Nov 2007 12:39 GMT | 41 |
I need to some sort of data type that will hold a listing of ID's and their counts/frequency. As I do some processing I get an ID back which I need to store and keep an accurate count for how many times that ID is listed. For example I might get a listing of these
|
| System.Net.Mail and SSL | 25 Nov 2007 10:08 GMT | 1 |
I am having trouble with sending email via a C#2.0 application, I use the same settings as I use in Outlook but I cannot get email to send. I am trying to use SSL on port 465 and get the error below, If I disable SSL and use port 587 all goes well.
|
| 2 file namespace won't work | 25 Nov 2007 09:38 GMT | 1 |
I have a namespace spanning 2 files. One is an aspx.cs (so it has an aspx page too, and a partial class) page, and the other is a normal .cs file. They are both in the same directory. Both have the same namespace {} definition, and yet my aspx.cs page cannot
|
| File.Copy | 25 Nov 2007 09:19 GMT | 4 |
Can anyone help with this? I am using C# with IIS 6.0 on Windows 2003 Server. I am trying to copy a file over the network. It is attempting to copy a file on a NAS (external hard drive), which is Linux based. I have already set the
|
| update query in ms-access doesn't working | 25 Nov 2007 09:13 GMT | 5 |
hi guys, my prblem is that I cannot update sql query against MS ACCESS using C#. Everytime wen i do so, i got an exception (at runtime) as 'UPDATE syntax not correct'. I don find any error in my 'update' syntax.
|
| what is wrong with save code | 25 Nov 2007 08:27 GMT | 2 |
inserted record is present only in the dataset/bindingsource but not in the sql table same for updated record, changes is only in the dataset or the bindingsource but not in the actual physical sql table.
|
| Nested Generic Dictionary Declaration | 25 Nov 2007 08:20 GMT | 2 |
I am trying to create a nested Dictionary and get an error that seems odd to me. Here is my declaration: private IDictionary<Guid, IDictionary<Guid, string>> myNestedDictionary
|
| C# 2.0.50727 compiler crashes | 25 Nov 2007 07:26 GMT | 2 |
the following code crashes my csc.exe (visual studio 2005): project Base references: System BaseClass.cs:
|
| Parameter contents changing after class creation | 25 Nov 2007 07:03 GMT | 2 |
I'm having trouble with a class that accepts an ArrayList as a parameter. The code looks something like this: ArrayList arrayOne = new ArrayList(); arrayOne.Add("Hello ");
|
| Object pointer management in C# (from a C++ perspective) | 25 Nov 2007 01:46 GMT | 5 |
please consider the following scenario: I allocate some objects in C# using new. e.g.: MyObject x = new MyObject();
|
| Check Size of Web File Before Downloading it? | 25 Nov 2007 01:34 GMT | 3 |
Is it possible to request the size of a file given a URL? I would like to ignore files less than a user-specified value, but I don't think I should have to download it first, just to find out. Any help?
|