Hi ,
I wish to have my crystal report "pop up" like it does within many professional applications. Currently i have it inside a form, and frankly it doesnt look too good. How do i make it pop up on its own without a form? is this possible?
Printable View
Hi ,
I wish to have my crystal report "pop up" like it does within many professional applications. Currently i have it inside a form, and frankly it doesnt look too good. How do i make it pop up on its own without a form? is this possible?
Change the form's borderstyle to none so it is still on a form, but it won't look like it is one a form.
Hi Hack
I had that setting set like you say but let me clarify better what my problem is:
When the report initially pops up it looks great , the problem is when i MAXIMIZE the form window, the form itsself maximizes , yet the crystal control that i drew on the form stays the same if you know what i mean.
so im basically left with a maximized form and a crystal report control that maybe covers 50% of the form once the form is maximized
In the Form_Resize event set the size of the viewer control.
Code:Private Sub Form_Resize()
rptViewer.Move 0,0, ScaleWidth, ScaleHeight
End Sub
Thanks bruce, thats a great solution! :wave: :wave: :wave: :afrog: