Philip McGahan
January 18th, 1999, 04:51 PM
Some of our customers still run on IE 2.0 and can not accept ActiveX controls.
Therefore, I need to late bind and draw ActiveX's like RichText. The late binding part was easy. But how do I draw the control on the dialog?
Private Sub Form_Load()
Dim x As New RichTextBox
Dim d$
x.Locked = True
x.Enabled = True
x.Text = "abc"
d = x.TextRTF
'MsgBox d
'Now that I have it, how do I draw it?
Therefore, I need to late bind and draw ActiveX's like RichText. The late binding part was easy. But how do I draw the control on the dialog?
Private Sub Form_Load()
Dim x As New RichTextBox
Dim d$
x.Locked = True
x.Enabled = True
x.Text = "abc"
d = x.TextRTF
'MsgBox d
'Now that I have it, how do I draw it?