Failed to load DWG file
Moderators: SDS, support, admin
Failed to load DWG file
Hi,
I'm having trouble to load some of my DWG files.
When the application is trying to loadfile it's like the cadimporter7 dll says there is nothing to load from the file and its the drawing is not empty.
Allot of DWG do work but here is my code how i load the file's in the memory.
Greetings,
Raoul
I'm having trouble to load some of my DWG files.
When the application is trying to loadfile it's like the cadimporter7 dll says there is nothing to load from the file and its the drawing is not empty.
Allot of DWG do work but here is my code how i load the file's in the memory.
Code: Select all
Friend Property cadImageFld() As CADImage
Get
Return Me.Image
End Get
Set(ByVal value As CADImage)
Me.Image = value
End Set
End Property
Private Sub LoadFile(ByVal FilePath As String)
cadImageFld = New CADImage
cadImageFld = CADImage.CreateImageByExtension(FilePath)
If (Not cadImageFld Is Nothing) Then
If CADConst.IsWebPath(FilePath) Then
cadImageFld.LoadFromWeb(FilePath)
Else
cadImageFld.LoadFromFile(FilePath)
End If
End If
End sub
Raoul
Re: Failed to load DWG file
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support