Hi all
I'm working on a SolidWorks macro that exports DXFs. My problem is that, I only managed to make it work by closing the plan and then reopening it before doing the export.
I had managed to get the dxf recording to work without closing the plan but it only works once, for example if I restart the macro in a row it will go wrong
Here is the excerpt of my macro which really does a lot of other things but here I put you the export part of the DXF
Thank you
Function SaveDrawingAsDXF(swDrawing As ModelDoc2, saveFolderPath As String, value As String, indexValue As String) As String
Dim dxfFileName As String
Dim fullDXFPath As String
Dim status As Boolean
Dim lErrors As Long
Dim lWarnings As Long
Dim sheetNames As Variant
Dim dxfSheetName As String
Dim i As Integer
Dim swModelDocExt As ModelDocExtension
' Formater le nom du fichier DXF avec l'extension en majuscules
dxfFileName = UCase(Trim(value)) & "-" & Trim(indexValue) & ".DXF"
fullDXFPath = saveFolderPath & dxfFileName
' Afficher le chemin pour débogage
Debug.Print "Enregistrement DXF dans : " & fullDXFPath
' Vérifier que le document est bien actif
If swDrawing Is Nothing Then
MsgBox "Erreur : Aucun document actif.", vbExclamation
SaveDrawingAsDXF = ""
Exit Function
End If
Set swModelDocExt = swDrawing.Extension
' Récupérer les noms des feuilles
sheetNames = swDrawing.GetSheetNames
' Chercher la feuille DXF
dxfSheetName = ""
For i = 0 To UBound(sheetNames)
If InStr(LCase(sheetNames(i)), "dxf") > 0 Then
dxfSheetName = sheetNames(i)
Exit For
End If
Next i
' Si aucune feuille DXF trouvée, sortir de la fonction
If dxfSheetName = "" Then
SaveDrawingAsDXF = "" ' Sortir sans message ni erreur
Exit Function
End If
' Vérifier si le fichier DXF existe déjà et le supprimer
If Dir(fullDXFPath) <> "" Then
On Error Resume Next
Kill fullDXFPath
On Error GoTo 0
End If
' Activer la feuille DXF
swDrawing.ActivateSheet dxfSheetName
' Enregistrer le dessin en DXF
status = swModelDocExt.SaveAs(fullDXFPath, swSaveAsVersion_e.swSaveAsCurrentVersion, swSaveAsOptions_e.swSaveAsOptions_Silent, Nothing, lErrors, lWarnings)
If status = False Then
MsgBox "Erreur lors de l'enregistrement du DXF : " & lErrors & " (Warnings: " & lWarnings & ")", vbExclamation
SaveDrawingAsDXF = ""
Else
SaveDrawingAsDXF = fullDXFPath
End If
End Function