Apr 26, 2003 #1 ASPVB Programmer Joined Jul 27, 2002 Messages 32 Location 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 Joined Oct 3, 2002 Messages 2,143 Location 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 Joined Jul 27, 2002 Messages 32 Location US Thanks DrJavaJoe !!!!! Upvote 0 Downvote