MedITEX API manual

From MedITEX - Wiki

Jump to: navigation, search

MedITEX API consists of a series of functions that can be used to generate reports and control specific areas of MedITEX IVF from third party tools.

The following Excel sheet is an example of utilization of MedITEX API. Simply copy this file to the MedITEX IVF folder on your server for testing.

With this simple example, developers can see how a VBA macro connects with our database using the API.

The VBA macro is integrated in the Excel file.

 

The MedITEX API can be expanded with the following functions:

 

Contents

Commands

ExportCSVData

This function enables the export of files and reports out of MedITEX IVF. File format is CSV.

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.

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.

Example: Click here if you want to get an example of this function.

 

 

SaveData

function SaveData (aUser,aPassword: PAnsiChar; ATabelle, AKeyField, AKeyValue, ASaveField, ASaveValue: PAnsiChar): PAnsiChar; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
ATabelle (PAnsiChar) A table name in MedITEX. Example: PERSON.
AKeyField (PAnsiChar) A keyfield to be used in the where condition. Example: PATIENT_ID.
AKeyValue (PAnsiChar)
A value to be used in combination with AKeyField. Example: PAT123.
ASaveField (PAnsiChar) A field where the information should be saved. Example: P_ADDR_POSTAL_CITY.
ASaveValue (PAnsiChar) A value to be saved in the field defined on ASaveField. Example: New York.

Return type:

Example: Click here if you want to get an example of this function.

 

 

GetData

With this function, you can get data of patients.

function GetData (aUser,aPassword: PAnsiChar; ATabelle, AKeyField, AKeyValue, AGetKey: PAnsiChar): PAnsiChar; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
ATabelle, AKeyField, AGetKey (PAnsiChar)

Return type:

Example: Click here if you want to get an example of this function.

 

 

GetLanguageCode

This function returns the language code shortcut.

function GetLanguageCode (aUser,aPassword: PAnsiChar): PAnsiChar; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       

Return type: The type of the return value is PAnsiChar. The function returns the language code shortcut on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

GetExpertData

function GetExpertData (aUser,aPassword: PAnsiChar; inputSQL: PAnsiChar; savePath: PAnsichar=nil):PAnsiChar; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
inputSQL (PAnsiChar)  
savePath (PAnsiChar = nil)  

Return type: 

Example: Click here if you want to get an example of this function.

Back to top

 

 

Patient

GetPatientID

After calling the function, a window opens, where you can search a patient.

function GetPatientID (aUser, aPassword: PAnsiChar; AFilter: PAnsiChar = nil): PAnsiChar; stdcall; 

Parameters:
aUser, aPassword (PAnsiChar)  
A specific user in MedITEX IVF which can be used in external programs.                        

AFilter (PAnsiChar = nil)

 

 

 

 

 

 

 

 

 

 

 

 

 

You can restrict the search by specifying the filter.

 

Filters based on the following criteria are possibly:

  • Title
  • First name
  • Surname
  • Gender
  • Date of birth
  • City
  • Street
  • Phone number
  • Mobile phone number

 

Examples:

  • Date of birth > '01/01/1985'
  • First name like 'Example%'

Return type: The type of the return value is PAnsiChar. The function returns the PatientenID on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

GetPatientName

With this function, you can get the name of a patient.

function GetPatientName (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar): PAnsiChar; stdcall; 

Parameter:

As parameter the function expects the PatientenID, AUser and APassword of type PAnsiChar.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
APatientID (PAnsiChar) This is the ID of your patient.

Return type: The function returns the name of the patient on success or -1 on failure from type PAnsiChar.

Example: Click here if you want to get an example of this function.

 

 

GetPartnerPatID

With this function, you can get the ID of the patients partner.

function GetPartnerPatID (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar): PAnsiChar; stdcall;

Parameter:

As parameter the function expects the PatientenID of type PAnsiChar.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
APatientID (PAnsiChar) This is the ID of your patient.

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

