Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ProgressBar

Status
Not open for further replies.

KoenPiller

Programmer
Apr 4, 2001
270
NL
Hi!

I would like not to have the ProgressBar in my SQL-Select() routine, any idea how to do?

Thanks,

Koen
 
I believe issuing "SET TALK OFF" whill do what you ask.
 
While using the following sequence will display "progress", it's not the traditional percentage completed progress bar:

SET TALK WINDOW
SET TALK ON
SELECT ... && NATIVE FoxPro SQL SELECT
SET TALK OFF

You may want to also SET ODOMETER to something other than the default depending on how many records are expected to be processed. Note: If you are doing a UNION or have a subquery, then it can be confusing to the user as it will start and "complete" for each internal query.

Rick
 
Icbart,

Thanks it works fine, I've put "talk off" just be4 the select() and the action is done nice quickly and no ProgressBar.
=Koen
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top