| Thread | Last Post | Replies |
|
| RowFilters with related tables | 21 Nov 2005 09:19 GMT | 18 |
I have two tables, let's just say Master and Details. The Master is the parent table, Details the child table. What I want is to create a row filter on the children. But I also want to create a row filter on the master table such that only master records that
|
| Is there a done resizing event ? | 21 Nov 2005 09:09 GMT | 11 |
I'm writing a new control derived from UserControl. I need to get an event when the control is done resizing. I tried the Resize, SizeChanged, Move and the Layout events and I also tried to override them. But they all invoked when the control is in the middle of
|
| enum contains any of these values? | 21 Nov 2005 08:41 GMT | 3 |
Consider I have an enum like so: enum Age { Baby = 1, Child = 2,
|
| Disappearing Controls | 21 Nov 2005 07:15 GMT | 2 |
I'm building a small C# WinForms app that has two browser controls and one Windows Media Player control. Things generally are working fine but several times what has happened is that I'll load the solution and these controls seem to have disappeared.
|
| Get first column in combo box | 21 Nov 2005 05:54 GMT | 2 |
How do I get the value in the first column of a combo box? cboRails.DataSource = ds1.Tables[1]; cboRails.DisplayMember = "Description"; The combo box shows the "Description" column of my table. When the user
|
| Associating PrintPreviewDialog with TextBox | 21 Nov 2005 05:44 GMT | 4 |
I have a Textbox control on a form and a PrintPreviewDialog. How on earth can I associate the Textbox control with the PrintPreviewDialog, so that the text from the Textbox control will show in the PrintPreviewControl when launching?
|
| Is a form passed by value or reference? | 21 Nov 2005 05:35 GMT | 3 |
I wrote a method that accepted a form. The signature was as ff: void foo(ref Form frm) ; I had to remove the ref keyword to get it to compile. Any idea why? I though forms would be passed by reference. I certainly dont want copies
|
| Question regarding memory management | 21 Nov 2005 04:27 GMT | 1 |
I am having slight confusion regarding memory management in .net. Say suppose i have two application one is in C# and other is in MFC(VC++). Both of this application are using lots of memory.
|
| forcing the invalidating event | 21 Nov 2005 02:01 GMT | 1 |
for a textbox, the invaldating is done whe the focus changes, but how can i foce the invalidating event when the user presses return ? (without setting the focus to another control ) johan
|
| using flag attribute on an enum | 21 Nov 2005 00:01 GMT | 4 |
I created this enumeration: [Flags] enum Status {
|
| formating xml | 20 Nov 2005 22:26 GMT | 2 |
i've string, retrived from XmlDocument.InnerXml property... can it be formated, like in XmlTextWriter stream (with Indentation) ...it was putted formated into XmlDocument.InnerXml property thanx
|
| Reflection.Emit and generic methods | 20 Nov 2005 21:32 GMT | 3 |
How do I use Reflection.Emit to produce code similar to this? public void bar<T>() { }
|
| sms text messaging & paging | 20 Nov 2005 21:28 GMT | 1 |
Has anyone played around with SMS text messaging and paging with C#?
|
| Multiple Inserts with SQLDataSource | 20 Nov 2005 21:03 GMT | 4 |
I am looking for some advice on the following problem: I am using a GridView and a SQLDataSource. The problem is based around a Room Booking app I am currently writing. When the user makes a booking, an entry must be written to the Booking
|
| Event Invoking | 20 Nov 2005 20:28 GMT | 1 |
I have some textbox and add event handler for some their events. I want to invoke their event handlers without using name of event handlers. I mean for example : this.textBox1.TextChanged+=new EventHandler(textChanged1);
|