home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / controls / spincube / readme.txt < prev    next >
Text File  |  1996-01-17  |  1KB  |  31 lines

  1. Standard DLL & Example of Creating a Custom Control Class
  2.  
  3.  
  4. SUMMARY
  5. =======
  6.  
  7. The SPINCUBE sample provides a generic Win32 DLL template. It demonstrates 
  8. the use of DLL entry points, exported variables, and using the C run-time in 
  9. a DLL. This sample also provides a functional example of how to create a 
  10. custom control class that can be used by applications, such as SPINTEST.EXE, 
  11. as well as the Dialog Editor.
  12.  
  13. MORE INFORMATION
  14. ================
  15.  
  16. SPINCUBE.DLL contains the control window procedure and the interface 
  17. functions required by the Dialog Editor (see SPINCUBE.C), as well as the 
  18. control paint routines (see PAINT.C). SPINTEST.EXE is a small test program 
  19. that loads SPINCUBE.DLL and creates a few of the custom controls.
  20.  
  21. To test SPINCUBE with the Dialog Editor:
  22.  
  23.  1. Start the editor. From the File menu, choose Open Custom.
  24.  2. Enter the path and filename of SPINCUBE.DLL.
  25.  3. Create a new dialog box and choose a custom control button from the 
  26.     control palette (lower-right corner).
  27.  4. Click the dialog box to create a SPINCUBE control.
  28.  5. Save the dialog box template.
  29.  6. Inspect the .DLG file that was created.
  30.  
  31.