I have form like below, and a .dbf (data table) which contains the same fields as the form, now I want to bind the first record to the form and implement Next
and Prev
... I know this seems very basic, but I can't find any page about this.
Foxpro form databinding and Next, Prev button
1.5k Views Asked by Andiana At
1
I'll give you the basics, then try to guide you elsewhere, and if you are interested in an email mentor, can help you along too.
First, I don't know how you put the text boxes on the form if it was from the data environment being dragged, or manual. If your "Properties" window is not available, right-click on any control, then click "Properties..." Look to the property "ControlSource" and set it to the alias.column you are trying to tie it to. Do this with each of the fields.
Now, to the buttons. It LOOKS like you grabbed the "Wizard" style controls, if so, let me know.. different answer will be applied...
If NOT, you can double-click on any "button", the system will bring up a snippet window associated with the "Click" event of buttons, but you could change it to any other available event in the future. Now, the code. Whatever you put in this snippet window will be executed when the button is clicked. So, for each respective button, you may do something like..
Find, Print, Edit and Delete would be somewhat similar, but what condition to "FIND", you would need to build a report to print. Editing should just be directly available until you add in your own modes of add vs edit vs view mode to handle swapping.