Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Navigation Arrows
Message
De
04/01/2005 15:01:32
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivie
 
 
À
04/01/2005 14:57:38
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00974180
Message ID:
00974181
Vues:
27
>Would someone please tell me where I can pick up those four arrows (first, last, next, prev) for database navigation. I've looked but cannot find them. TIA.

Do you mean, in a form? The standard way to go to the next field is TAB, for the previous, Shift-TAB. There is no standard way to go to the first or last field in a form.

If you want to go to next record, previous record, etc., you will have to create the buttons yourself - or use a grid to select records.

As an example, a typical CommandButton to go to the next record might have code similar to this, in its Click() Event:
if not eof()
  skip
  if eof()
    go bottom
  endif
  ThisForm.Refresh()
endif
Difference in opinions hath cost many millions of lives: for instance, whether flesh be bread, or bread be flesh; whether whistling be a vice or a virtue; whether it be better to kiss a post, or throw it into the fire... (from Gulliver's Travels)
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform