| Thread | Last Post | Replies |
|
| MemberShip, User, Roles.. is there a smarter way? | 16 Jul 2007 12:12 GMT | 1 |
I am currently using the built in membership functionality with asp.net 2.0. I currently have set the web.config to only store registered users in the database. I don't want to polute the aspnet_Users with anonymous users.
|
| Collections and database | 16 Jul 2007 11:15 GMT | 4 |
Hey folks, Im working on a project, and of course am modelling the objects with the database later in mind. I have a question about collections and how they should be best used. Lets take for instance, a skus
|
| Control Focus question | 16 Jul 2007 11:00 GMT | 1 |
I have 2 controls in my C# windows form, TextBox1 and Textbox2. On the form load, the focus is on TextBox1. Now I click the TextBox2. My question is the TextBox1's LostFocus or TextBox2's GotFocus comes first?
|
| Generic List Problem | 16 Jul 2007 10:35 GMT | 1 |
Hi i have generic list problem with DAL code. class UlazTotal { private System.DateTime uT_DATUMField;
|
| internet speed | 16 Jul 2007 09:31 GMT | 11 |
I want to detect the internet speed using C# to show the user on what speed he's connecting to internet?
|
| Adding panel to base Form? Cannot see controls. | 16 Jul 2007 08:53 GMT | 3 |
I have a windows Form that inherits from Base_form. In Base_form I added a panel that covers the whole Form (panel1.Dock = Fill). The problem is that all the controls in the Form that inherit from Base_form are "under" this panel, which means they're not visible..
|
| expandableObjectConvertors TypeConverters | 16 Jul 2007 08:52 GMT | 3 |
I have an object which I present to the user through a propertyGrid. With many of the properties (many of which are objects themselves) I have implemented my own TypeConverters; many of these inherit from the ExpandableObjectConverter so that child properties are available to ...
|
| Changing appearance of our Windows applciation? How? | 16 Jul 2007 08:51 GMT | 3 |
We have a rather big Windows application which includes an MDI and children Forms. We would like to change its appearance dramatically (nicer controls: buttons, tab controls, textboxes, grids) without having to modify the existing code. We can do minor changes to the application ...
|
| Hashtable thread safety / documentation | 16 Jul 2007 08:35 GMT | 3 |
I have a basic question regarding the Hashtable thread safety. According to MSDN docs, #1 Hashtable is thread safe for use by multiple reader threads, or a single writing thread
|
| Registering a custom DLL after deployment - advice? | 16 Jul 2007 01:32 GMT | 5 |
I use "Click Once" Deployment from VS2005. Works like a charm. I have to deploy a console app and an MS Access ADP. The console app invokes the ADP. I copy the ADP to the application files to be deployed from the console app and then use the Process obejct to invoke the ADP ...
|
| 'System.Configuration.ConfigurationSettings.AppSettings' is obsolete !! | 15 Jul 2007 22:56 GMT | 2 |
In trying to get the C# conversion code for Head First Design Patterns to work I came accross a number of warnings. e.g. Warning Number: 10
|
| Port number versus a socket? | 15 Jul 2007 22:48 GMT | 3 |
I'm about ready to attempt writting a simple TCP server in C# in which all I need to do is send out some data to a particular IP and port, and the end device will send it back to me. Almost like a ping, you could say. All I need to do is a compare what I get back to what was ...
|
| Serializing from XML with remote DTD | 15 Jul 2007 21:47 GMT | 2 |
I have an XML file which I am serializing into a class using the following code: // XmlSerializer s = new XmlSerializer(typeof(edition));
|
| using two forms | 15 Jul 2007 20:19 GMT | 10 |
Hi, Im using two forms in the same application. Main form opens, click menu for secend form. This is a log on form, used to get three bits of info. Up to this point Im ok. I then want to send this info back to form one for it to process. My question is how do I call the relevent
|
| How make Windows form controls draw all at once so doesn't load "ugly"? | 15 Jul 2007 20:10 GMT | 2 |
In my Windows app, when you click to load a form, it kind of draws part of some controls as it's doing other things and then finally draws everything. This looks bad. Is there a way I can just keep everything blank (or have a "Loading
|