Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get value of Collate checkBox when CommonDialog disapear ?

Status
Not open for further replies.

ASPVB

Programmer
Jul 27, 2002
32
US
Hi ! Does somebody know how to get value of Collate checkBox when CommonDialog disapear to VB code !?

Thanks a lot !!!!!!!!!!!!!!!!
 
The way you check the state of the checkbox when the user has finished with the dialog is by checking the flags property. Like this:

If CommonDialog1.Flags = cdlPDCollate Then
Msgbox "You have selected to collate"
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top