|
-
Apr 22nd, 2006, 02:49 PM
#1
Thread Starter
Frenzied Member
How to add long text to a form without using label?
hi all i have difficulty typing long sentence on my form using label . when i use label only a few sentence get posted when i copy from text editor to label property catption. Is there any better solution for this problem ? i be happy if some one tell me how.Thanks
-
Apr 22nd, 2006, 02:57 PM
#2
Re: How to add long text to a form without using label?
-
Apr 22nd, 2006, 02:57 PM
#3
Re: How to add long text to a form without using label?
you can just print directly on to the form, you might have to manage the string if you want it in a particular arrangement:(make sure .AutoRedraw is set to True)
-
Apr 22nd, 2006, 03:04 PM
#4
Thread Starter
Frenzied Member
Re: How to add long text to a form without using label?
 Originally Posted by bushmobile
you can just print directly on to the form, you might have to manage the string if you want it in a particular arrangement: (make sure .AutoRedraw is set to True)
Thank u for u reply. I tried it form onload even and is giving me more problem now it is all red!!
i hope i find a solution that just copy and paste -(( .
-
Apr 22nd, 2006, 03:06 PM
#5
Re: How to add long text to a form without using label?
A form with just this in it is giving you errors?
VB Code:
Private Sub Form_Load()
Me.AutoRedraw = True
Me.Print "Hello There"
End Sub
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
|