Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Scrollbar on form?
Message
De
07/04/2004 03:24:18
 
 
À
06/04/2004 22:41:25
Koos Veel
Gamma Research
Aruba
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00892800
Message ID:
00892819
Vues:
14
Hi Koos,

First you must add code in the load event to add properties to hold the default size of the form:
with this
   .AddProperty('nStartWitdth',.width)
   .AddProperty('nStartHeight',.height)
endwith
And you must put some code in the resize event of the form, something like this:
With This
  Do Case
    Case .Width<.nStartWitdth And .Height<.nStartheight
      .ScrollBars=3
    Case .Width<.nStartWitdth
      .ScrollBars=1
    Case .Height<.nStartheight
      .ScrollBars=2
    Otherwise
      .ScrollBars=0
  Endcase
Endwith
When I tested it, I had to set the scrollbars to 3 in the property sheet to get it to work,




>Hello All,
>
>Does anybody know how to get a vertical scrollbar on a form (automatically) when the _screen is resized to a smaller size than the form?
>
>Thanks,
>
>
>koos Veel.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform