|
Inventor : Excelliste gleichzeitig in allen Komponenten löschen?
daywa1k3r am 10.05.2007 um 14:00 Uhr (0)
Also die Excel-Leiche ist über die API nicht zu greifen. Die Frage ist wie Inventor darauf kommt, dass da was verknüpft ist / war? Die Antwort bekommst du wenn du die Datei mit dem Texteditor öffnest und nach x l s suchst. Ganz unten erscheint dann: E i g e n e D a t e i e n I n v e n t o r l o k a l e r A r b e i t s b e r e i c h V A 2 l o k a l e r A r b e i t s b e r e i c h G a s v e r t e i l u n g A n l a g e n v e r r o h r u n g . x l s Und die Bytes aus der Datei zu löschen ohne zu wisse ...
|
| In das Form Inventor wechseln |
|
Inventor : 3d punkte in excel datei exportieren
daywa1k3r am 14.03.2007 um 14:41 Uhr (0)
Hier mal schnell gekritzelt. Die Ausgabe kannst du dann in eine Excel Tabelle einfügen.Code:Public Declare Function ShellExecute Lib "shell32.dll" Alias _ "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation _ As String, ByVal lpFile As String, ByVal lpParameters _ As String, ByVal lpDirectory As String, ByVal nShowCmd _ As Long) As Long Sub Export_Workpoints() If (ThisApplication.ActiveDocumentType kPartDocumentObject) Then MsgBox ("Bauteil öffnen") E ...
|
| In das Form Inventor wechseln |
|
Inventor : Excel oder IV9, was is mit du?
daywa1k3r am 01.06.2005 um 16:58 Uhr (0)
Probier mal diese Zeile: Code: Sub test() On Error Resume Next ThisApplication.ActiveDocument.ReferencedOLEFileDescriptors(1).Delete End Sub HTH ------------------ Grüße daywa1k3r FX64 Software Solutions Mold&More Software Solutions [Diese Nachricht wurde von daywa1k3r am 01. Jun. 2005 editiert.]
|
| In das Form Inventor wechseln |
|
INVENTOR VBA : Hilfe ! Stückliste per VBA
daywa1k3r am 08.07.2003 um 15:53 Uhr (0)
A) Must du dein [url] Tag schliessen, wenn du möchtest dass der Link funktioniert. B) Das Programm BOM macht ganz was anderes (Excel Export). ------------------ Grüße daywa1k3r
|
| In das Form INVENTOR VBA wechseln |
|
Inventor : Hilfe ! Stückliste per VBA
daywa1k3r am 08.07.2003 um 15:53 Uhr (0)
A) Must du dein [url] Tag schliessen, wenn du möchtest dass der Link funktioniert. B) Das Programm BOM macht ganz was anderes (Excel Export). ------------------ Grüße daywa1k3r
|
| In das Form Inventor wechseln |
|
Inventor VBA : Plottdatum
daywa1k3r am 19.06.2007 um 16:32 Uhr (0)
Stimmt, sind sogar aufgelistet: Zitat:AutoOpen This macro is run automatically when the document it is contained within is opened. AutoNew This macro is run automatically when a new document is created from a template. For this macro to be used, it must exist within the template file. AutoSave This macro is run automatically whenever the document it is contained within is saved. AutoClose This macro is run automatically whenever the document it is contained within is closed. AutoEdit This macro is run when ...
|
| In das Form Inventor VBA wechseln |
|
Inventor .NET : Macro .net funktioniert seit upgrade nicht mehr
daywa1k3r am 08.09.2009 um 16:03 Uhr (0)
Hallo,existiert die Datei sPath & "contenuto cartiglio.xls" (bzw. den Wert der Variable sPath prüfen)?Wenn da alles klar ist, dann ist es wohl ein Excel Problem.Und vorallem wie lautet denn die Fehlermeldung? ------------------Grüße IgorFX64 Software Solutions - Inventor Tools
|
| In das Form Inventor .NET wechseln |
|
Inventor : Farbe von Importteilen
daywa1k3r am 10.08.2006 um 14:45 Uhr (0)
Hi Leo, Dein Bauteil öffnen ALT + F11 (Macro Editor öffnen) Links in ApplicationProject / Module1 den Code Kopieren (FaceColor) Mauszeiger in das Macro platzieren und F5 drücken Schauen obs passt Wenn war unklar sein sollte, weißt du wo du mich findest------------------Grüße daywa1k3rFX64 Software Solutions
|
| In das Form Inventor wechseln |
|
Inventor : Excel-Embedding mit VBA öffnen
daywa1k3r am 10.02.2003 um 18:23 Uhr (0)
Code: *************************************Excel Dateien**************** Public objExcel As Excel.Application Public objWorkbook As Excel.Workbook Public objWorksheet As Excel.WorkSheet ****************************************************************** ... On Error Resume Next Set objExcel = GetObject(, "Excel.Application") If Err.Number Then Err.Clear On Error Resume Next Set objExcel = CreateObject("Excel.Application") If Err.Number Then Err.Clear MsgBox "Du nix E ...
|
| In das Form Inventor wechseln |
|
INVENTOR VBA : Inventor und Excel
daywa1k3r am 16.10.2003 um 10:59 Uhr (0)
Hallo, Extras / Verweise / Microsoft Excel 9.0 Object Libary einbinden. Code: Public Sub test_Excel_out() ********************************** Excel ******************* Dim objExcel As Excel.Application Dim objWorkbook As Workbook Dim objWorksheet As WorkSheet ************************************************************ On Error Resume Next Set objExcel = GetObject(, Excel.Application ) If Err.Number Then Err.Clear On Error Resume Next Set objExcel = CreateObject( Excel.A ...
|
| In das Form INVENTOR VBA wechseln |
|
Inventor VBA : Probleme mit Excel
daywa1k3r am 05.05.2008 um 11:00 Uhr (0)
Hallo Stefan,ich quote mich mal selbst: Zitat:Original erstellt von daywa1k3r:Dann fehlt bei dir ein Verweis auf die Excel-Bibliothek. Ein Verweis auf die Microsoft Excel 11.0 Object Library------------------Grüße IgorFX64 Software Solutions
|
| In das Form Inventor VBA wechseln |
|
Inventor VBA : Probleme mit Excel
daywa1k3r am 05.05.2008 um 11:31 Uhr (0)
Das ist ja auch normal, sofern Excel nicht läuft. Aber diese Ausnahme ist ja mit On Error Resume Next abgefangen. Anschließend soll das Makro versuchen Excel zu starten (da keine laufende Excel Instanz gefunden wurde). Daher finde ich das ein wenig merkwürdig dass du da eine Fehlermeldung bekommst (was eigentlich wegen On Error Resume Next gar nicht sein dürfte). ------------------Grüße IgorFX64 Software Solutions
|
| In das Form Inventor VBA wechseln |
|
Inventor VBA : Probleme mit Excel
daywa1k3r am 07.02.2008 um 16:42 Uhr (0)
Dann fehlt bei dir ein Verweis auf die Excel-Bibliothek. ------------------Grüße IgorFX64 Software Solutions
|
| In das Form Inventor VBA wechseln |