Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Navigation Arrows
Message
From
04/01/2005 15:01:32
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
 
 
To
04/01/2005 14:57:38
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00974180
Message ID:
00974181
Views:
26
>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)
Previous
Reply
Map
View

Click here to load this message in the networking platform