We also have 11.2 installed with patch 1, so that is probably not the issue.
Can you try to check what happens if you force the FileLocation
to online?
procedure TForm1.FormCreate(Sender: TObject);
begin
TMSFNCWXCamera1.FileLocation := cflOnline;
end;
Alternatively if that does not work you can try to debug the underlying browser that hosts the camera:
- Have the application running while it is connected to your computer.
- From Chrome (or Edge) go to
chrome://inspect
(oredge://inspect
) and wait until the application shows up in the "Remote Target" section - Once it shows up, you can inspect the browser that hosts the camera. Check the console tab to see if there are any error messages.