 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Eddie Shipman Guest
|
Posted: Fri Jun 27, 2003 3:15 pm Post subject: Is this early or late binding? |
|
|
var
XMLHTTP: IServerXMLHTTPRequest;
XMLDoc : IXMLDOMDocument;
begin
XMLDoc := CreateOleObject('MSXML2.DOMDocument') as IXMLDOMDocument;
XMLHTTP := CreateOleObject('MSXML2.ServerXMLHTTP') as IServerXMLHTTPRequest;
try
// do whatever...
finally
XMLHTTP := nil;
XMLDoc := nil;
end;
end;
If late, how can I do it using Early binding?
|
|
| Back to top |
|
 |
John Carlyle-Clarke Guest
|
Posted: Tue Jul 01, 2003 8:36 am Post subject: Re: Is this early or late binding? |
|
|
Eddie Shipman <eshipman_remove_the_word_fly (AT) flyaustin (DOT) rr.com> wrote
in news:MPG.19661b6cb88a0f54989b14 (AT) forums (DOT) borland.com:
| Quote: | var
XMLHTTP: IServerXMLHTTPRequest;
XMLDoc : IXMLDOMDocument;
begin
XMLDoc := CreateOleObject('MSXML2.DOMDocument') as
IXMLDOMDocument; XMLHTTP :=
CreateOleObject('MSXML2.ServerXMLHTTP') as
IServerXMLHTTPRequest; try
// do whatever...
finally
XMLHTTP := nil;
XMLDoc := nil;
end;
end;
If late, how can I do it using Early binding?
|
It certainly looks like Early Binding to me...
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|