解决方案 »

  1.   

    1.添加控件CommonDialog
    2.添加代码
      CommonDialog1.ShowColor
      

  2.   

    看看
    http://www.lilacsoft.com/xueyuan/readneirong.asp?rcount=11
      

  3.   

    调色板并不是弹出的MSGBOX选择颜色,而是当显示一个256色位图时候位图的总颜色数。通过改变调色板的数值可以快速地改变整个位图的颜色,亮度等。
      

  4.   

    用comondialog control
    ComonDialog.showcolor
    具体还有其他细节设置,可以参看msdn
      

  5.   

    Private Sub tiaoseban_Click(Index As Integer)
    CommonDialog1.Flags = 1 '一定要设置
    CommonDialog1.ShowColor
    Text1.ForeColor = CommonDialog1.Color
    End Sub