I would like to know the cleanest way of registering a file extension with my VCL Forms application so that when a data file associated with my program is double clicked, the VCL forms application is opened and the filename is passed to the application. I currently have the following code:
USEFORM("mainform.cpp", MainForm);
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Splash = new TSplash(0);
Splash->Show();
Splash->Update();
Application->Initialize();
Application->Title = "Example";
Application->HelpFile = "";
Application->CreateForm(__classid(TMainForm), &MainForm);
Application->Run();
delete Splash;
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
I would like the filename passed to the mainform so that the application can open it in the correct manner.
