Does this look right?-Addressbook Example

Ty Tower tytower at yahoo.com.au
Tue May 20 16:37:39 PDT 2008


Ty Tower Wrote:

> private void openAddressBook() {
>     FileDialog fileDialog = new FileDialog(shell, DWT.OPEN);
>     fileDialog.setFilterExtensions(["*.adr;", "*.*"]);
>     fileDialog.setFilterNames([
>         resAddressBook.getString("Book_filter_name") ~ " (*.adr)",
>         resAddressBook.getString("All_filter_name") ~ " (*.*)"]);
>     char[] name = fileDialog.open();
>  
> 
> Looking at line 305 of AddressBook.d it has "fileDialog.setFilterExtensions(["*.adr;", "*.*"]);"
> with a semi-colon after adr. Is this a typo? I think the example only shows .adr files and nothing else


Nope it works OK anyway 


More information about the Digitalmars-d-dwt mailing list