2 simple questions:
1) How do I check if the user has clicked cancel in a common dialogue box, (I think it has something to do with vbCancel)?
2) How do you give your compiled Vb program a custom icon
thanks
Alex
Printable View
2 simple questions:
1) How do I check if the user has clicked cancel in a common dialogue box, (I think it has something to do with vbCancel)?
2) How do you give your compiled Vb program a custom icon
thanks
Alex
1.
2. Change the icon of the main form. This will be the icon of the compiled projectCode:If CommonDialog1.FileName = "" Then Exit Sub
Thanks!