I have a question please:
(Im a new user in xls padlock).
I’m trying to to create a simple save in my workbooks, my goal is to create a situation that all of the saving event’s will be only with my vba code and without your “save as” dialog box.
so I understand that I need to add one of your extension code to do it, so I add this code:
Public Function SaveSecureWorkbookToFile(Filename As String)
On Error GoTo Err
Set XLSPadlock = Application.COMAddIns(“GXLS.GXLSPLock”).Object
SaveSecureWorkbookToFile = XLSPadlock.SaveWorkbook(Filename)
Exit Function
Err:
SaveSecureWorkbookToFile = ""
End Function
but it’s still does not saving, maybe because i’m not using the Filename variable right.
what I need to do please ?
maybe there is a “workbook example” that I can learn from
I have one more question but I will post it in a new topic
thanks
(Im a new user in xls padlock).
I’m trying to to create a simple save in my workbooks, my goal is to create a situation that all of the saving event’s will be only with my vba code and without your “save as” dialog box.
so I understand that I need to add one of your extension code to do it, so I add this code:
Public Function SaveSecureWorkbookToFile(Filename As String)
On Error GoTo Err
Set XLSPadlock = Application.COMAddIns(“GXLS.GXLSPLock”).Object
SaveSecureWorkbookToFile = XLSPadlock.SaveWorkbook(Filename)
Exit Function
Err:
SaveSecureWorkbookToFile = ""
End Function
but it’s still does not saving, maybe because i’m not using the Filename variable right.
what I need to do please ?
maybe there is a “workbook example” that I can learn from
I have one more question but I will post it in a new topic
thanks