Click here to Skip to main content
15,927,344 members
Home / Discussions / COM
   

COM

 
QuestionPassing array with objects terminates VB6 application Pin
scheewie23-Jul-07 22:53
scheewie23-Jul-07 22:53 
QuestionError reading COM object Pin
MAW3023-Jul-07 17:50
MAW3023-Jul-07 17:50 
AnswerRe: Error reading COM object Pin
User 21559723-Jul-07 18:21
User 21559723-Jul-07 18:21 
GeneralRe: Error reading COM object [modified] Pin
MAW3023-Jul-07 20:07
MAW3023-Jul-07 20:07 
GeneralRe: Error reading COM object Pin
User 21559723-Jul-07 20:59
User 21559723-Jul-07 20:59 
AnswerRe: Error reading COM object Pin
Mike Dimmick24-Jul-07 2:08
Mike Dimmick24-Jul-07 2:08 
GeneralRe: Error reading COM object Pin
MAW3024-Jul-07 16:23
MAW3024-Jul-07 16:23 
GeneralRe: Error reading COM object Pin
MAW3025-Jul-07 14:42
MAW3025-Jul-07 14:42 
GeneralRe: Error reading COM object Pin
User 21559725-Jul-07 20:32
User 21559725-Jul-07 20:32 
GeneralReally basic Automation question Pin
hairy_hats23-Jul-07 4:26
hairy_hats23-Jul-07 4:26 
GeneralRe: Really basic Automation question Pin
User 21559723-Jul-07 5:28
User 21559723-Jul-07 5:28 
GeneralRe: Really basic Automation question Pin
Roger Broomfield2-Aug-07 21:22
Roger Broomfield2-Aug-07 21:22 
QuestionAccessing COM component from JScript Pin
PriyaJ.220622-Jul-07 23:36
PriyaJ.220622-Jul-07 23:36 
AnswerRe: Accessing COM component from JScript Pin
User 21559723-Jul-07 0:53
User 21559723-Jul-07 0:53 
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 

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.