|
The QMStatus() function returns the value of the QMBasic STATUS() function for the last server function executed.
Many server actions set the QMBasic STATUS() value and return it to the client process. The QMStatus() function retrieves this value. This function does not require passing of a client server message pair as the value is held on the client system.
int QMStatus(void)
IntDate = QMIConv(Date, "D2");
if (QMStatus() != 0) printf("Invalid date\n");
|
QMStatus() as Integer
IntData = QMIConv(Date, "D2")
If (QMStatus() <> 0) MsgBox("Invalid date")
|
Status
IntDate = session->Iconv(Date, "D2");
if (session->Status # 0) display("Invalid date");
The QMStatus() function is implemented as a public property variable in this version of the QMClient API.
|
Status
IntDate = qm.IConv(Date, "D2")
if (qm.Status != 0) System.out.println("Invalid date");
The QMStatus() function is implemented as a public property variable in this version of the QMClient API
|
Status
IntDate = qm.IConv(Date, "D2")
if qm.Status() != 0: print("Invalid date")
The QMStatus() function is implemented as a public property variable in this version of the QMClient API
|
|