Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Visual Basic 6: Printing to a Picture Box (https://thetfp.com/tfp/tilted-technology/75413-visual-basic-6-printing-picture-box.html)

Loup 11-08-2004 07:32 PM

Visual Basic 6: Printing to a Picture Box
 
I am trying to print to a picture box on a seperate form.

I enter data in the main form, and submit each record, by pressing on a submit button, which does the calculations and prints details to the picture box, but does not show it right away.

After all the records are submitted, I press on a different command button (Generate Report), and it's supposed to print to a picture box in a seperate form. I can't get this to work.

Any ideas?

Thanks.

kebo 11-09-2004 03:46 PM

I don't think you can print to a picture box without API. You can however put a label in the pic box and set the backstyle property to transparent and it will look like you are printing to a pic box
HTH
kevin

11-09-2004 04:27 PM

Why are you trying to put your data into a picture box? Is it text-data? If so, why not use a textbox?

Dilbert1234567 11-09-2004 10:10 PM

to get data from one form to another, here is a way, i hope this leads you in teh right direction

having 2 forms, form1 and form2

from form1, form 2 can be access by asking for it

form2.textbox= "stuff"

or

formx.objectname.objectproperty


hope this gets you thinking in the right direction.

Dilbert1234567 11-09-2004 10:10 PM

also dont forget about the autoredraw setting if it is not showing up like it should.

Loup 11-10-2004 07:56 AM

Quote:

Originally Posted by Dilbert1234567
to get data from one form to another, here is a way, i hope this leads you in teh right direction

having 2 forms, form1 and form2

from form1, form 2 can be access by asking for it

form2.textbox= "stuff"

or

formx.objectname.objectproperty


hope this gets you thinking in the right direction.

Thanks, the only thing is I'm doing some calculation on my form 1, that are then supposed to printed to the picutre box in form two, when I click on the 'Generate Report' button. So I'm not really grabbing anything from a textbox in form 1. It's an assignment for class, so it has to be done in a picture box.
Right now I have:

Load frmReport
Hide Me

frmReport.picReport.Print

to print all the calculations that have been done.

Hope this is enough information.

kebo 11-10-2004 08:21 AM

My bad, you can Print to a pic box :o
To see it you need to set the pic box's autoredraw = true
kevin

Loup 11-10-2004 06:38 PM

Thanks for the help guys ... I managed to find the issue.


All times are GMT -8. The time now is 03:13 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73