[DUG]: MDI forms

2000-04-25 Thread Steven Wild
Why does opening a non-maximised MDI Child form over top of a maximised MDI Child form cause the maximised one to de-maximise? How do I stop this behaviour from happening? Is it possible that it is something to do with the MDI parent not liking its children in assorted states?? Steven

[DUG]: OCX Objects ona webpage

2000-04-25 Thread Jeremy Coulter
HI all. I have written an OCX (and ActiveX Form) in delphi that will help us with a new training system we are putting in place for our clients to help them learn our systems. Anyway, what I would like to know is how do I go about passing data to the control ? I.e. I want to pass what training

RE: [DUG]: OCX Objects ona webpage

2000-04-25 Thread Nic Wise
Well: OBJECT ID="myFunkeyObject" CLASSID="somelongGUID" SCRIPT self.document.all.myFunkeyObject.theSectionYouAreOn = 1; /SCRIPT Assuming you have a public property called theSectionYouAreOn. Aint the DOM a wounderfull thing?? You might want to trigger this off: BODY

RE: [DUG]: OCX Objects ona webpage

2000-04-25 Thread Jeremy Coulter
Thanks Nic. I got it working, thanks, Jeremy Coulter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Nic Wise Sent: Wednesday, 26 April 2000 14:18 To: Multiple recipients of list delphi Subject: RE: [DUG]: OCX Objects ona webpage Well: