{
try
{
final XulFileDialog fd = (XulFileDialog) document.createElement("filedialog"); //$NON-NLS-1$
fd.setModalParent(LookAndFeelStep.this.getDesignTimeContext().getParentWindow());
fd.showOpenDialog();
file = (File) fd.getFile();
if (file != null)
{ // If the file is null then the user hit cancel
final String filePath = file.getAbsolutePath();
final XulTextbox fileTextBox = (XulTextbox) document.getElementById(WIZARD_FILENAME_TB_ID);