home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch20 / seditor / excel.scr < prev    next >
Encoding:
Text File  |  1996-05-12  |  135 b   |  8 lines

  1. Sub Main()
  2.     
  3.     Set EXL = CreateObject("Excel.Application")
  4.     Show EXL.Evaluate("Log(99)")
  5.     Set EXL = Nothing
  6.  
  7. End Sub
  8.