Hello. Ok this is the code i have so far

VB Code:
  1. Private Sub xpcmdbutton9_Click()
  2. CommonDialog1.Flags = cdlCFBoth
  3. CommonDialog1.ShowFont
  4.  
  5. End Sub
  6. Private Sub xpcmdbutton10_Click()
  7. CommonDialog1.Flags = cdlCFBoth
  8. CommonDialog1.ShowColor
  9. End Sub

What i want to happen is when the user selects their font, the textbox next to the command button displays their selected font name. And when the user selects their color, the backcolor of the label changes to that selected color. How do i do this?