So is it possible to save some data in Qt app to some database or so where WRT app could find it?
Or is there any chance to move data from Qt app to WRT app?
So is it possible to save some data in Qt app to some database or so where WRT app could find it?
Or is there any chance to move data from Qt app to WRT app?
Hi,
From Qt app, you could write the data to some publicly available location like E:\hello.txt etc..
Then you can just use XMLHttpRequest to read it by passing the file path as URL.
var req = new XMLHttpRequest();
req.open("GET","file://E:\\hello.txt", true);
Br,
Ilkka