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
Re: How to add long text to a form without using label?
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)
Re: How to add long text to a form without using label?
Quote:
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 -(( .
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