Message 1 of 4
Problem: iLogic won't work on other workstations

Not applicable
02-14-2017
04:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So any code that looks into a part from an assembly works perfectly fine on my computer but when one of my coworkers tries to run the exact same program, it won't work at all. No error, it just catches when trying to reference the model in an assembly.
Here is an example:
SyntaxEditor Code Snippet
Dim model As String = ThisDoc.Document.DisplayName & ".ipt" Try radius = Parameter(model, "radius") ReverseInt = Parameter(model, "ReverseInt") Catch MessageBox.Show("Model name does not match the assembly name: " & model,"Z-Rib Placement Error") Return End Try
As I said, this works perfectly fine on my computer but when I run it on someone else's, it doesn't.
Also I should note that this is not an external rule. It's all local to the assembly.