Yeah, but all that does is chop off the form, it doesn't "shrink" a form so that the entire thing fits on a smaller screen. Again, you could use this and check the "auto scroll" so they can scroll around to see all parts of the form, but unless I'm missing how to do something, it doesn't "shrink" the form to show the whole thing on a smaller screen.
Karen -----Original Message----- From: 'Lawrence Lustig' via RBASE-L <[email protected]> To: rbase-l <[email protected]> Sent: Wed, Aug 31, 2016 4:07 pm Subject: Re: [RBASE-L] - Screen display You can also do this: SET VAR vScreen = (CVAL('SCREENSIZE')) SET VAR vWidth = (INT(SSUB(.vScreen, 1))) SET VAR vHeight = (INT(SSUB(.vScreen, 2))) PROPERTY RBASE_FORM WIDTH &vWidth PROPERTY RBASE_FORM HEIGTH &vHeight to size the form exactly to the screen. You can deduct a bit from height and width, or multiply by .75 (to take up three quarters of the screen) or use any other adjustment you want. This doesn't work if you have two monitors -- you'll get the width of both monitors together in vWidth. -- Larry On Wednesday, August 31, 2016 2:57 PM, Jim Belisle <[email protected]> wrote: Karen and Javier, Though we do not use smaller screens in the shop yet, that helpful hint will be something I will remember when we go to smaller screens. Nice to know. James Belisle Making Information Systems People Friendly Since 1990 From: karentellef via RBASE-L [mailto:[email protected]] Sent: Wednesday, August 31, 2016 8:55 AM To: [email protected] Subject: Re: [RBASE-L] - Screen display I always ask "what is the smallest resolution you have anywhere". Generally it's 1024 x 768, and I sigh.... You can do so much more with a bigger screen. When you design a new form, change the settings right away to those pixels and you know what you have to work with. As I think Javier said, you can also bring the form up in designer, go to the form properties, and make sure "auto scroll" is checked. That allows you to scroll around in case that's acceptable to the user. Karen -----Original Message----- From: Bill Niehaus <[email protected]> To: rbase-l <[email protected]> Sent: Tue, Aug 30, 2016 11:03 pm Subject: RE: [RBASE-L] - Screen display The maximize is not visible. Our external form was also a bit too big. Resizing the screen worked. Designing on our external monitors is maybe not the best plan if we are using smaller screened devices. Bill From: [email protected] [mailto:[email protected]]On Behalf Of Adrian Hüssy Sent: Tuesday, August 30, 2016 11:57 AM To: '[email protected]' Subject: RE: [RBASE-L] - Screen display What happens, if you press “Maximize” in the right top corner, does the form fit to SurfacePro screen? If not, you have designed your forms too large, you have to resize your forms to smallest used screensize. Adrian Von: [email protected] [mailto:[email protected]]Im Auftrag von Bill Niehaus Gesendet: Dienstag, 30. August 2016 18:43 An: [email protected] Betreff: RE: [RBASE-L] - Screen display We have a database with external forms, forms and reports that runs and looks fine on our laptops and external monitors. When I copy the database over to our Surface Pro, the database runs fine but we have parts of some forms and external forms that run “off the screen” and we can’t access some of the buttons, etc. Is this a setting in RBase somewhere or on our Surface Pro. It would be nice to have the forms get no larger than the screen they are being displayed on. We are running Rbase X on a Windows 10 Surface Pro. Our laptops are running Windows 7 Pro. Thanks. Bill Niehaus Bill Niehaus Official Trial Manager [email protected] Office: 218 236-4768 www.crystalsugar.com 1700 North 11th Street • Moorhead • 56560 • MN • This message is confidential. It may also be privileged or otherwise protected by work product immunity or other legal rules. If you have received it by mistake, please let us know by e-mail reply and delete it from your system; you may not copy this message or disclose its contents to anyone. The integrity and security of this message cannot be guaranteed on the Internet. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout. -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.

