Skip to content

Commit

Permalink
Fix export of table data macros
Browse files Browse the repository at this point in the history
Fixing issue #324 on the master branch.
  • Loading branch information
joyfullservice committed Apr 29, 2022
1 parent 5651b87 commit d3d2f5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Version Control.accda.src/modules/modVCSUtility.bas
Original file line number Diff line number Diff line change
@@ -194,7 +194,11 @@ Public Sub SaveComponentAsText(intType As AcObjectType, _

Case acTableDataMacro
' Table data macros are stored in XML format
If FSO.FileExists(strFile) Then SanitizeXML strFile
If FSO.FileExists(strTempFile) Then
SanitizeXML strTempFile
If FSO.FileExists(strFile) Then DeleteFile strFile
FSO.MoveFile strTempFile, strFile
End If

Case Else
' Handle UCS conversion if needed

0 comments on commit d3d2f5c

Please sign in to comment.