Hi,
I am using a FileDialog dialog and i am wondering if there is a way of changing the text on the buttons,eg change open to something else.I am just using it for selecting a files path by browsing.I am not opening the file,just grabing the path,so something like select would be better.
eg:
import org.eclipse.swt.widgets.FileDialog;
FileDialog out = new FileDialog(shell,SWT.OPEN);
out.setText("Find or create a file to save output of xslt transform");
out.setFilterPath("C:/");
String[] filterExt = { "*.xml" };
out.setFilterExtensions(filterExt);
Thanks
Pj



