MedITEX API manual
From MedITEX - Wiki
Obtained using the mexAPI.dll it is possible to get reports out of MedITEX IVF by calling the functions which are included in the DLL. It is also conceivable to control program functions in MedITEX IVF out of another program.
ExportCSVData
This function enables the export of files and reports out of MedITEX IVF with LDT. File format is CSV.
<p>function ExportCSVData (AUser, APassword: PAnsiChar; AExportID: PAnsiChar; APathAndFile: PAnsiChar; AFilter: PAnsiChar = nil): Integer; stdcall; </p> |
function OpenPatientCryoOverview(AUser, APassword: PAnsiChar; APatientID: PAnsiChar): Integer; stdcall; |
This function offers the opportunity to call up the cryo storage in MedITEX IVF using the DLL.
The parameters user, password (PAnsiChar) and patientID (PAnsiChar) should be passed to the function.
After each call of the function, if MedITEX is running, the cryo storage of the respective patient will open.
Return Type: The type of the return value is integer. The function returns 1 on success or -1 on failure.
Example:
Back to MedITEX products | Back to top |