I want to change width and height of a browse at run-time and to have saved this changes next time the same browse is called
Thanks fo answer
Main Topics
Browse All TopicsWhen i browse a table, from a form, the browse window became large as the form.
I use "browse last" with a resource file activated.
It seem to be ignored in the form.
Why ? Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Okay...
This looks like a "feature". I played tested a form with two buttons. One issued a set resource on then a browse. I resized the browse window and closed it with 'CTRL-W'. The other button issues a browse last. It *doesn't work* !
The same procedure works in the command window. Leads me to believe it is a bug.
I even tried browse PREFERENCE <browseName>...Nope!
It looks like you are going have to save the coordinates yourself either in the registry or in a dbf.
You could do something like this:
if <info is in DBF/Registry>
**-- Functions to get the data
lnTop = getTop()
lnLeft = getLeft()
lnBottom = getBottom()
lnRight = getRight()
define window browser;
from lnTop,lnLeft to lnBottom,lnRight;
title 'Browser - Press ESC to exit';
close float grow zoom;
color ,,,,,,,,rgb(0,0,0,255,255,
else
define window browser;
from 0,0 to 35,90;
title 'Browser - Press ESC to exit';
close float grow zoom;
color ,,,,,,,,rgb(0,0,0,255,255,
endif
Or you could create a form, put a grid on it, bind the grid to your data and save the form info.
Either way, the way that you want to do it currently does not appear to work.
Business Accounts
Answer for Membership
by: mrorphPosted on 1999-06-09 at 10:21:33ID: 1079724
What do you mean it is being ignored? Do you issue the "browse last" after you have browsed the size of the form. If so it will browse in the same manner as the last time.
What, exactly, it is that you want to do?