If you have a comment on this topic, contact Aptify Documentation. If you want to return to the Aptify Community Site, please click here.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

If you want a batch processing wizard to operate on a set of records returned by a prompt view with the current user input, then your wizard's DoAction function should include the following code to support results from a prompt view:
SQL Code:If m_oApp.Command.Parameters.IndexOf("ViewSQL") < 0 Then
sViewSQL = m_oApp.View(lViewID).ViewSQL
Else
sViewSQL = m_oApp.Command.Parameters.Item("ViewSQL").ToString()
End If
Note that in the above code sample, _m_oApp_ is a reference to the current instance of the Application Object.

  • No labels