As title, I think XLS suffix excel file into XLSM suffix (excel2007/2010) files, please know the answer, it is best to use a Java implementation
CodePudding user response:
.
In the Java implementation to vb version to ask
CodePudding user response:
I mean can best use Java implementation, namely the VB/VBA is also ok
CodePudding user response:
Set xlapp=CreateObject (" excel. Application ") Set xlbook=xlapp. Workbooks. Open (App) Path & amp; "\ JCD. XLS")
Xlapp. Visible=False
Xlapp. DisplayAlerts=False
Xlbook. Saveas App. Path & amp; "\ JCD. XLSM", fileformat:=52
Xlbook. Close (False)
Xlapp. Quit
CodePudding user response:
The