Displaying 2 results from an estimated 2 matches for "createoleobject".
2006 Nov 11
1
OLE Automatization Linux's OpenOffice from wine app
I have windows application wich use OLE Automatization to fill-in OpenOffice document
It's create OleObject like
OpenOffice := CreateOleObject('com.sun.star.ServiceManager');
And then use it.
Everything is OK when I run it on windows.
How can I rewrite it, or use any tools, to work when OpenOffice is installed on Linux,
and my application runs in wine?
--
Kochmin Alexandr
2010 Sep 02
1
XmlHttpObject
Hello!
Is there a reason why applications using xmlhttprequest don't work?
Simple Delphi code.
Uses comobj;
procedure TForm1.Button1Click(Sender: TObject);
var xmlhttp: variant;
begin
xmlhttp:=createoleobject('MSXML2.XMLHTTP.3.0');
xmlhttp.open('GET', edit1.text, true);
xmlhttp.send();
while (xmlhttp.readystate<>4) do application.processmessages;
memo1.lines.add(xmlhttp.responsetext);
end;
Screen cap: http://netikka.net/dev/ole.jpg
Here is zipped exe: http://netikka.net/de...