Example: Click here if you want to get an example of this function.

 

 

GetLatestMedicalHistoryID

With this function, it is possible to get the latest patient Medical History.

function GetLatestMedicalHistoryID (aUser, aPassword, aPatientID: PAnsiChar): Integer;

Parameter:

As parameter the function expects the PatientenID of type PAnsiChar.

aUser, aPassword (PAnsiChar)                 
The registration data of a user from MedITEX IVF.                                                            
aPatientID (PAnsiChar) The patient ID (must be the same in both programs).     

Return type: Medical History ID as Integer. If no result is found, -1 is returned.

 

SaveFileByPatient

With this function you can save files directly in one patients folder in MedITEX IVF.

function SaveFileByPatient (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar; APathAndFile: PAnsiChar; ADescription: PAnsiChar = nil; ADatum: PAnsiChar = nil; AFileTyp: Integer = 10; ASubTyp: Integer = 12; NewRecordInDatabase: boolean = true): Integer; stdcall;

Parameters:

This function expects as parameter the PatientenID from type integer and the fully path of the file to be stored.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aPatientID (PAnsiChar) This is the ID of your patient.
APathAndFile (PAnsiChar) Path where the file should be saved.                                                             

 

Optional parameters:

ADescription (PAnsiChar = nil) Default -> file name.
ADatum (PAnsiChar = nil)

Default -> file date.

AFileTyp (Integer = 10) Default -> 10.
ASubTyp (Integer = 12) Default -> 12.
NewRecordInDatabase(Boolean = true)

Default -> true.

  • True: File is copied into the storage directory and a database entry takes place.
  • False: File is copied into the storage directory.

 

The following file type - sub type combinations are possible:

File type Sub type Designation File type Sub type Designation
3 9 Long-term medication 11 3 fallopian status
8 1 Previous diseases 11 11 Andro findings
8 4 Semen analysis
11 13 Gyn findings
8 5 Hormones 11
14
Uterus/Ovaries
8 22 Microbiology 11 15 Ultrasound
8 23 Genetics 11 16
Hysteroscopy
8 24 Endocrinology 11 17
Laparscopy/HSSG
8 25 Serology 11 18
Abrasio
8 26 Clinical chemistry 11 19
Laparotomy
9 6 DIR Medical history 11 27
PCT/Mucus
9 7 CAVE 11 28
Transvaginale endoscopy
9 8 DIR Medical history 11 31
Hepatitis
9 10 Finding 11 32
Examinations
9 21 Note 11
102
DICOM
10 12 Document general


10 20 Cryo Gyn  

10 30 Cryo Andro  

10 33 Medical history questionnaire  

10 100 Administration of documents      
10 101 Oocyte pictures form MedITEX IVF  

Return type: The function returns the 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

SaveConsentByPatient

Within this function, it would be possible to add and update consents to the patients folder in MedITEX IVF.

function SaveConsentByPatient (aUser, aPassword: PAnsiChar; APatientID, APathAndFile, ANote, ADate: PAnsiChar; ATemplateID, AGroupID, ADocID, AOrigID, AStatus: Integer): Integer;

Parameters:

This function expects as parameters the PatientID and the fully path of the consent to be added.

Some internal IDs, like consent Template ID, consent Group ID and consent Status ID are important for the use of this function.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.
aPatientID (PAnsiChar) The ID of the patient.
APathAndFile (PAnsiChar) The path where the consent should be saved.
ANote (PAnsiChar) The note associated to the consent.
ADate (PAnsiChar) The consent date.
ATemplateID (Integer) The consent template ID.
AGroupID (Integer) The consent group ID.
ADocID, AOrigID (Integer)

With ADocID and AOrigID, it would be possible to replace the existing consent.

ADocID is an ID that can be used in case of the consent update.

