| Thread | Last Post | Replies |
|
| Interlocked vs volatile | 21 Mar 2006 21:43 GMT | 3 |
Can some one tell the criteria I can used to decide use of Interlocked.Increment() vs volatile , which is better? Thanks a lot! Ryan
|
| Determining if a file string points at a drive, a path, or a file, or an onion. | 21 Mar 2006 21:25 GMT | 2 |
Subject says it all really. I'm being passed a string, and I'm wondering if theres an easy way to determine what exactly the string points at? Cheers
|
| Quick check to see if Columnname exists in a datagridview | 21 Mar 2006 21:00 GMT | 7 |
I have a situation where I have a dynamically loaded DataGridView and I need to see if a particular column exists in the DataGridView before I enable it for editing. Is there an easy way to see if the column exists? Thanks!
|
| MemberShip provider for Windows Form Application | 21 Mar 2006 20:56 GMT | 1 |
I have search for this topic and found article on how to use ASP.NET MemberShip provider instead. Is it the way .net 2.0 expected us to do? If it really safe to develop win app by using some web library? Looking forward your comments.
|
| getting a specific field from a dataset and displaying it in a label. | 21 Mar 2006 20:51 GMT | 1 |
Hi, I am trying to use the ItemCommand in a datagrid (web form) to display *fields* from the specific row. Each row in the dataset has a primary key. The dataset single table is filled from a data adapter and SOME of the
|
| combobox usage | 21 Mar 2006 20:49 GMT | 3 |
i have a screen with customer details on it. for some items i only want to make a combobox available. eg. country - this will hold a defined list of countries. my question is how i set up the datasource etc. on this combo. of course, when opening the screen, i want the existing ...
|
| Standard Registry locations affected by Virus's ,Spyware and Adware | 21 Mar 2006 20:31 GMT | 3 |
Hai All Can anybody please tell me what are the standard registry locations that are affected by Virus's , Spyware and Adware Programs. Thanks in advance
|
| Calling an event from an inner class | 21 Mar 2006 19:48 GMT | 4 |
In this slightly contrived (though small, complete and perfectly formed) example: public class Inner {
|
| auto default GridColumnStyles | 21 Mar 2006 18:10 GMT | 1 |
Whats wrong with this code? DataSet ds = new DataSet(); DataTable tbl = new DataTable("Tbl"); tbl.Columns.Add("field1", typeof(string));
|
| Trouble with ArrayList | 21 Mar 2006 18:08 GMT | 4 |
When I was working with vs 2003 I was used to do thinks like this: ArrayList a = new ArrayList(); Doc d = new Doc(); d.field = "value";
|
| Regex Help | 21 Mar 2006 17:17 GMT | 1 |
I want to generate a usable filename (no path, drive letter, or extension) from strings from various sources (dates, database fields, user entry, etc). I'm trying to use the following line and regex to replace any invalid characters with an empty string. However, it doesn't work. ...
|
| How to insert a c# web control into a web page (if I don't have II | 21 Mar 2006 16:36 GMT | 7 |
I am exploring c#. I want to reference a c# web control in a web page much like you can with an activeX control. The syntax for doing this in ActiveX is something like <OBJECT ID="WKMapControl"
|
| How to change public properties in base class as private in derived class. | 21 Mar 2006 16:05 GMT | 4 |
I have these classes public class Base { private string str;
|
| Getting the InvocationList for an event in a different class | 21 Mar 2006 15:55 GMT | 3 |
I have a class with a DataTable built into it. Various places subscribe to the DataTable.RowChanging event. I want to grab a list of all the subscribers. Normally I'd use GetInvocationList, but that only seems to work on
|
| HTML Email | 21 Mar 2006 15:46 GMT | 5 |
I want to create a html email with c# and the class System.Web.Mail. The assign html code is correct, but the produced email has a lot of strange errors in the text. there are ! in the text, spaces and new lines in the tags.
|