number of charator in partnumber(ilogic)

number of charator in partnumber(ilogic)

Darkforce_the_ilogic_guy
Advisor Advisor
427 Views
2 Replies
Message 1 of 3

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
Accepted solutions (1)
428 Views
2 Replies
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

Message 3 of 3

Darkforce_the_ilogic_guy
Advisor
Advisor

that was what i where looking for thanks

0 Likes