E.g.
If you create a consent with ADocID = 17, it is possible to update it calling the procedure.
But, sending ADocID = 18 and AOrigID = 17.

If you're not planning to update the consents, you can send "-1" for both parameters.

AStatus (Integer) The consent status ID.

Return type: The function returns 1 on success or -1 on failure.

 

SaveLabData

With this function you can save lab values directly at one patients laboratory folder in MedITEX IVF.

function SaveLabData (aUser, aPassword: PAnsiChar; APatID: PAnsiChar; ADatum: PAnsiChar; AProbeID: PAnsiChar; ALaborParam: PAnsiChar; AValue: PAnsiChar): Integer; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aPatID (PAnsiChar) This is the ID of your patient.
ADatum (PAnsiChar) Enter the date of the evaluation.

AProbeID (PAnsiChar)

Add the Id of your sample.
ALaborParam (PAnsiChar) Input the name of the laboratory parameter.
AValue (PAnsiChar) Add the value of the parameter.

Return type: The type of the return value is 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

SavePatientImage

With this function you can save a picture of the patient in MedITEX IVF.

function SavePatientImage(aUser,aPassword: PAnsiChar; APatientID: PAnsiChar; APathAndFile: PAnsiChar): Integer; stdcall;

Parameters:

This function expects as parameter the PatientenID from type integer and the fully path of the file to be stored.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aPatientID (PAnsiChar) This is the ID of your patient.
APathAndFile (PAnsiChar) Path where the file should be saved.                                                             

Return type: The function returns the 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

Back to top

 

 

Therapie - Cycle

GetTherapieID

This function allows you to see all cycles of the transferred patient.

function GetTherapieID (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar): Integer; stdcall;

Parameter:

As parameter the function expects the PatientenID of type PAnsiChar.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
APatientID (PAnsiChar) This is the ID of your patient.

After this function has been called, a window opens. This window is showing all cycles from the transferred patient. Choose the wished cycle.

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

Example: Click here if you want to get an example of this function.

 

 

GetTherapieIDEx

function GetTherapieIDEx (aUser,aPassword: PAnsiChar; APatientID: PAnsiChar; aTIDList:string): Integer;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
APatientID (PAnsiChar)
This is the ID of your patient.
aTIDList (string)  

Return type:

Example: Click here if you want to get an example of this function.

 

 

GetLatestCycleID

function GetLatestCycleID (aUser, aPassword, aPatientID: PAnsiChar): Integer;

Parameters:

aUser, aPassword (PAnsiChar)                    
The registration data of a user from MedITEX IVF.                                                              
aPatientID (PAnsiChar)
The patient ID (must be the same in both programs).

Return type: Therapie ID as Integer. If no result is found, -1 is returned.

 

 

SaveUSImage

This function enables you to save ultrasound images of a us examination in the patients folder in MedITEX IVF.

function SaveUSImage (aUser, aPassword: PAnsiChar; APatID: PAnsiChar; ADatum: PAnsiChar; APathAndFile: PAnsiChar; ATypUS: Integer = 1; AAnamneseSubTyp: Integer = 37): Integer; stdcall;

Parameter:

This function expects as a required parameter the User, Password and PatientenID as PAnsiChar, the Date and the full file path of the image to be stored. Optional the US type can be entered (1: follicle, 2: pregnancy) and the particular AnamneseItemSubtyp has to be 37.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
APatID (PAnsiChar)
This is the ID of your patient.
ADatum (PAnsiChar) The date of recording.
APathAndFile (PAnsiChar) Path where the file should be saved.                                                              
ATypUS (Integer = 1) Type of ultrasound: follicle or pregnancy.
AAnamneseSubTyp (Integer = 37) AnamneseSubType.

Return type: The function returns the 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

Back to top

 

 

Kultur - Culture

GetEZID

After calling this function, a new window opens. This window is showing all egg cells from the transferred cycle. You can choose the wished egg cell.

