|
-
January 18th, 1999, 05:51 PM
#1
Late binding an ActiveX
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|