OmagCUT 1.8e1 :
- si rimettono i pezzi nel CSV anche se parcheggiati - corretta gestione materiale di progetto diverso da materiale corrente - in modifica grezzo si conservano i pezzi nestati compatibili.
This commit is contained in:
@@ -597,6 +597,19 @@ Public Class CurrentMachine
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Function SetCurrMatByName(sMatName As String) As Boolean
|
||||
' Se stringa vuota
|
||||
If String.IsNullOrWhiteSpace(sMatName) Then Return False
|
||||
' Cerco il nome nella lista dei materiali
|
||||
For Index = 0 To Materials.Count - 1
|
||||
If String.Compare(Materials(Index).sName, sMatName, True) = 0 Then
|
||||
CurrMat = Materials(Index)
|
||||
End If
|
||||
Next
|
||||
Return False
|
||||
End Function
|
||||
|
||||
|
||||
Friend ReadOnly Property bHasRawProbe As Boolean
|
||||
Get
|
||||
Return m_HasRawProbe
|
||||
|
||||
Reference in New Issue
Block a user