Bugs item #745587, was opened at 2003-05-29 17:58
Message generated for change (Comment added) made by drieseng
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=745587&group_id=54790

Category: None
Group: None
>Status: Closed
>Resolution: Out of Date
Priority: 5
Submitted By: Martin Hanson (martin-hanson)
Assigned to: Nobody/Anonymous (nobody)
Summary: Slingshot doesn't translate AxSHDocVw GUID reference right

Initial Comment:
Slingshot doesn't translate the AxSHDocVw GUID 
reference correctly. It translates it as 
Interop.AxSHDocVw.dll. The correct translation (at least 
on my machine) is AxInterop.SHDocVw.dll.

I worked around this problem by changing the "Guid" 
switch block in the Value property implementation in 
Reference.cs of Slingshot FROM:

case "Guid":      // COM interop
  result = "Interop." + (string)_Navigator.Evaluate("string
(@Name)");
  break;

TO:

case "Guid":      // COM interop
  string name = (string)_Navigator.Evaluate("string
(@Name)");
  if(name == "AxSHDocVw")
  {
    result = "AxInterop.SHDocVw";
  }
  else
  {
    result = "Interop." + name;
  }
  break;


----------------------------------------------------------------------

>Comment By: Gert Driesen (drieseng)
Date: 2004-08-02 14:49

Message:
Logged In: YES 
user_id=707851

slingshot has been deprecated

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=474851&aid=745587&group_id=54790


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
NAntContrib-Developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nantcontrib-developer

Reply via email to