Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can I access ImageWalker programmatically?

0
Posted

How can I access ImageWalker programmatically?

0

ImageWalker supports interaction vie OLE automation. This means you can control it through scripting or Visual Basic. Currently supports only a single method to open a specific folder. The following example will open ImageWalker in ‘c:\’ Click here to test ole automation! The scripting to accomplish this operation is as follows. var obj; obj = new ActiveXObject( “ImageWalkerViewer.ImageWalker” ); obj.OpenFolder(“c:\\”); or in VB: dim obj set obj = CreateObject(“ImageWalkerViewer.ImageWalker” ) obj.OpenFolder “c:\” The following code will open ImageWalker in the same folder as the web page!! dim s s = mid(window.location, 9) While Right(s, 1) <> “/” s = Left(s, Len(s) -1) Wend s = Left(s, Len(s) -1) s = Replace(s, “%20″, ” “) s = Replace(s, “/”, “\”) set objIW = CreateObject(“ImageWalkerViewer.ImageWalker”) objIW.

0

ImageWalker supports interaction vie OLE automation. This means you can control it through scripting or Visual Basic. Currently supports only a single method to open a specific folder. The following example will open ImageWalker in ‘c:\’ Click here to test ole automation! The scripting to accomplish this operation is as follows. var obj; obj = new ActiveXObject( “ImageWalkerViewer.ImageWalker” ); obj.OpenFolder(“c:\\”); or in VB: dim obj set obj = CreateObject(“ImageWalkerViewer.ImageWalker” ) obj.OpenFolder “c:\” The following code will open ImageWalker in the same folder as the web page!!

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123