System.Drawing.ColorTranslator.FromOle : Color « 2D Graphics « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » 2D Graphics » Color 
17.26.17.System.Drawing.ColorTranslator.FromOle
System.Drawing.ColorTranslator.FromOle
Imports System.Windows.Forms
Imports System.Drawing.Text
Imports System.Drawing
Imports System.Drawing.Drawing2D

public class ColorFromOle
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button1.Click
        Me.BackColor = System.Drawing.ColorTranslator.FromOle(QBColor(1))

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button2.Click
        Me.BackColor = System.Drawing.ColorTranslator.FromOle(RGB(2552550))

    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button3.Click
        Dim mycolor As Color
        Me.BackColor = mycolor.FromArgb(122)

    End Sub

    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button4.Click
        Me.BackColor = Color.Blue
    End Sub

    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles Button5.Click
        Me.BackColor = System.Drawing.ColorTranslator.FromOle(&H808080)
    End Sub
End Class
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.Button1 = New System.Windows.Forms.Button
        Me.Button2 = New System.Windows.Forms.Button
        Me.Button3 = New System.Windows.Forms.Button
        Me.Button4 = New System.Windows.Forms.Button
        Me.Button5 = New System.Windows.Forms.Button
        Me.SuspendLayout()
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(12184)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(7523)
        Me.Button1.TabIndex = 0
        Me.Button1.Text = "QBColor"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'Button2
        '
        Me.Button2.Location = New System.Drawing.Point(93184)
        Me.Button2.Name = "Button2"
        Me.Button2.Size = New System.Drawing.Size(7523)
        Me.Button2.TabIndex = 1
        Me.Button2.Text = "RGB"
        Me.Button2.UseVisualStyleBackColor = True
        '
        'Button3
        '
        Me.Button3.Location = New System.Drawing.Point(174184)
        Me.Button3.Name = "Button3"
        Me.Button3.Size = New System.Drawing.Size(7523)
        Me.Button3.TabIndex = 2
        Me.Button3.Text = "FromARGB"
        Me.Button3.UseVisualStyleBackColor = True
        '
        'Button4
        '
        Me.Button4.Location = New System.Drawing.Point(255184)
        Me.Button4.Name = "Button4"
        Me.Button4.Size = New System.Drawing.Size(9423)
        Me.Button4.TabIndex = 3
        Me.Button4.Text = "Color Constant"
        Me.Button4.UseVisualStyleBackColor = True
        '
        'Button5
        '
        Me.Button5.Location = New System.Drawing.Point(355184)
        Me.Button5.Name = "Button5"
        Me.Button5.Size = New System.Drawing.Size(9223)
        Me.Button5.TabIndex = 4
        Me.Button5.Text = "Long Integer"
        Me.Button5.UseVisualStyleBackColor = True
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(459246)
        Me.Controls.Add(Me.Button5)
        Me.Controls.Add(Me.Button4)
        Me.Controls.Add(Me.Button3)
        Me.Controls.Add(Me.Button2)
        Me.Controls.Add(Me.Button1)
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents Button2 As System.Windows.Forms.Button
    Friend WithEvents Button3 As System.Windows.Forms.Button
    Friend WithEvents Button4 As System.Windows.Forms.Button
    Friend WithEvents Button5 As System.Windows.Forms.Button

End Class
17.26.Color
17.26.1.KnownColor.ActiveBorder
17.26.2.ColorTranslator.FromHtml('#0000ff')
17.26.3.Color.FromNameColor.FromName
17.26.4.Color.FromArgbColor.FromArgb
17.26.5.Create Color from R G B values
17.26.6.Create Color from R G B value and Alpha
17.26.7.Create Color from SystemColors
17.26.8.Color AlphaColor Alpha
17.26.9.Convert color from string (FF00FF)Convert color from string (FF00FF)
17.26.10.Color.FromWin32Color.FromWin32
17.26.11.Color.FromHtmlColor.FromHtml
17.26.12.Get Color from static fields defined in ColorGet Color from static fields defined in Color
17.26.13.Color.FromArgb(-1090518785)Color.FromArgb(-1090518785)
17.26.14.Get Hue, Saturation, Brightness from a colorGet Hue, Saturation, Brightness from a color
17.26.15.Using different colors in Visual BasicUsing different colors in Visual Basic
17.26.16.Color: Red, Green, Blue, Hue, Saturation, Brightness, SectorColor: Red, Green, Blue, Hue, Saturation, Brightness, Sector
17.26.17.System.Drawing.ColorTranslator.FromOleSystem.Drawing.ColorTranslator.FromOle
17.26.18.Transparent ColorTransparent Color
17.26.19.Alpha blending colorAlpha blending color
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.