Help for this page

Select Code to Download


  1. or download this
    Dim Part, FeederType
    If Library.FindPart (Recipe.Placements(0).PlacementPart.Part.Name, Par
    +t) Then
       FeederType = Part.Value ("FEEDERWIDTH", "Default value goes here")
       MsgBox "Feeder type: " & FeederType
    End If
    
  2. or download this
    my ($Part, $FeederType);
    for my $placement (in $Recipe->Placements)
    ...
             $FeederType = $Part->Value("FEEDERWIDTH", ""); 
        }
    }