home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1995 #6 / CDD_6_95.ISO / cdd / winanw / hawin / ssscroll.c < prev    next >
Text File  |  1994-12-07  |  905b  |  26 lines

  1. /* This program, ssscroll.c, created by Hilgraeve and assigned to the Scroll lock */
  2. /* button, toggles the scroll lock, as if you selected View|Scroll lock. */
  3.  
  4. /* $Revision: 1.1 $ */
  5. /* $Date: 1994/11/08 11:59:45 $ */
  6.  
  7. /* Define main function, which is always the starting point of C programs. */
  8. /* (The term "void" indicates that the function returns no value.) */
  9. void main ()
  10.     {
  11.     /* Declares a variable and initializes it to zero. */
  12.     long ScriptHandle = 0;
  13.  
  14.     /* Establish a link between this script program and HyperACCESS */
  15.     ScriptHandle = haInitialize(0, 0, 0, 0);
  16.  
  17.     /* Exit if intialization of link with HyperACCESS failed */
  18.     if (ScriptHandle == 0) exit();
  19.  
  20.     /* Same as selecting View from the menu bar and Scroll lock from View menu */
  21.     haMenuString(ScriptHandle, "VS");
  22.  
  23.     /* Terminate link between HyperACCESS and script program */
  24.     haTerminate(ScriptHandle, 0);
  25.     }
  26.