<body>




Autodesk Inventorの掲示板 BBS(Q&A)

Autodesk Inventor、MDT、他CAD に関するご質問などを記入して頂く掲示板BBS(Q&A)です。

投稿できるように治りました。ご迷惑をおかけいたしました。

掲示板の規則
その1、レス頂いた方にお礼の返事をしましょう。
その2、自分の書込みで自分で解決した場合はその方法をみんなに提供しましょう。
その3、誹謗中傷は厳禁です。

浦谷エンジニアリングのホームページへ

  新規投稿 ┃ ツリー表示 ┃ スレッド表示 ┃ 一覧表示 ┃ トピック表示 ┃ 検索 ┃ 設定 ┃ ホーム  
510 / 737 ←次へ | 前へ→

Re:idw⇒Dxf一括変換
 匿名  - 04/7/15(木) 10:23 -

引用なし
   ↓こんなマクロで一括変換できると思いますけど
(IDW をエクスプローラからドラッグ&ドロップで一気に
開いてマクロを実行すると同じフォルダにDXFファイル
ができます)


Public Sub ExportToDxf()
 Set oApp = GetObject(, "Inventor.Application")
 If Err Then
  MsgBox "Inventor must be running."
  End
 End If
 If oApp.Documents.Count = 0 Then
  MsgBox "At leaset one opened document must exist."
  End
 End If
 Dim oDoc As Inventor.Document
 For Each oDoc In oApp.Documents
  If (oDoc.DocumentType <> kDrawingDocumentObject) Then
   MsgBox "Error:Document type is not drawing"
  Else
   Dim sFname As String 'Get document's full file name
   sFname = oDoc.FullFileName
   sFname = Left$(sFname, Len(sFname) - 3) & "DXF" 'Rename extension
   Call ThisApplication.CommandManager.PostPrivateEvent(kFileNameEvent, sFname)
   Call ThisApplication.CommandManager.StartCommand(kFileSaveCopyAsCommand)
  End If
 Next
End Sub

13,158 hits

idw⇒Dxf一括変換 YAMA−Q 04/7/13(火) 12:35
┗ Re:idw⇒Dxf一括変換 Gyako 04/7/14(水) 7:25
 ┗ Re:idw⇒Dxf一括変換 YAMA−Q 04/7/14(水) 10:01
 ┗ Re:idw⇒Dxf一括変換 匿名 04/7/15(木) 10:23

  新規投稿 ┃ ツリー表示 ┃ スレッド表示 ┃ 一覧表示 ┃ トピック表示 ┃ 検索 ┃ 設定 ┃ ホーム  
510 / 737 ←次へ | 前へ→
ページ:  ┃  記事番号:
516114

浦谷エンジニアリングのホームページへ