home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / desaware / apitools / apicvt1.bas < prev    next >
Encoding:
BASIC Source File  |  1996-02-06  |  423 b   |  17 lines

  1. Attribute VB_Name = "APICVT1"
  2. ' Copyright (c) 1996 by Desaware
  3. ' Part of the Desaware API Toolkit
  4. ' All Rights Reserved
  5.  
  6. Option Explicit
  7. Global CRLF$        ' Loaded with CRLF for result lines
  8. Global CvtResult$   ' Will contain text result
  9.  
  10. Global TargetDataBase$
  11. Global SourceFileName$
  12.  
  13. Global Const OFN_CREATEPROMPT& = &H2000&
  14. Global Const OFN_FILEMUSTEXIST& = &H1000&
  15. Global Const OFN_HIDEREADONLY& = 4
  16.  
  17.