GetDbmlsyncPath
PowerScript function
Description
Retrieves the full path and file name of the dbmlsync.exe that is
installed on the workstation.
Applies to
MLSync and MLSynchronization controls
Syntax
|
1 |
SyncObject.GetDbmlsyncPath ( ) |
|
Argument |
Description |
|---|---|
|
syncObject |
The name of the synchronization object |
Return value
String.
Returns the value of full path and file name of the synchronization
executable. Returns -1 if.dbmlsync.exe is not found.
Usage
This property uses the value of the synchronization object’s
MLServerVersion property to decide which version of dbmlsync to
return.
Examples
This function enables the use of Help buttons for the Additional
Options and Extended Options fields as displayed on the default ML Server
tab page of the w_appname_sync_options dialog box that is generated by the
MobiLink synchronization wizard. The Clicked event for these Help buttons
has the following script:
|
1 2 3 4 5 6 7 |
string sCmd sCmd = i_uosync.GetDbmlsyncPath() if len(sCmd) > 0 then sCmd += " ? " // sCmd += ' -l' for help with extended options run(sCmd, Normal!) end if |