MedITEX API manual

From MedITEX - Wiki

(Difference between revisions)
Jump to: navigation, search
Line 9: Line 9:
 
<p>&nbsp;</p>
 
<p>&nbsp;</p>
 
<h3>ExportCSVData</h3>
 
<h3>ExportCSVData</h3>
 +
<p>This function enables the export of files and reports out of MedITEX IVF with LDT. File format is CSV.</p>
 
<table border="0">
 
<table border="0">
 
<tbody>
 
<tbody>
 
<tr>
 
<tr>
 
<td colspan="2">
 
<td colspan="2">
<p><em>function ExportCSVData(</em><em>AUser, APassword: PAnsiChar; </em><em>AExportID: PAnsiChar; APathAndFile: PAnsiChar; AFilter: PAnsiChar = nil): Integer; stdcall;</em><em> <br /></em></p>
+
<p><em>function <span style="color: #3366ff;">ExportCSVData</span>(</em><em><span style="font-family: courier new,courier;">AUser</span>, <span style="font-family: courier new,courier;">APassword</span>: PAnsiChar; </em><em><span style="font-family: courier new,courier;">AExportID</span>: PAnsiChar; <span style="font-family: courier new,courier;">APathAndFile</span>: PAnsiChar; <span style="font-family: courier new,courier;">AFilter</span>: PAnsiChar = nil): Integer; stdcall;</em><em> <br /></em></p>
</td>
+
</tr>
+
<tr>
+
<td colspan="2">
+
<p>This function enables the export of files and reports out of MedITEX IVF with LDT. File format is CSV.</p>
+
 
</td>
 
</td>
 
</tr>
 
</tr>
Line 31: Line 27:
 
</ul>
 
</ul>
 
</td>
 
</td>
 +
</tr>
 +
<tr>
 +
<td><span style="font-family: courier new,courier;">AUser</span>, <span style="font-family: courier new,courier;">APassword</span></td>
 +
<td>A specific user in MedITEX IVF which can be used in external programs.</td>
 +
</tr>
 +
<tr>
 +
<td><span style="font-family: courier new,courier;">AExportID </span></td>
 +
<td>This is the ID of your report.</td>
 +
</tr>
 +
<tr>
 +
<td>&nbsp;</td>
 +
<td>&nbsp;</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>

Revision as of 15:59, 30 July 2013

<tbody> </tbody>
<img src="/images/Api1.png" alt="" width="765" height="196" />

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.

<tbody> </tbody>

function ExportCSVData(AUser, APassword: PAnsiChar; AExportID: PAnsiChar; APathAndFile: PAnsiChar; AFilter: PAnsiChar = nil): Integer; stdcall;

Parameters:
  • AUser, APassword (PAnsiChar): A specific user in MedITEX IVF which can be used in external programs
  • AExportID (PAnsiChar): This is the ID of your report.
  • APathAndFile (PAnsiChar): Path where the file should be saved.
  • AFilter (PAnsiChar, optional): Filter condition for the export.
AUser, APassword A specific user in MedITEX IVF which can be used in external programs.
AExportID This is the ID of your report.
   
Example: Patient_ID = 1000 and dt_gewinnung > '01.01.2010'
Return type:

The type of the return value is integer. The function returns 1 on success or -1 on failure.

 

 

 

 

 

 

 

 

<tbody> </tbody>
<a href="/index.php?title=Main_Page">Back to MedITEX products</a> <a href="#top">Back to top</a>