Apr 26, 2003 #1 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 !!!!!!!!!!!!!!!!
Hi ! Does somebody know how to get value of Collate checkBox when CommonDialog disapear to VB code !? Thanks a lot !!!!!!!!!!!!!!!!
Apr 26, 2003 #2 DrJavaJoe Programmer Oct 3, 2002 2,143 US 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 Upvote 0 Downvote
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
Apr 28, 2003 Thread starter #3 ASPVB Programmer Jul 27, 2002 32 US Thanks DrJavaJoe !!!!! Upvote 0 Downvote