Re: Wx::ConfigBase
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
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