Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

number of charator in partnumber(ilogic)

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
Darkforce_the_ilogic_guy
360 Views, 2 Replies

number of charator in partnumber(ilogic)

Darkforce_the_ilogic_guy
Advisor
Advisor

I am trying to delevople an complex code that will make Dynamics 365 Business Central work with open with the inventor. one of the thing i need to know is there a way to see how many characters there are in the part number using ilogic?

 
 
 
 
0 Likes

number of charator in partnumber(ilogic)

I am trying to delevople an complex code that will make Dynamics 365 Business Central work with open with the inventor. one of the thing i need to know is there a way to see how many characters there are in the part number using ilogic?

 
 
 
 
Tags (1)
Labels (2)
2 REPLIES 2
Message 2 of 3

JelteDeJong
Mentor
Mentor
Accepted solution

try this:

Dim partnumber = iProperties.Value("Project", "Part Number")
Dim n As Integer = partnumber.length
msgbox(n)

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

try this:

Dim partnumber = iProperties.Value("Project", "Part Number")
Dim n As Integer = partnumber.length
msgbox(n)

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

Message 3 of 3

Darkforce_the_ilogic_guy
Advisor
Advisor

that was what i where looking for thanks

0 Likes

that was what i where looking for thanks

Tags (1)

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report