| Thread | Last Post | Replies |
|
| ORM | 22 Sep 2005 09:32 GMT | 6 |
Any one used any Object relational Mappings(ORM) in your projects? Anyone have idea of which ORM is better? Regards, P.Nishanthan
|
| EditItemTemplate - SelectedIndex | 22 Sep 2005 09:27 GMT | 1 |
Looks like I can just populate dropdownlist using DataView, say TempDataView, during my pageload and then in the aspx file in the EditItemTemplate use something like this:
|
| Activate QuickLaunch | 22 Sep 2005 08:34 GMT | 5 |
Can you activate and deactivate the Windows Toolbar function "QuickLaunch" programatically?
|
| Strongly typed hash | 22 Sep 2005 08:33 GMT | 2 |
I want to make a strongly typed hash class. I want to be able to add, delete and foreach through the hash. Does anyone know where there is some sample code to accomplish this. Gary
|
| Bitmap to PictureBox control problem | 22 Sep 2005 08:14 GMT | 2 |
I encountered a strange behavior when doing ‘new Bitmap’: The following code works fine and the given bitmap file is shown on the PictureBox (the m_DrawArea) in the correct bitmap sizes: private Graphics m_gMapImg;
|
| Controls in windows tray/taskbar | 22 Sep 2005 07:01 GMT | 2 |
Does anyone know how to put a textbox in the windows tray or taskbar (a la google desktop search) There is plenty of info on how to make your app. appear as an icon in there but not adding custom controls to that area.
|
| NullReferenceException in System.Runtime.Remoting.Channels.CoreChannel.SetupUrlBashingForIisSslIfNecessary ??? | 22 Sep 2005 06:50 GMT | 1 |
We just started getting NullReferenceException in one of our applications on our demo server. This is occuring in a .NET Windows Service that is using binary remoting over TCP to talk to another .NET Windows Service on the same
|
| troubles with finally statement and objects | 22 Sep 2005 06:32 GMT | 16 |
I am using the try catch finally block in many places in my code. When a create an sqldatareader dr and try to close it in my finally block I get the error: use of unsigned local variable. dr.close();
|
| Help with value passing | 22 Sep 2005 06:29 GMT | 2 |
I send a parameter from a Form (Form1) to an other form (Form2): Form2 frm2 = new Form2(); frm2.number_frm2 = number_frm1; frm2.Show();
|
| Windows Services | 22 Sep 2005 06:01 GMT | 3 |
Can any one point me to windows service source code for accessing network resource (vb.net or c#) Thanks in advance. Regards,
|
| How do I add a blank item to a combobox that is databound to a dataset? | 22 Sep 2005 05:55 GMT | 6 |
I fill a table in a dataset with values that will be used by a combobox for the combobox's items. The combobox is a drop down list that only allows the user to select from the list but not enter any new values. What I need to do is include a blank row in the list so that when it is
|
| Better way to do this in C# 2003? | 22 Sep 2005 05:49 GMT | 6 |
I have two simple classes called 'User' and 'Users', the entire code for both classes is shown below. ****======== User.cs ========**** public class User
|
| Full Screen Dialog | 22 Sep 2005 05:43 GMT | 1 |
How do I create full screen dialog in C# ? Full screen in the sense that it covers everything on the screen including the tast bar. Thanks.
|
| Seting ntfs persmission of a remote folder with wmi from a web app | 22 Sep 2005 05:11 GMT | 8 |
Guys. I need to set the file permissions of a folder on a remote fileserver for a user I have just created using the web app I am writing. I have the users account name and SID, the name of the file server and the physical path to the parent folder.
|
| User Control Events - HELP | 22 Sep 2005 05:01 GMT | 2 |
I hope you can help me. I have a User Control, which has a Label that covers the entire control. I want to assign a MouseClick event to the User Control, however, the event does not fire because the click fires the MouseClick event on the Label rather than the User Control.
|