home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Direkt 1995 #6
/
CDD_6_95.ISO
/
cdd
/
winanw
/
hawin
/
ssfonts.c
< prev
next >
Wrap
Text File
|
1994-12-07
|
889b
|
26 lines
/* This program, ssfonts.c, created by Hilgraeve and assigned to the Fonts */
/* button, brings up the Fonts dialog, as if you selected View/Fonts. */
/* $Revision: 1.1 $ */
/* $Date: 1994/11/08 11:59:42 $ */
/* Define main function, which is always the starting point of C programs. */
/* (The term "void" indicates that the function returns no value.) */
void main ()
{
/* Declares a variable and initializes it to zero. */
long ScriptHandle = 0;
/* Establish a link between this script program and HyperACCESS */
ScriptHandle = haInitialize(0, 0, 0, 0);
/* Exit if intialization of link with HyperACCESS failed */
if (ScriptHandle == 0) exit();
/* Same as selecting View from menu bar and Fonts from View pulldown */
haMenuString(ScriptHandle, "VF");
/* Terminate link between HyperACCESS and script program */
haTerminate(ScriptHandle, 0);
}