Click here to Skip to main content
15,891,905 members
Home / Discussions / C#
   

C#

 
AnswerRe: A simple form question? Pin
John Fisher27-Nov-02 6:39
John Fisher27-Nov-02 6:39 
AnswerRe: A simple form question? Pin
leppie27-Nov-02 6:45
leppie27-Nov-02 6:45 
GeneralCombobox issue Pin
Anonymous27-Nov-02 5:56
Anonymous27-Nov-02 5:56 
GeneralRe: Combobox issue Pin
John Fisher27-Nov-02 6:41
John Fisher27-Nov-02 6:41 
GeneralHTML View Control - Does it exist in C# Pin
MrEyes27-Nov-02 0:10
MrEyes27-Nov-02 0:10 
GeneralRe: HTML View Control - Does it exist in C# Pin
James T. Johnson27-Nov-02 11:08
James T. Johnson27-Nov-02 11:08 
QuestionWeb reference back to XML? Pin
EnkelIk26-Nov-02 22:00
EnkelIk26-Nov-02 22:00 
AnswerRe: Web reference back to XML? Pin
J.Liss27-Nov-02 6:08
J.Liss27-Nov-02 6:08 
GeneralRe: Web reference back to XML? Pin
EnkelIk28-Nov-02 21:35
EnkelIk28-Nov-02 21:35 
GeneralStart Doesn't! Pin
CSharpDavid26-Nov-02 13:39
CSharpDavid26-Nov-02 13:39 
GeneralRe: Start Doesn't! Pin
Michael P Butler26-Nov-02 23:26
Michael P Butler26-Nov-02 23:26 
GeneralRe: Start Doesn't! Pin
Michael Mac27-Nov-02 3:39
Michael Mac27-Nov-02 3:39 
GeneralRe: Start Doesn't! Pin
James T. Johnson27-Nov-02 11:09
James T. Johnson27-Nov-02 11:09 
QuestionAnyone know of a good sample to get started on a log parser for IIS? Pin
J.Liss26-Nov-02 13:36
J.Liss26-Nov-02 13:36 
QuestionForm inside Form bug in .net? Pin
Bog26-Nov-02 11:59
Bog26-Nov-02 11:59 
I found out it's possible to put a Form inside a Form if you do:

Form p=new Form();
Form c=new Form();
c.TopLevel=false;
c.Parent=p;

That works fine, except that the child form can't be activated. You know what I mean- the gripbar at the top is always gray the way a window looks when it's in the background. Strangely enough you can move the child form around in the parent form, even though it's drawn as though it's backgrounded!

If I make the child forms Mdi Children instead of doing the toplevel=false thing, I get similar results- this time, one of the child forms is drawn active while the rest are drawn as though they're backgrounded. The active-looking one stays that way even when you click on other forms.

Am I doing something wrong or is this a bug in .net?




"Outside of a dog, a book is Man’s best friend. And inside of a dog, it’s too dark to read."
-Groucho Marx

AnswerI should have mentioned Pin
Bog26-Nov-02 12:14
Bog26-Nov-02 12:14 
GeneralC# bookshelf Pin
Michael P Butler26-Nov-02 11:20
Michael P Butler26-Nov-02 11:20 
GeneralRe: C# bookshelf Pin
Christian Graus26-Nov-02 11:22
protectorChristian Graus26-Nov-02 11:22 
GeneralRe: C# bookshelf Pin
leppie26-Nov-02 11:39
leppie26-Nov-02 11:39 
GeneralFilling in the holes Pin
Michael P Butler26-Nov-02 10:58
Michael P Butler26-Nov-02 10:58 
GeneralRe: Filling in the holes Pin
Stephane Rodriguez.26-Nov-02 11:03
Stephane Rodriguez.26-Nov-02 11:03 
GeneralOK, what do make of this? Reloading an assembly Pin
leppie26-Nov-02 10:27
leppie26-Nov-02 10:27 
GeneralRe: OK, what do make of this? Reloading an assembly Pin
David Stone26-Nov-02 12:07
sitebuilderDavid Stone26-Nov-02 12:07 
GeneralRe: OK, what do make of this? Reloading an assembly Pin
leppie26-Nov-02 12:31
leppie26-Nov-02 12:31 
GeneralRe: OK, what do make of this? Reloading an assembly Pin
David Stone27-Nov-02 16:24
sitebuilderDavid Stone27-Nov-02 16:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.