Thanks Javier, that's exactly what I decided I will have to do, good to know it 
works.  Yes, I'd be defining a landscape report and I think that'll work just 
fine.  Thanks for confirming!
Karen
 
 
 
-----Original Message-----
From: javier.valencia <javier.valen...@vtgonline.com>
To: rbase-l <rbase-l@googlegroups.com>
Sent: Sun, Apr 21, 2019 7:27 pm
Subject: RE: [RBASE-L] - Rbase_form Print options?

#yiv2934180299 -- filtered {font-family:Wingdings;panose-1:5 0 0 0 0 0 0 0 0 
0;}#yiv2934180299 filtered {font-family:Wingdings;panose-1:5 0 0 0 0 0 0 0 0 
0;}#yiv2934180299 filtered {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 
4;}#yiv2934180299 filtered {font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 
4;}#yiv2934180299 p.yiv2934180299MsoNormal, #yiv2934180299 
li.yiv2934180299MsoNormal, #yiv2934180299 div.yiv2934180299MsoNormal 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;font-family:New;}#yiv2934180299
 a:link, #yiv2934180299 span.yiv2934180299MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv2934180299 a:visited, #yiv2934180299 
span.yiv2934180299MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv2934180299 p 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New;}#yiv2934180299
 tt {}#yiv2934180299 p.yiv2934180299MsoListParagraph, #yiv2934180299 
li.yiv2934180299MsoListParagraph, #yiv2934180299 
div.yiv2934180299MsoListParagraph 
{margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;margin-bottom:.0001pt;font-size:12.0pt;font-family:New;}#yiv2934180299
 span.yiv2934180299EmailStyle19 {color:#1F497D;}#yiv2934180299 
span.yiv2934180299SpellE {}#yiv2934180299 .yiv2934180299MsoChpDefault 
{}#yiv2934180299 filtered {margin:1.0in 1.0in 1.0in 1.0in;}#yiv2934180299 
div.yiv2934180299WordSection1 {}#yiv2934180299 filtered {}#yiv2934180299 
filtered {}#yiv2934180299 filtered {}#yiv2934180299 filtered 
{font-family:Wingdings;}#yiv2934180299 filtered 
{font-family:Symbol;}#yiv2934180299 filtered {}#yiv2934180299 filtered 
{font-family:Wingdings;}#yiv2934180299 filtered 
{font-family:Symbol;}#yiv2934180299 filtered {}#yiv2934180299 filtered 
{font-family:Wingdings;}#yiv2934180299 ol {margin-bottom:0in;}#yiv2934180299 ul 
{margin-bottom:0in;}#yiv2934180299 Karen,  This the approach I use to print a 
portion of the screen but you can easily capture the entire screen, This is the 
meat of the code I use:  -- Using the latest R:Base Screen Capture-- Create 
unique Employee Utilization variable with User ID as part of the name so it is 
unique for each user and delete the file to make sure a fresh one is generated  
SET ERROR MESSAGE 2077 OFFSET VAR vCommand =('DELETE' & .vuser_id + 
'EU.JPG')&vCommandSET ERROR MESSAGE 2077 ONSET VAR vImageEU = (.vuser_id + 
'EU.JPG')  -- Capture a portion of the screenPROPERTY RBASE_FORM 
'CAPTURE_FROM_WINDOW|365,228,915,625' &vImageEU-- The code in the next line 
works capturing the entire screen-- PROPERTY RBASE_FORM CAPTURE_FROM_WINDOW 
&vImageEU)PRINT emp_prod_daily OPTION SCREEN|Window_State MAXIMIZED…  In my 
case, I capture a portion of the screen displayed in  a Web Browser inside the 
form and then print the image using a report where the variable is displayed as 
a variable image that you can scale as needed; in your case, you might 
need/want to set the report as landscape to better fit the screen.  Javier,  
Javier Valencia, PEO: 913-829-0888C: 913-915-3137  From: 'Karen Tellef' via 
RBASE-L [mailto:rbase-l@googlegroups.com] 
Sent: Saturday, April 20, 2019 10:22 AM
To: rbase-l@googlegroups.com
Subject: Re: [RBASE-L] - Rbase_form Print options?  Doug:  when I was looking 
through my notes originally, I found this example:     
PROPERTY RBASE_FORM 'CAPTURE_FROM_SCREEN|23, 24, 934, 800' 
'c:\Screen_AreaCapture.bmp'    I was thinking that perhaps I could capture the 
form size, save to a jpg, create an "empty" report template that would print 
the jpg image.  I haven't tried it yet, but I will (and report the results to 
the list) if the easy print-screen cannot work  Karen      -----Original 
Message-----
From: Doug Hamilton <bugl...@wi.rr.com>
To: rbase-l <rbase-l@googlegroups.com>
Sent: Sat, Apr 20, 2019 9:11 am
Subject: Re: [RBASE-L] - Rbase_form Print options?Karen - would the CAPTURE and 
PASTE properties work?  
You might have to create an image control for pasting and send it to the printer

PROPERTY RBASE_FORM CAPTURE_FROM_WINDOW 'CLIPBOARD'
PROPERTY <Component ID> PASTEFROMCLIPBOARD 'TRUE'

PROPERTY RBASE_FORM CAPTURE_FROM_WINDOW 'CLIPBOARD'
Captures an image of the current window and places the content in the 
clipboard. The entire window, or a specified area can be captured.
Examples:
  -- to capture full form to a BMP file
  PROPERTY RBASE_FORM CAPTURE_FROM_WINDOW CLIPBOARD
  -- to capture part of the form to a JPG file
  PROPERTY RBASE_FORM 'CAPTURE_FROM_WINDOW|12,12,134,300' CLIPBOARD

PROPERTY <Component ID> PASTEFROMCLIPBOARD 'TRUE'
Pastes data from clipboard to the focused field. This parameter is supported 
for DB/Var Edit/Memo/Image controls.
PROPERTY ComponentID PasteFromClipboard TRUE
You can also paste data to the focused field using:
PROPERTY RBASE_FORM PasteFromClipboard TRUE

I haven't tried any of this, just found the properties that might steer you in 
a direction.
DougOn 4/20/2019 8:51 AM, Buddy Walker wrote:Karen   If the form is that large 
couldn’t you creat a report that looks like the form. Just save changes before 
printing. Sent from my iPhone
On Apr 20, 2019, at 9:15 AM, 'Karen Tellef' via RBASE-L 
<rbase-l@googlegroups.com> wrote:
I want to put a "print this form" button on a very large form to send a 
print-screen to my printer.  These are the only options I know that I can use, 
but only a portion of the form will print.  Any other options I don't know 
about to shrink the picture onto one printer page, or another way to do it?    
PRNSETUP LANDSCAPE
PROPERTY RBASE_FORM PRINT 'FITTOPAGE'PROPERTY RBASE_FORM PRINT 
'PRINTER'PRNSETUP PORTRAIT  Karen    -- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.  
|  | Virus-free. www.avast.com  |

-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rbase-l+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to