function GetEZID (aUser, aPassword: PAnsiChar; ATherapieID: Integer): Integer; stdcall;

Parameter:

As parameter the function expects the TherapieID of type integer.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
ATherapieID (Integer) This is the ID of a cycle.

Return type: The function returns the EZID on success or -1 on failure of type integer.

Example: Click here if you want to get an example of this function.

 

 

GetMeditexEZID

function GetMeditexEZID (aUser, aPassword: PAnsiChar; aEZID: Integer): Integer; stdcall;

Parameter:

This function expects as parameter the EZID from type integer.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
aEZID (Integer) This is the ID of an oocyte.

Return type: The type of the return value is the corresponding MeditexEZID on success or -1 of the type integer on failure.

Example: Click here if you want to get an example of this function.

 

 

GetKulturtag

With this function you can get the exact culture day of one oocyte.

function GetKulturtag (aUser, aPassword: PAnsiChar; aEZID: Integer): Integer; stdcall;

Parameter:

This function expects as parameter the EZID from type integer.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
aEZID (Integer) This is the ID of an oocyte.

Return type: The function returns the corresponding culture day on success or -1 on failure of type integer.

Example: Click here if you want to get an example of this function.

 

 

GetKulturtagAsDate

With this function you can get the exact culture day of one oocyte in the format date.

function GetKulturtagAsDate (aUser, a Password: PAnsiChar; aEZID: Integer): PAnsiChar; stdcall;

Parameter:

This function expects as parameter the EZID from type integer.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
aEZID (Integer) This is the ID of an oocyte.

Return type: The function returns the corresponding culture day on success or -1 on failure of type PAnsiChar.

Example: Click here if you want to get an example of this function.

 

 

SaveEZImage

function SaveEZImage (aUser, aPassword: PAnsiChar; aEZID: Integer; APathAndFile: PAnsiChar): Integer; stdcall;

Parameter:

This function expects as parameter the EZID from type integer and the fully path of the image to be stored.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
aEZID (Integer) This is the ID of an oocyte.
APathAndFile (PAnsiChar) Path where the file should be saved.                                                              

Return type: The function returns the 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

Back to top

 

 

Spermiogramm - Semen analysis

GetNewSpermiogrammID

After calling the function, a new semen analysis with the passed parameters will be created.

function GetNewSpermiogrammID (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar; ADatum: PAnsiChar = nil; ABemerkung: PAnsiChar = nil; Uhrzeit: PAnsiChar = nil; Indikation: PAnsiChar = nil; Spendersperma: Boolean = false; Gewinnungsart: Integer = 0): Integer; stdcall;

Parameters:

This function expects as parameter the PatientenID from type integer.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aPatientID (PAnsiChar) This is the ID of your patient.
Indikation (PAnsiChar = nil)

Indication of the semen analysis.

Values can be:

0 for Semen analysis

1 for IVf

2 for ICSI

3 for Insemination

4 for Cryopreservation

5 for Control

6 for IMSI

7 for IVM

8 for Fertility preservation

 

Optional parameters:

ADatum (PAnsiChar = nil) The date of recording.
ABemerkung (PAnsiChar = nil) Enter a comment if it is necessary.
Uhrzeit (PAnsiChar = nil) Date of the sample.
Spendersperma (Boolean = false) Sperm from donor.
Gewinnungsart (Integer = 0)

Collection method.

Values can be:

0 for Not specified

1 for antegrade ejaculation

2 for retrograde ejaculation

3 for Cryo sperm

4 for MESA

5 for frozen/thawed MESA

6 for PESA

7 for frozen/thawed PESA

8 for TESE

9 for frozen/thawed TESE

10 for Electrostimulation

11 for Spermatocele

12 for Donor

13 for TESA

14 for frozen/thawed TESA

15 for ESA

16 for frozen/thawed ESA

23 for Micro-TESA

24 for Micro-TESE

