SAMPLE: VB6WLC~1.EXE Windowless Controls Demonstration

ID: Q189596


The information in this article applies to:
  • Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 6.0


SUMMARY

Visual Basic 6.0 introduces the capability of creating "Windowless" controls. A Windowless control, also known as a "lightweight" control, is a control that does not have a WndProc function for message handling. These lightweight controls require fewer resources than normal controls, and allow for development of transparent controls. This sample demonstrates how to create windowless controls in Visual Basic 6.0.


MORE INFORMATION

The following file is available for download from the Microsoft Download Center. Click the file name below to download the file:

Vb6wlc~1.exe
For more information about how to download files from the Microsoft Download Center, please visit the Download Center at the following Web address
http://www.microsoft.com/downloads/search.asp
and then click How to use the Microsoft Download Center.

Below is the content of the Readme.txt for this sample.

Description

Visual Basic 6.0 provides the capability of building Windowless controls, also known as lightweight controls. A new property of the UserControl, Windowless, enables this feature. Setting the Windowless property to True will make the UserControl Windowless, a control which sends and receives messages through OLE rather than the regular messaging queues that Windows uses.

A Windowless control behaves the same as the normal UserControls with the following exceptions:
  • The UserControl has no hWnd property (limits some API calls).


  • The Borderstyle property cannot be set.


  • The UserControl cannot host normal Windowed controls.


  • Windowless controls are not supported by some containers. If sited in such a container, they will be assigned an hWnd and be treated as a normal Windowed controls.


This sample demonstrates the functionalities of Windowless controls created in Visual Basic 6.0. The main project group file is WndLessControlAGroup.vbg, which contains the controls as well as a client that shows the controls in action. The documentation in the source code explains in great detail the behavior of each control.

Summary Of Sample Controls

Four Windowless Controls are included in the sample to show different Functionality:

TestControl1 - A Windowless control that acts and handles events like a
               normal control.

TestControl2 - Allows events to bypass it and be handled by the controls
               underneath it.

TestControl3 - Demonstrates "HitTesting" to see where the user has clicked
               within the Windowless control's region on the form. The
               control acts "transparently" (events being passed to the
               Form underneath) unless the CommandButton sited on it is
               clicked. Then it handles that Event normally.

TestControl4 - This control demonstrates how to determine what areas of a
               control are transparent by using the Picture, MaskPicture,
               and MaskColor properties, and where events can be handled. 

To Start

Before loading this sample into Visual Basic 6.0, the following steps need to be taken:
  1. Copy the following files on the Visual Basic 6.0 or Visual Studio 6.0 installation CD-ROM in the ...\Common\Tools\VB\WINLESS folder to the Windows\System (Windows 95 or Windows 98) or Windows\System32 (Windows NT) folder:


  2. 
          mswless.reg
          mswless.ocx
     
  3. Double-click on mswless.reg to import information to the registry.


  4. Register mswless.ocx by typing in the following command in the Windows Run dialog:


  5. 
          RegSvr32 C:\Windows\System\mswless.ocx
     


REFERENCES

For more information about lightweight controls in Visual Basic, please see the following articles in the Microsoft Knowledge Base:

Q184687 : INFO: Lightweight Controls in Visual Basic 6.0

Q184645 : HOWTO: Create Lightweight Controls with Visual Basic 6.0

Additional query words: windowless kbDSupport kbVBp600 kbCtrl kbOLE kbReadme kbRegistry kbdss kbVBp
kbsample

Keywords : kbGrpVB
Version : WINDOWS:6.0
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: January 5, 2000
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.