• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

creating compost iproperties

  • Thread starter Thread starter and
  • Start date Start date

and

Guest
is it possible to create an iproperties as a union of two iproperties?
example :
create a new "variable" that calls "translation" so composed:
translations = French + German

in my example :
translation = vis tête ronde bombe bohrschrauben

Immagine 2024-02-02 124216.webp
 
Okay... now it works...
and if you want to transform this solution into a string for an external ilogic rule?
 
I created an external ilogic rule to calculate these attributes... but in case there is no value it blocks me the continuation of the rule.... How can I overcome and tell him if he doesn't find him not to make a mistake and continue?

iproperties.value("custom", "desc.en") = iproperties.value("custom", "English").tostring

iproperties.value("custom", "desc.f") = iproperties.value("custom", "French").tostring

iproperties.value("custom", "desc.d") = iproperties.value("custom", "German").tostring

with this ilogic if there is no "French" value blocks me the ilogic and the "desc.d" does not value me!

Thank you.
 
can insert rows into a try/catch/end try or add an on error resume next : the two options cannot coexist
Code:
'gestione errori completa
try
    messagebox.show(iproperties.value("custom", "propertyname"))
catch
    'in caso di errore
    messagebox.show("manca")
end try

' gestione errori grossolana
on error resume next
messagebox.show(iproperties.value("custom", "propertyname"))
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top