|
-
Oct 3rd, 2007, 11:07 AM
#1
Thread Starter
Junior Member
[RESOLVED] How to "pop up" crystal report?
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?
Last edited by sebcia; Oct 3rd, 2007 at 12:27 PM.
-
Oct 3rd, 2007, 12:30 PM
#2
Re: How to "pop up" crystal report?
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.
-
Oct 3rd, 2007, 02:11 PM
#3
Thread Starter
Junior Member
Re: How to "pop up" crystal report?
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
-
Oct 3rd, 2007, 03:43 PM
#4
Re: How to "pop up" crystal report?
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
-
Oct 4th, 2007, 09:34 AM
#5
Thread Starter
Junior Member
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
|