Errors with some file types to GetModel

Forum for reporting problems
Post Reply
theleepiper
Posts: 0
Joined: Thu Apr 27, 2023 5:18 pm

Errors with some file types to GetModel

Post by theleepiper »

Hello:

Problem: Errors when opening IGES and GLM files with ModelPath. No model shown. Error for IGES shown in the image below.
Dev: VB6
DGKC: KerCADe.ocx (x86); 7.1.5370.0; 4/19/2023; Size 1,141,760 bytes

I built a very simple test project. Form, KernelCAD object, and command button. Code below:

Code: Select all

Private Sub cmdOpen_Click()
    CommonDlg.FileName = ""
    Call CommonDlg.ShowOpen
    If (CommonDlg.FileName <> "") Then
        KernelCAD1.ModelPath = CommonDlg.FileName       ' works: MDG, WRL, STEP, STL; fails: IGES, GLM
    End If
End Sub
Thanks for any assistance you can offer. Nice job!

Regards,

Don
ErrorMessage.PNG
ErrorMessage.PNG (4.36 KiB) Viewed 13695 times

nickz
Site Admin
Posts: 236
Joined: Fri Jul 26, 2013 3:58 am

Re: Errors with some file types to GetModel

Post by nickz »

Sorry about that, Don
I see the problem. It was also confirmed at this thread. We are working on that.
Thank you for reporting.

nickz
Site Admin
Posts: 236
Joined: Fri Jul 26, 2013 3:58 am

Re: Errors with some file types to GetModel

Post by nickz »

This has been fixed in today's 5371 update: Downloads.

Thanks for your patience.

Post Reply