Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Our Crystal Runtime Solution -Very Long Post
Message
De
06/10/2000 14:03:19
 
 
À
06/10/2000 13:59:36
Information générale
Forum:
Visual FoxPro
Catégorie:
Produits tierce partie
Divers
Thread ID:
00404613
Message ID:
00426133
Vues:
21
To register by implementing the following routine in your setup program or at your application's start-up:
C/C++ Version

BOOL RegistryCFX ()
{
HINSTANCE hOCX;
FARPROC pReg;

#ifdef _WIN32
hOCX = LoadLibrary("CFX32.OCX");
#else
hOCX = LoadLibrary("CHARTFX.OCX");
#endif

if (!hOCX)
return FALSE; // Could not load OCX !

pReg = GetProcAddress(hOCX,"DllRegisterServer");
if (pReg)
pReg(); // Call the registration function

FreeLibrary(hOCX);
return (pReg != NULL);
}
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform