Photo of a teacher following the Common Sense Education Instagram account and smiling

Follow our Instagram account for educators!

Keep up with the latest media and tech trends, and all of our free resources for teachers!

Microsoft Forms 20 Object Library Vb6 Jun 2026

While FM20.DLL provides excellent UI enhancements, Mismanaging this file is a common cause of application crashes on client machines. The Licensing Restriction

Microsoft Forms 2.0 Object Library (also known as FM20.dll) is a legacy library used in Visual Basic 6 (VB6) for creating graphical user interfaces (GUIs) and forms. Here's some content related to it:

To use these controls, you must explicitly reference the component library within your Visual Basic 6.0 IDE. Open your VB6 project. microsoft forms 20 object library vb6

Strengths

Beyond the visual controls, the Forms 2.0 Library provides several auxiliary objects that handle data manipulation and clipboard access. These include , Font , and Picture objects, which are essential for advanced form functionality like drag-and-drop operations and formatting. While FM20

Private Sub ComboBox1_Click() MsgBox "Selected: " & ComboBox1.Text End Sub

| Property | Description | |----------|-------------| | Value | Current value/state of control | | Text | Text content (TextBox, ComboBox) | | Caption | Display text (Label, Button, Frame) | | Enabled | Enable/disable control | | Visible | Show/hide control | | Left , Top , Width , Height | Position and size | | BackColor , ForeColor | Color settings | | Font | Font properties | | TabIndex | Tab order | Open your VB6 project

' Explicitly declare the Microsoft Forms 2.0 variant Dim WithEvents myUnicodeTextBox As MSForms.TextBox Private Sub Form_Load() Set myUnicodeTextBox = Controls.Add("MSForms.TextBox.1", "txtUnicode", Me) myUnicodeTextBox.Visible = True myUnicodeTextBox.Text = "Привет, мир" ' Displays Russian text correctly End Sub Use code with caution. Critical Deployment and Redistribution Warnings

' Declare a variable for the Forms 2.0 TextBox Dim txtBox As MSForms.TextBox