Hi,
I am also running the latest version of Windows 10 and I just created a quick test app where I dropped a button and a TRzLauncher component on the form. I then wrote the following event handler for the button’s OnClick event:
procedure TForm32.RzButton1Click(Sender: TObject);
begin
RzLauncher1.FileName := 'C:\Users\rkonopka\Pictures\sample.jpg';
RzLauncher1.Launch;
end;
I then ran the program and clicked the button. The Windows Photo Viewer (my default app for JPG files) was launched correctly. Do you have any other property changes from the defaults in the TRzLauncher?
Ray