Previous Topic

Next Topic

ShowSQLProgress - MaxBasic Function

ShowSQLProgress(Boolean: Boolean)

Show SQL Progress function controls display of the progress bar in SQL Queries. Returns the previous state so you can save and restore the state if wanted. Defaults to True. Once set, the state remains for the session unless it is reset.

ShowSQLProgress function syntax has these named arguments:

Parameter

Description

Boolean

Required. Sets the state of the cursor bar in SQL queries.

For example:

  ShowSQLProgress(False)
  Customers = ExecuteSQL("Select * from ARCust")
  BrowseDataset(Customers)
  ShowSQLProgress(True)

See Also

Environment Functions

Book Contents

Book Index