Results 1 to 2 of 2

Thread: Dialog Box

  1. #1

    Thread Starter
    Frenzied Member markman's Avatar
    Join Date
    Nov 2000
    Location
    Florida.
    Posts
    1,197

    Question

    Using the method on this website:
    http://www.vbworld.com/demos/choosecolor/
    (That may be it, if not serch for it)
    I want to choose a custom color so that next time you choose a color, it shows your previously chosen custom colors.
    Any ideas?
    retired member. Thanks for everything

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Code:
    'a place to start
    
    Private Sub ChooseColour_Click()
      'add a label  Label1
      
      Dim oldColor As String
      oldColor = Me.BackColor
      
      Label1.BackColor = oldColor
      Label1.Caption = "This was the last color used."
      'etc
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width