- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I will explain this the best I can.
I am setting up some standard bolts, I would like to create a form where someone could select bolt size, (3/4-10)
Length (2,2 1/4, etc) and grade (Grade 5 or 8) This way they would not have the scroll through all the options when I have the one column with all the information. This is part of what I have for now, this includes all bolt options 1/4 - 1"
If DescriptionBolt = "HEX BOLT 3/4-10 X 2 1/2 GR.5" Then
LENGTH = 2.5
THREADLENGTH = .75
SLOTPATTERN = 3
HEADTHICKNESS = .46875
DIAMETER = .75
HEX = 1.125
boltpartnumber = "HB-NC.75-10X2.5 GR5"
Feature.IsActive("Thread3") = True
Feature.ThreadDesignation("Thread3") = "3/4-10 UNC"
End If
If DescriptionBolt = "HEX BOLT 3/4-16 X 2 1/2 GR.5" Then
LENGTH = 2.5
THREADLENGTH = .75
SLOTPATTERN = 3
HEADTHICKNESS = .46875
DIAMETER = .75
HEX = 1.125
boltpartnumber = "HB-NC.75-16X2.5 GR5"
Feature.IsActive("Thread3") = True
Feature.ThreadDesignation("Thread3") = "3/4-16 UNF"
End If
Can do something like:
If DescriptionBolt = "HEX BOLT 3/4-10 and Length = Length and grade = grade then
BOLTDESCRIPTION = HEXBOLT 3/4-10 X "LENGTH" X "GRADE"
If I selected 3/4-10, 2 1/2, and Grade 5
I would like the description to look like this - HEX HEAD BOLT 3/4-10 X 2 1/2 GR5
I would have 3 multi line parameters named DescriptionBolt, Length. and Grade
I need some help on setting this up to work. Did I explain this ok?
Thank you
Solved! Go to Solution.