Author Topic: cannot type color number in standard color selection dialog?  (Read 1997 times)

0 Members and 1 Guest are viewing this topic.

jmaeding

  • Bull Frog
  • Posts: 304
  • I'm just here for the Shelties.
cannot type color number in standard color selection dialog?
« on: February 26, 2007, 01:20:58 PM »
I do this:
        Dim CD As New AcWi.ColorDialog
        CD.SetDialogTabs(AcWi.ColorDialog.ColorTabs.ACITab)
        If CD.ShowDialog = DialogResult.OK Then            'If user clicked OK then
            retColor = CD.Color
        End If

so its the normal .net color dialog.
please tell me there is a flag to enable the textbox so I can type my color (and not be lying...)
thanks
James Maeding

jmaeding

  • Bull Frog
  • Posts: 304
  • I'm just here for the Shelties.
Re: cannot type color number in standard color selection dialog?
« Reply #1 on: February 26, 2007, 01:30:14 PM »
oh, the default color must be an aci number, not rgb, that makes sense.
James Maeding