\'Dim Proc As New Process
\'Proc.File = "\\\\192.168.3.10\\public\\UploadData\\FMEA\\0000201908-0003\\Certification\\检查表.xls"
\'Proc.Verb = "OpenAsReadOnly"
\'\'Proc.Verb = "Open"
\'Proc.Start()
\'
Dim st As String = Tables("FmeaChild").current("Certification")
If st.Contains(vblf) = False Then
st = st & vblf
End If
Dim Proc As New Process
Dim vals() As String = st.Split(vblf)
For Each va As String In vals
If va <> "" Then
va = va.Trim(vblf)
Output.Show(CF_Address & "FMEA\\" & Tables("MainTable").current("Main_ID") & "\\Certification\\" & va)
Proc.File = CF_Address & "FMEA\\" & Tables("MainTable").current("Main_ID") & "\\Certification\\" & va
\' Proc.Verb = "OpenAsReadOnly"
Proc.Verb = "Open"
Proc.Start()
End If
Next