| Thread | Last Post | Replies |
|
| Application fail to terminate between multiple forms | 23 Aug 2006 02:37 GMT | 2 |
I create 2 forms for a windows form application: (coding attached) 1) FrmLogin : the login form which show when the application start 2) FrmMain : the main form which show if user input "User" in a textbox in login form, else
|
| Easiest question about drawing a rectangle | 22 Aug 2006 23:04 GMT | 1 |
i wanna draw a rectangle on a form and resize it when the window is resized. help! i have this private void Form1_Paint(object sender, PaintEventArgs e)
|
| Serializing controls using XML Serialization | 22 Aug 2006 18:41 GMT | 3 |
I need to serialize forms, controls and user controls using XML serialization. I am using Xml Overrides to override properties, but this is very cumbersome and not practical as you know. How do I know if a property can be serialized using XML serialization or not ?
|
| detect build type in c# | 22 Aug 2006 17:46 GMT | 3 |
Is there a way in C# to detect which build the current run is in (debug or release). I have a scenario where the path of a file I access changes depending on build type.
|
| CollectionEditor badness in .NET 2.0? | 22 Aug 2006 17:44 GMT | 1 |
I have a custom CollectionEditor which has been working nicely for a long time in .NET 1.1. We just converted to .NET 2.0, recompiled everything, got rid of the deprecated function calls, etc... Now, when I run my app, I can bring up the collection editor initially with
|
| Can I create a panel inhert from form object? Or any best method convert MDI to SDI? | 22 Aug 2006 14:14 GMT | 1 |
Can I create a panel inhert from form object? Or any best method convert MDI to SDI? As the previous version is used MDI strategy, and Now the coming new version project is need convert into Tabbed Pages strategy or Navigate Buttons +
|
| Combobox with MultiLine TextBox | 22 Aug 2006 08:11 GMT | 2 |
Using this Multiline Combobox(http://www.vbcity.com/forums/faq.asp?fid=15&cat=ListBox%2FComboBox#TID58434), doesn't allow the user to type multi line text in the texbox-part of the combobox. Does anybody has any idea how to achieve this? What should I
|
| Good DataGridView resource | 22 Aug 2006 00:23 GMT | 2 |
Guys, can anyone recommend a good online or printed DataGridView resource. It seems very different to its predecessors and I could do with getting to grips with it in a hurry.
|
| RedrawWindow issue | 21 Aug 2006 17:53 GMT | 1 |
I want to clear some textboxes of previously written data. When I run the code below, only the txtBuffer text box is getting cleared. What am I missing? private: System::Void btnRead_Click(System::Object^ sender,
|
| Getting the connection string from the App.Config File (2005) | 21 Aug 2006 15:12 GMT | 5 |
I guess the following only works for Web Projects... Imports System.Data.SqlClient Imports System.Configuration Dim sCodaCon As String =
|
| Exporting possibility with ListView component to Excel? | 21 Aug 2006 12:19 GMT | 2 |
I want to export all entries (items + all subitems) of my Listview to Excel, but I do not want to use the Office Tools. Is there a way to do this without Office Tools? Thank you
|
| Focus visualization on XP | 21 Aug 2006 08:53 GMT | 9 |
With vs2005 I created a simple form. New Project->Windows application(c#)->added a button on it-> set FlatStyle="System" Running this simple program on windows 2003 the button is selected and I see
|
| Is it possible to display deleted row(s) in DataGrid | 21 Aug 2006 07:32 GMT | 2 |
Is it possible to make the DataGrid shows a row with RowState == DataRowState.Deleted? (e.g. display a deleted row using another color and allow user to undo the deletion)
|
| Using C# dll as COM in an MFC application | 21 Aug 2006 06:36 GMT | 16 |
I have written a C# dll in VS2005. One interface and class are exported using Interop Services. I want to use this c# dll in my MFC application, using VS2003. It compiles after I imported the dll to my MFC app.
|
| MouseHover event during drag and drop operations | 21 Aug 2006 03:53 GMT | 4 |
I am writing a classic, "Explorer"-like app in vb.net 2003 (dotnetfx1.1). I have written code to handle the dragging and dropping of items from a ListView on the right hand part of the form to a TreeView on the left part of the form. When the user pauses over a node in the ...
|