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:
Dario Sassi
2017-05-09 11:30:40 +00:00
parent 68ba4b68e7
commit 7cb94d44f8
5 changed files with 86 additions and 21 deletions
+13
View File
@@ -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