Return type: The type of the return value is the new SpermiogrammID on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

SaveSpermData

After calling the function, all entered values of the CSV-String will be added to the associated semen analysis.

function SaveSpermData (aUser, aPassword: PAnsiChar; ASpermID: Integer; UpdateCSV: PAnsiChar): Integer; stdcall;

Parameters:

This function expects as parameter the SpermiogrammID from type integer and a CSV-String from type PAnsiChar, including the fields of the semen analysis which should be updated.

aUser, aPassword (PAnsiChar) A specific user in MedITEX IVF which can be used in external programs.                      
aSpermID (PAnsiChar) This is the ID of a semen analysis.

UpdateCSV (PAnsiChar)

 

 

 

 

The CSV-String looks like:

 

Delimiter                ;


QuoteChar              "

Return type: The function returns 1 on success or -1 on failure.

Example: "PH_VA = 0.45";"DIAGNOSE_TEXT = 'TestDiagnose'";"NORMOSPERMIE_VA=23"

Click here if you want to get an example of this function.

 

GetSpermiogrammID

This function enables you to see all semen analysis of the transferred patient.

function GetSpermiogrammID (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar): Integer; stdcall;

Parameter:

As parameter the function expects the PatientenID of type PAnsiChar.

aUser, aPassword (PAnsiChar) 
A specific user in MedITEX IVF which can be used in external programs.                        
APatientID (PAnsiChar) This is the ID of your patient.

After this function has been called, a window opens. This window is showing all semen analysis from the transferred patient. Choose the wished semen analysis.

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

Example: Click here if you want to get an example of this function.

 

 

SaveFileBySpermiogramm

You can save semen analysis files directly in the patients folder in MedITEX IVF with this function.

function SaveFileBySpermiogramm (aUser, aPassword: PAnsiChar; ASpermID: Integer; APathAndFile: PAnsichar; ATyp: Integer; ADescription: PAnsiChar = nil; ADatum: PAnsiChar = nil): Integer; stdcall;

Parameters:

This function expects as parameter the SpermiogrammID from type integer, the type as type integer and the fully path of the file to be stored.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aSpermID (PAnsiChar) This is the ID of the semen analysis.
APathAndFile (PAnsiChar)

Path where the file should be saved.

ATyp (Integer)

 

 

 

 

 

 

 

Following types are possible:

Type

Integer value

General document 0
File (Native) 1
File (After perperation) 2

 

Optional parameters:

ADescription (PAnsiChar = nil) Default -> file name 
ADatum (PAnsiChar = nil) Default -> file date 

Return type: The type of the return value is 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

Back to top

 

 

Inkubator - Incubator

GetInkubatorID

With this function you get a list with all incubators of the program MedITEX IVF.

After calling this function, a selection dialog opens.

function GetInkubatorID (aUser, aPassword: PAnsiChar; AFilter: PAnsiChar = nil): Integer; stdcall;

Parameters:
aUser, aPassword (PAnsiChar)  
A specific user in MedITEX IVF which can be used in external programs.                        

AFilter (PAnsiChar = nil)

 

 

 

 

 

 

 

 

 

 

 

You can restrict the search by specifying the filter.

 

Filters based on the following criteria are possibly:

  • Description
  • Active
  • Manufacturer.name
  • Model.name
  • Location of incubator.name
  • Incubator no.

 

Examples:

  • Active = 1
  • Manufacturer.name like ‘XY%’
  • Incubator no > 20

Return type: The type of the return value is 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

SaveFileToInkubator

This function enables you to save files to an incubator.

function SaveFileToInkubator (aUser, aPassword: PAnsiChar; aInkubatorID: Integer; APathAndFile: PAnsiChar; ADatum : PAnsiChar = nil; NewRecordInDatabase: boolean = true): Integer; stdcall;

Parameters:

