|
NX Programmierung : externe Exceltabelle in Journalscript ansprechen
UMo am 04.10.2007 um 11:55 Uhr (0)
Danke schon mal, Chris.Mit welcher Biblithek spreche ich denn Microsoft.Office.Interop.Excel... überhaupt an?Imports SystemImports NXOpenImports NXOpen.AssembliesImports system.windows.formsImports ???CSV ist natürlich auch möglich (wenn Excel nicht geht). Da weiß ich aber leider auch nicht, wie ich dran komme.GrußUlrich------------------Ulrich MothesKöln
| In das Form NX Programmierung wechseln |
|
NX Programmierung : externe Exceltabelle in Journalscript ansprechen
UMo am 05.10.2007 um 14:23 Uhr (0)
Vielen Dank, Chris, für die schnelle und gute Hilfe.Dafür hätte ich wohl sonst noch lange suchen müssen.So funktionierts jetzt bei mir mit dem Import aus der Textdatei (.csv): Imports NXOpen Imports System Imports System.IO Wichtig für StreamReader Dim attrib_file As String = "Attribute.csv" Dim input As StreamReader Dim text As String Dim attribute(50) as String Dim w As Integer = 0 input = New StreamReader(attrib_file) While input.Peek () -1 w = w + 1 text = input.ReadLine attribute(w) = text End Whi ...
| In das Form NX Programmierung wechseln |
|
Anzeige:
Anzeige: (Infos zum Werbeplatz)
|