Click here to Skip to main content
15,925,172 members
Home / Discussions / COM
   

COM

 
GeneralRe: Accessing COM component from JScript Pin
PriyaJ.220623-Jul-07 2:01
PriyaJ.220623-Jul-07 2:01 
AnswerRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 5:22
User 21559723-Jul-07 5:22 
GeneralRe: Accessing COM component from JScript Pin
PriyaJ.220623-Jul-07 17:16
PriyaJ.220623-Jul-07 17:16 
GeneralRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 18:00
User 21559723-Jul-07 18:00 
GeneralRe: Accessing COM component from JScript Pin
PriyaJ.220623-Jul-07 19:08
PriyaJ.220623-Jul-07 19:08 
GeneralRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 19:57
User 21559723-Jul-07 19:57 
GeneralRe: Accessing COM component from JScript Pin
PriyaJ.220623-Jul-07 19:58
PriyaJ.220623-Jul-07 19:58 
GeneralRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 21:01
User 21559723-Jul-07 21:01 
Does the following sample work in your browser (It works fine on my IE6 browser)
<html><br />
<head><br />
<script type="text/javascript"><br />
var xmlhttp;<br />
<br />
function testXMLHttp()<br />
{<br />
xmlhttp=null<br />
// code for Mozilla, etc.<br />
if (window.XMLHttpRequest)<br />
  {<br />
  xmlhttp=new XMLHttpRequest()<br />
  }<br />
// code for IE<br />
else if (window.ActiveXObject)<br />
  {<br />
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")<br />
  }<br />
if (xmlhttp!=null)<br />
  {<br />
  alert("Your browser does support XMLHTTP.")<br />
  }<br />
else<br />
  {<br />
  alert("Your browser does not support XMLHTTP.")<br />
  }<br />
}<br />
</script><br />
</head><br />
<body onload="testXMLHttp()"><br />
<br />
</body><br />
</html>




Sohail


modified 21-Apr-21 21:01pm.

GeneralRe: Accessing COM component from JScript Pin
PriyaJ.220623-Jul-07 21:08
PriyaJ.220623-Jul-07 21:08 
GeneralRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 21:16
User 21559723-Jul-07 21:16 
QuestionPass user defined type array Pin
scheewie20-Jul-07 3:23
scheewie20-Jul-07 3:23 
AnswerRe: Pass user defined type array Pin
sthotakura23-Jul-07 8:02
sthotakura23-Jul-07 8:02 
QuestionHow to include header file "Gdiplus.h" in IDL file Pin
Bidesh Mukherjee18-Jul-07 21:26
professionalBidesh Mukherjee18-Jul-07 21:26 
AnswerRe: How to include header file "Gdiplus.h" in IDL file Pin
User 21559719-Jul-07 20:44
User 21559719-Jul-07 20:44 
Questionwhich coclass in C# COM server is initialized? Pin
George_George17-Jul-07 21:26
George_George17-Jul-07 21:26 
Questionreturning array of BSTRs from the COM component Pin
Raj Prathap17-Jul-07 2:25
Raj Prathap17-Jul-07 2:25 
AnswerRe: returning array of BSTRs from the COM component Pin
Mike Dimmick17-Jul-07 2:52
Mike Dimmick17-Jul-07 2:52 
GeneralRe: returning array of BSTRs from the COM component Pin
Raj Prathap18-Jul-07 20:20
Raj Prathap18-Jul-07 20:20 
QuestionUnable to Start Exchange service Pin
Ashish Vasudev16-Jul-07 23:09
Ashish Vasudev16-Jul-07 23:09 
QuestionApartment (STA) mode before OLE calls Pin
MadmanWoo16-Jul-07 21:03
MadmanWoo16-Jul-07 21:03 
AnswerRe: Apartment (STA) mode before OLE calls Pin
User 21559716-Jul-07 22:58
User 21559716-Jul-07 22:58 
GeneralRe: Apartment (STA) mode before OLE calls Pin
MadmanWoo18-Jul-07 12:41
MadmanWoo18-Jul-07 12:41 
GeneralRe: Apartment (STA) mode before OLE calls Pin
User 21559719-Jul-07 19:44
User 21559719-Jul-07 19:44 
QuestionRegarding COM's Server type(DLL or EXE) Pin
Karismatic13-Jul-07 21:39
Karismatic13-Jul-07 21:39 
AnswerRe: Regarding COM's Server type(DLL or EXE) Pin
Mike Dimmick14-Jul-07 6:40
Mike Dimmick14-Jul-07 6:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.