' Please use the following namespace
' Imports System.Windows.Forms;
' Imports GrapeCity.Win.Editors;
Public Sub InitalizeRecommendedValue()
' Create an instance of a GcMaskedComboBox control.
Dim gcMaskedComboBox1 As New GcMaskedComboBox()
' Set the RecommendedValue property to a string value.
gcMaskedComboBox1.RecommendedValue = "RecommendedValue"
' Allow the RecommendedValue to show in the GcMaskedComboBox control.
gcMaskedComboBox1.ShowRecommendedValue = True
End Sub
// Please use the following namespace
// using System.Windows.Forms;
// using GrapeCity.Win.Editors;
public void InitalizeRecommendedValue()
{
// Create an instance of a GcMaskedComboBox control.
GcMaskedComboBox gcMaskedComboBox1 = new GcMaskedComboBox();
// Set the RecommendedValue property to a string value.
gcMaskedComboBox1.RecommendedValue = "RecommendedValue";
// Allow the RecommendedValue to show in the GcMaskedComboBox control.
gcMaskedComboBox1.ShowRecommendedValue = true;
}