CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE
Over 1.096.000 registered users (EN+CZ). AutoCAD tips, Inventor tips, Revit tips. Try the new precise Engineering calculator and the updated Barcode generator. New AutoCAD 2026 commands and variables.

CAD tip CAD tip # 10114:

Question

CAD 
 %  platform  category 
A
Using the following variants of iLogic code you can return different values for the "True" and "False" conditions in your macros - i.e. if a given condtion is met or not met:

'Input data

Dim msg as String = ""

Dim condition As Boolean = True

'Variant #1

If condition Then

msg = "Truth"

Else

msg = "Lie"

End If

MsgBox(msg)

'Variant #2

msg = If(condition, "Truth", "Lie")

MsgBox(msg)

'Variant #3

MsgBox(If(condition, "Truth", "Lie"))

Inventor
100% *CAD
27.11.2014    10969×  
applies to: Inventor ·

See also:
Tip 14359:Automatic macro execution when opening a CAD file (AutoCAD, Inventor, Max, PowerMill)
Tip 13884:How to send e-mails with an iLogic macro?
Tip 13852:How to bulk-update all model parameters?
Tip 13744:Simple password protection of Inventor documents (iLogic).
Tip 13611:BOM with multi-line items in Inventor.


Back    All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD: 
OS: 
Categ: 
Text:
 FAQ
  



Featuring:
Export 3D VRML scenes from AutoCAD and Inventor
VRMLout More info


Please use these tips at your own risk.
ARKANCE is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist