Re: Wx::ConfigBase

2009-12-23 Thread Johan Vromans
Mark Dootson writes: > I do this all the time as I don't want to use registry on windows. > Works fine on 'nix too. Nice. Thanks. -- Johan

Re: Wx::ConfigBase

2009-12-23 Thread Mark Dootson
Hi, I do this all the time as I don't want to use registry on windows. Works fine on 'nix too. my $localfilename = "~/.foobar/app"; my $config = Wx::FileConfig->new( $app->GetAppName() , $app->GetVendorName() , $localfilename, '', wxCONFIG_USE_LOCAL_FILE ); Cheers Mark