SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Unregisters the application.
C
void WINAPI SftTabs_UnregisterApp(HINSTANCE hInst);
C++
static void CSftTabs::UnregisterApp();
hwndCtl
The window handle of the tab control.
hInst
The instance handle of the application.
The UnregisterApp function unregisters the application.
This call allows SftTabs/DLL to unregister all window classes used and perform cleanup processing. This call has to be made after all SftTabs/DLL controls have been destroyed.
The call to this function should be made during application termination.
This example unregisters an application from SftTabs/DLL:
C
int PASCAL WinMain(HINSTANCE hinst, HINSTANCE hinstPrev, LPSTR Cmd, int cmdShow) { SftTabs_RegisterApp(hinst); // Register application .... application message loop SftTabs_UnregisterApp(hinst); // Unregister application return msg.wParam; }
C++
int CSampleApp::ExitInstance() // based on CWinApp { // Unregister from SftTabs/DLL CSftTabs::UnregisterApp(); // call base class return CWinApp::ExitInstance(); }
See Also C/C++ API | C++ Classes | Notifications