BUG: Visual InterDev 6.0 or Visual J++ 6.0 Crash when Editing HTML with RDS ObjectsID: Q200683
|
You may encounter "random crashing" with Visual InterDev 6.0 or Visual J++ 6.0 when editing Active Server Pages (ASP) or HTML pages that have HTML <OBJECT> references to RDS DataControl objects (CLSID:BD96C556-65A3-11D0-983A-00C04FC29E33). Here's a sample error message:
Devenv.exe Exception: access violation (0xc0000005), Address: <address>
The crash will occur if the RDS DataControl parameters (Server, Connect, SQL) are specified using the <PARAM> tag as in the following example:
<OBJECT classid="CLSID:BD96C556-65A3-11D0-983A-00C04FC29E33"
ID=Authors height=0 width=0
PARAM name=Server value="http://myserver"
PARAM name=Connect value="dsn=pubs;uid=***;pwd=***;"
PARAM name=SQL value="SELECT * FROM Authors"
</OBJECT>
To work around this bug, specify these properties in script, as in the following example:
<OBJECT classid="CLSID:BD96C556-65A3-11D0-983A-00C04FC29E33"
ID=Authors height=0 width=0
</OBJECT>
<SCRIPT Language=VBScript>
Authors.Server = "http://myserver"
Authors.Connect = "dsn=pubs;uid=***;pwd=***"
Authors.SQL = "SELECT * FROM Authors"
Authors.Refresh
</SCRIPT>
Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.
Additional query words: kbDSupport
Keywords : kbVisID kbVJ600 kbVS600bug
Version : WINDOWS:2.0,6.0
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: February 10, 1999