This function expects as parameter the InkubatorID from type integer and the fully path of the file to be stored.

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
aInkubatorID (Integer) This is the ID of your incubator.
APathAndFile (PAnsiChar)

Path where the file should be saved.

 

Optional parameters:

 

ADatum (PAnsiChar = nil) Default -> file date.
NewRecordInDatabase(Boolean = true)

Default -> true.

  • True: File is copied into the storage directory and a database entry takes place.
  • False: File is copied into the storage directory.

Return type: The function returns the 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

Back to top

 

 

OpenCommands

OpenPatientCryoOverview

This function offers the opportunity to call up the cryo storage in MedITEX IVF using the DLL.

After each call of the function, if MedITEX is running, the cryo storage of the respective patient will open.

function OpenPatientCryoOverview (APatientID: PAnsiChar): Integer; stdcall;

Parameters:
APatientID (PAnsiChar) This is the ID of your patient.

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

Example: Click here if you want to get an example of this function.

 

 

OpenPatientOverview

With this function it is possible to open the patient overview window in MedITEX IVF using the DLL.

The parameters user, password (PAnsiChar) and PatientenID (PAnsiChar) has to be passed to the function. After calling the function the patient overview window opens, if MedITEX IVF is running.

function OpenPatientOverview (aUser, aPassword: PAnsiChar; APatientID: PAnsiChar): Integer; stdcall; 

Parameters:
aUser, aPassword (PAnsiChar)   
A specific user in MedITEX IVF which can be used in external programs.                         
APatientID (PAnsiChar) This is the ID of your patient.

Return type: The function returns 1 on success or -1 on failure as an integer.

Example: Click here if you want to get an example of this function.

 

 

OpenCycleOverview

With this function it is possible to open the cycle overview window in MedITEX IVF using the DLL.

After calling the function the cycle overview window opens, if MedITEX IVF is running.

function OpenCycleOverview (aUser,aPassword: PAnsiChar; ATherapieID: Integer): Integer; stdcall;

Parameters:
aUser, aPassword (PAnsiChar)   
A specific user in MedITEX IVF which can be used in external programs.                         
ATherapieID (Integer) This is the ID of the cycle.

Return type: The function returns 1 on success or -1 on failure as an integer.

Example: Click here if you want to get an example of this function.

 

 

OpenMedicalHistory

With this function, it is possible to open the patient medical history window in MedITEX IVF using the DLL.

function OpenMedicalHistory (aUser, aPassword: PAnsiChar; aMedicalHistoryID: Integer): Integer;

Parameters:
aUser, aPassword (PAnsiChar)                
The registration data of a user from MedITEX IVF.                                                                 
aMedicalHistoryID (Integer) This is the Medical History ID.

Return type: If the execution is successful, 1 is returned, otherwise -1.

 

 

OpenCultureOverview

With this function it is possible to open the egg cell overview window in MedITEX IVF using the DLL.

After calling the function the egg cell overview window opens, if MedITEX IVF is running.

function OpenCultureOverview (aUser,aPassword: PAnsiChar; aEZID: Integer): Integer; stdcall;

Parameters:
aUser, aPassword (PAnsiChar)   
A specific user in MedITEX IVF which can be used in external programs.                         
aEZID (Integer) This is the ID of the egg cell.

Return type: The function returns 1 on success or -1 on failure as an integer.

Example: Click here if you want to get an example of this function.

 

 

GetAblageDateien

function GetAblageDateien (aUser,aPassword: PAnsiChar; APatientID: PAnsiChar): Integer; stdcall;

Parameters:

aUser, aPassword (PAnsiChar)
A specific user in MedITEX IVF which can be used in external programs.                       
APatientID (PAnsiChar) This is the ID of the patient.

Return type: The type of the return value is 1 on success or -1 on failure.

Example: Click here if you want to get an example of this function.

 

 

Login

Enter here your username and password.

Example: Click here if you want to get an example.

 

Back to MedITEX API
Back to top