Re: wxEDB Messing Up DB Filename
- Posted by Matt Lewis <matthewwalkerlewis at gmail.com> Aug 29, 2005
- 431 views
cklester wrote: > > Matt, see if you can duplicate this: I'm just creating a new EuSQL database > and if I give it the name "customers_2005" it creates the name as > "customers_2005.edb).edb" OK, this is easy to fix. In create_db_proc(), change the call to file_selector() to this:
file = file_selector( main, "New Database", {"","","edb","Euphoria Database Files (*.edb)|*.edb"}, wxSAVE )
Matt Lewis