Color dialog in VB : Dialog Color Chooser « GUI « VB.Net






Color dialog in VB

Color dialog in VB
Imports System
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Resources
Imports System.Drawing
Imports System.Drawing.Drawing2D


Public Class MainClass
    Shared Sub Main()
        Dim dlg As ColorDialog = New ColorDialog()
        Dim res As DialogResult = dlg.ShowDialog()
    End Sub

End Class
           
       








Related examples in the same category

1.Customized Color DialogCustomized Color Dialog
2.Color chooser dialogColor chooser dialog