To open a new browser with file path

Hi All,

We are using the CALLUI function to open the URL in the next browser. Buts as per the requirement, we need to open the network file path in the new browser:

file:\\Sage\folder\Test\tmp

We are able to open the http path, but when we implement the file path it opens the new browser but it skip ":" i.e colon symbol from the path resulting to access not possible on the browser as shown below.

file\\Sage\folder\Test\tmp

If we manually place ":"after the file in the browser, it open and displays the exact file structure. Refer below screenshot.

Our code snippet is as follow:

Callui RETVALUE="" With "UIAction=" + chr$(1) + "OpenFile",
& "UILocalFile=" + chr$(1) +"file://192.168.0.172/Software/",
& "UILocalDir=" + chr$(1) + "HTTP"

Kindly let us know if we can open the file structure in browser.

Any inputs on this will be highly appreciated.