home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / nastroje / GHEDITOR.ZIP / GHEditor.txt < prev   
Text File  |  2001-09-19  |  860b  |  22 lines

  1. GHEditor.dll
  2. =============
  3.  
  4. There are 3 function calls how to open the edior from DLL:
  5.  
  6. 1. 
  7. procedure ShowEditor(AUserName:PChar); stdcall;
  8.  
  9. This function is supported by all windows programming languages.
  10. Just pass default username, or real username if your system is a multiuser sytem, so each user can have its own setings saved. This parameter is of PChar type, or Null-Terminated string. From Visual Fox, just pass string (probably VB too).
  11.  
  12. 2. 
  13. procedure ShowMailEditor( AUserName,AToAddress: PChar ); stdcall;
  14.  
  15. As above, except this function opens Mail editor and puts passed parameter "AToAddress" in TO: address field.
  16.  
  17. 3.
  18. procedure ShowEditorText(AText:TStringList); stdcall;
  19.  
  20. This function is supported by Delphi and Borland C++ Builder. It is not tested on other languages. You can pass list of files for editor to open them.
  21.  
  22.