Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, I created a webpage for calculating purposes, and I have made a ilogic rule to make and export the parameters, than it opened the results page in a browser. This did work as intended in Inventor 2024.
However something changed in ilogic behavour in 2025 and now it wont open the webpage after its completed.
Imports System.IO
Opendoc = ThisApplication.ActiveDocument
Try
System.Diagnostics.Process.Start("http://server/calculatie2.php?tekening=" & Left(Opendoc.DisplayName,Len(Opendoc.DisplayName)-4))
Catch
MessageBox.Show("Could Not Open WebPage", "iLogic")
End Try
So is there a other way I can redirect to a webpage?
CreateObject("WScript.Shell").Run "https://server/"
Does also not work
Solved! Go to Solution.