Error after upgrading to 2.1

kchriste

New member
I get now the following error after I have upgraded to 2.1:
Access violation at address 067CD90E in module ‘GXLSForm.dll’. Read of address 0000010C

Please help !

Best regards
 
What is your Excel version and Windows version?

What is your Excel bitness (32-bit or 64-bit)? See our website about how to get it.

Areyou using any antivirus or protection software with some sandbox feature? If yes, what is the name of this software?
 
Hi

I am running windows 7 64 bit and excel 2010 32 bit
I had no problems with version 2.0
I have AVG internet security enabled for computer, web browsinf, identity, email and firewall.
I downloaded and installed the new 2.1 32 bit version and did not disable AVG.

The error comes when I get to line 4: Call
XLSPadlockVBA = XLSPadlock.PLEvalVBA(ID, Param1)​

Public Function CallXLSPadlockVBA(ID As String, Param1)
Dim XLSPadlock As Object
Set XLSPadlock = Application.COMAddIns(“GXLSForm.GXLSFormula”).Object
CallXLSPadlockVBA = XLSPadlock.PLEvalVBA(ID, Param1)
End Function​

Regards
Kim
 
Would it be possible for you to send us your compiled workbook file?

If yes, you can zip it and upload it to http://demo.ovh.eu/en

This is a free and ad-free hosting service: after upload, they will give you a URL.
Please send me this URL by PM so I can download the Zip archive.

Thank you!
 
The problem is the following
I just compiled the workbook, and the result is good. The compiled workbook is working without any issues.

The real problem is, that I get the error it when I am running the source excel workbook !
This is a major problem for me as I can not work on my source anymore.

How can we solve this problem. ?
Is there a way I can revert back to 2.0 ?
Regards
kim
 
I have compiled a file called test for you. The link is sent to your info email account.
As I said this file is working on my system but source file does not.

Regards
 
Thank you. In fact, the compiled workbook seems to open fine.
Are you calling any VBA compiled macro in some Excel events like workbook_open?
Actually, if you were able to provide a source workbook that shows the problem, it would be really helpful. Otherwise, we can’t reproduce the problem…

In the meanwhile, you can try to replace the faulty code with:
Code:
Public Function CallXLSPadlockVBA(ID As String, Param1)
On Error Resume Next
Dim XLSPadlock As Object
Set XLSPadlock = Application.COMAddIns("GXLSForm.GXLSFormula").Object
If XLSPadlock = Null Then
CallXLSPadlockVBA = ""
Exit Function
End If
CallXLSPadlockVBA = XLSPadlock.PLEvalVBA(ID, Param1)
End Function
You can also download old versions of XLS Padlock from our website at http://www.xlspadlock.com/account
Choose Registered Downloads.
 
Back
Top