1st. Is it possible to change the caption of the "open" button to something like "Add"?
2nd How can i associate several file endings to one filter e.g.:

Code:
OFName.lpstrFilter = "Executable files (*.exe)" + Chr$(0) + "*.exe" + Chr$(0) + "Batch/Script files (*.bat;*.cmd;*.jsp;*.vbs)" + Chr$(0) + "*.bat" + Chr$(0) + Chr$(0)
I want to add the .cmd, .jsp and .vbs to the filter as well, not only the .bat. Thank you for helping me!