Want's to add one simpel calculation into iLogic, but how?

Want's to add one simpel calculation into iLogic, but how?

BRLMCHKD
Advocate Advocate
391 Views
3 Replies
Message 1 of 4

Want's to add one simpel calculation into iLogic, but how?

BRLMCHKD
Advocate
Advocate

Screencast 10.07.2018_Cl09.57.jpg

0 Likes
392 Views
3 Replies
Replies (3)
Message 2 of 4

bradeneuropeArthur
Mentor
Mentor

Hi,

 

Could you please explain a little more?

What do you need and what do you want to do?

 

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 4

BRLMCHKD
Advocate
Advocate

Screencast 10.07.2018_Cl_11.15.jpg

0 Likes
Message 4 of 4

bradeneuropeArthur
Mentor
Mentor
Public Sub main()

Dim LinerDia As Double
LinerDia = 114.3
Dim LinerTck As Double
LinerTck = 11
Dim LinerDiaMacnhinedMin As Double
Dim LinerDiaMacnhinedMax As Double

LinerDiaMacnhinedMin = LinerDia - 2 * (LinerTck * 0.7)
LinerDiaMacnhinedMax = LinerDia - 2 * (LinerTck * 0.2)


MsgBox LinerDiaMacnhinedMin
MsgBox LinerDiaMacnhinedMax

Dim result As Double
result = InputBox("Choose between ")
If result < LinerDiaMacnhinedMax And result > LinerDiaMacnhinedMin Then

Else
result = InputBox("Choose between ")
End If


MsgBox result

End Sub

Regards,

Autodesk Software: Inventor Professional 2018 | Vault Professional 2018 | Autocad Mechanical 2018
Programming Skills: Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Dimension Component! | Partlist Export! | Derive I-properties! | Vault Prompts Via API! | Vault Handbook/Manual!
Drawing Toggle Sheets! | Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes