home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / windows / misc / robartnd.arj / DIALOG3D.SM next >
Text File  |  1994-06-02  |  677b  |  30 lines

  1. ' 3D Dialog boxes under Script Maker
  2. ' Written by Rob Harford,Symantec Platinum Support
  3. '
  4. ' You need the following lines in your code in order to 
  5. ' activate the 3D dialog boxes
  6.  
  7. declare function Ctl3dRegister lib "ctl3d.dll" (byval hInst as Long) as Integer
  8. declare function Ctl3dAutoSubClass lib "ctl3d.dll" (byval hInst as Long) as Integer
  9. declare function Ctl3dUnRegister lib "ctl3d.dll" (byval hInst as Long) as Integer
  10.  
  11. sub main()
  12.  
  13.  result=Ctl3dRegister(0)
  14.  if (result = 1) then
  15.   result=Ctl3dAutoSubClass(0)
  16.   Enable3D=1
  17.  end if
  18.  
  19. '
  20. ' Your code goes here
  21. '
  22. '
  23.  
  24.  if (Enable3D=1) then 
  25.    result=Ctl3dUnRegister(0)
  26.    Sleep 500
  27.  end if
  28.  
  29. end sub
  30.