how can i control shockwaveflash object BGColor with colordialogue in vb.net
        Posted  
        
            by testkhan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by testkhan
        
        
        
        Published on 2010-04-01T17:26:18Z
        Indexed on 
            2010/04/01
            18:43 UTC
        
        
        Read the original article
        Hit count: 407
        
vb.net
i have the following code
Private Sub select_color_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles select_color.Click
        Dim ocolor As New ColorDialog
        ocolor.ShowDialog()
        Me.BackColor = ocolor.Color
    End Sub
and it changes the background color of form to the color i select in colordialogue...
now i want to change the BGColor of shockwaveobject in this way...however i can change the BGColor of shockwave object manually in toolbox but i want to change it by color dialogue how can i do that...
© Stack Overflow or respective owner