Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
| firma:tipps_inventor [2025/10/17 09:43] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | firma:tipps_inventor [2025/10/17 09:43] (aktuell) – ↷ Seite von tipps:tipps_inventor nach firma:tipps_inventor verschoben uwe-handzik | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | h1. Inventor | ||
| + | |||
| + | Alles zum Thema Inventor | ||
| + | |||
| + | h1. Interessantes in der API | ||
| + | |||
| + | h2. Dokumenten SubType ermitteln | ||
| + | |||
| + | 'Check to see if part is a sheetmetal part | ||
| + | If (oDoc.SubType <> " | ||
| + | |||
| + | https:// | ||
| + | |||
| + | ---- | ||
| + | |||
| + | h1. Inventor 2014 | ||
| + | |||
| + | h2. Lizenzierung ändern | ||
| + | |||
| + | Umstellen der Lizenzierung | ||
| + | |||
| + | | ||
| + | SOFTWARE\ | ||
| + | | ||
| + | Inventor\ | ||
| + | | ||
| + | | ||
| + | 2 = Einzelplatz | ||
| + | |||
| + | Eine LICPATH.LIC | ||
| + | | ||
| + | |||
| + | SERVER 192.168.2.104 000000000000 | ||
| + | USE_SERVER | ||
| + | | ||
| + | oder mit der ADSKFLEX_LICENSE_FILE | ||
| + | |||
| + | | ||
| + | Software\ | ||
| + | FLEXlm License Manager] | ||
| + | | ||
| + | |||
| + | --- | ||
| + | |||
| + | h1. Inventor 2015 | ||
| + | |||
| + | h2. Lizenzierung ändern | ||
| + | |||
| + | Umstellen der Lizenzierung | ||
| + | |||
| + | | ||
| + | SOFTWARE\ | ||
| + | | ||
| + | Inventor\ | ||
| + | | ||
| + | | ||
| + | 2 = Einzelplatz | ||
| + | |||
| + | Eine LICPATH.LIC | ||
| + | | ||
| + | |||
| + | SERVER 192.168.2.104 000000000000 | ||
| + | USE_SERVER | ||
| + | | ||
| + | oder mit der ADSKFLEX_LICENSE_FILE | ||
| + | |||
| + | | ||
| + | Software\ | ||
| + | FLEXlm License Manager] | ||
| + | | ||
| + | |||
| + | ---- | ||
| + | |||
| + | h2. Gewinde in Zeichnungsableitung | ||
| + | |||
| + | |||
| + | Die Gewinde Darstellung soll als Vorgabe aktive sein ! | ||
| + | |||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | RegistryVersion19.0\ | ||
| + | Applets\ | ||
| + | DrawingLayout\ | ||
| + | Preferences\ | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | |||
| + | ---- | ||
| + | |||
| + | h2. Blatt in ISO Ansicht setzen | ||
| + | |||
| + | |||
| + | So gehts in die ISO | ||
| + | | ||
| + | Sub DrawingIsoView() | ||
| + | Dim v As View | ||
| + | Set v = ThisApplication.ActiveView | ||
| + | Dim c As Camera | ||
| + | Set c = v.Camera | ||
| + | c.ViewOrientationType = kIsoTopRightViewOrientation | ||
| + | c.ApplyWithoutTransition | ||
| + | End Sub | ||
| + | |||
| + | und so wieder zurück | ||
| + | |||
| + | Sub DrawingNormalView() | ||
| + | Dim v As View | ||
| + | Set v = ThisApplication.ActiveView | ||
| + | Dim c As Camera | ||
| + | Set c = v.Camera | ||
| + | c.ViewOrientationType = kFrontViewOrientation | ||
| + | c.ApplyWithoutTransition | ||
| + | End Sub | ||
| + | |||
| + | [[http:// | ||
| + | |||
| + | |||
| + | h1. Inventor 2016 | ||
| + | |||
| + | h2. Lizenzierung ändern | ||
| + | |||
| + | |||
| + | Umstellen der Lizenzierung | ||
| + | |||
| + | | ||
| + | SOFTWARE\ | ||
| + | | ||
| + | Inventor\ | ||
| + | | ||
| + | | ||
| + | 2 = Einzelplatz | ||
| + | Eine LICPATH.LIC | ||
| + | |||
| + | | ||
| + | |||
| + | SERVER 192.168.2.104 000000000000 | ||
| + | USE_SERVER | ||
| + | | ||
| + | oder mit der ADSKFLEX_LICENSE_FILE | ||
| + | |||
| + | | ||
| + | Software\ | ||
| + | FLEXlm License Manager] | ||
| + | | ||
| + | |||
| + | |||
| + | ====== IDW ====== | ||
| + | |||
| + | |||
| + | ===== Gewinde in Zeichnungsableitung ===== | ||
| + | |||
| + | Die Gewinde Darstellung soll als Vorgabe aktive sein ! \\ \\ | ||
| + | |||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | RegistryVersion20.0\ | ||
| + | Applets\ | ||
| + | DrawingLayout\ | ||
| + | Preferences\ | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | |||
| + | |||
| + | ===== Blatt in ISO Ansicht setzen ===== | ||
| + | | ||
| + | So gehts in die ISO | ||
| + | | ||
| + | Sub DrawingIsoView() | ||
| + | Dim v As View | ||
| + | Set v = ThisApplication.ActiveView | ||
| + | Dim c As Camera | ||
| + | Set c = v.Camera | ||
| + | c.ViewOrientationType = kIsoTopRightViewOrientation | ||
| + | c.ApplyWithoutTransition | ||
| + | End Sub | ||
| + | |||
| + | und so wieder zurück | ||
| + | |||
| + | Sub DrawingNormalView() | ||
| + | Dim v As View | ||
| + | Set v = ThisApplication.ActiveView | ||
| + | Dim c As Camera | ||
| + | Set c = v.Camera | ||
| + | c.ViewOrientationType = kFrontViewOrientation | ||
| + | c.ApplyWithoutTransition | ||
| + | End Sub | ||
| + | |||
| + | [[http:// | ||
| + | |||
| + | |||
| + | ---- | ||
| + | |||
| + | |||
| + | h1. Inventor 2017 | ||
| + | |||
| + | Umstellen Netzwerk Einzelplatz o.ä. | ||
| + | |||
| + | " | ||
| + | |||
| + | --- | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||