Protected VBA and 2003

G

Guest

I hope some one can help me with a problem I have with sharing files. We are
migrating to Excel 2003 and there is an incompatibility problem with locked
VBA files that are shared. To get round this I thought I could unlock the
file in VBA using send keys , then save and close the file in an early
version of Excel, there by making the file universally acceptable, but
although I can run as two separate macros I can’t combine them into one
operation, Can any one help me? below is the code I have created.

Sub UnlockVBA()
With Application
..SendKeys "%{F11}", True
..SendKeys "%Te", True
..SendKeys "fred", True
..SendKeys "~", True
..SendKeys "~", True
..SendKeys "%{F11}", True
End With
End Sub

Sub SaveOldStyle()
Dim fn As Variant
fn = Application.GetSaveAsFilename("MyFileName.xls", _
"Excel files,*.xls", 1, "Select your folder and filename")
If TypeName(fn) = "Boolean" Then Exit Sub
ActiveWorkbook.SaveAs fn, FileFormat:=xlExcel9795
End Sub
 
J

Jim Rech

Perhaps...

Sub UnlockVBA()
With Application
.SendKeys "%{F11}", True
.SendKeys "%Te", True
.SendKeys "fred", True
.SendKeys "~", True
.SendKeys "~", True
.SendKeys "%{F11}", True
End With
Application.OnTime DateAdd("s", 0, Now), "SaveOldStyle"
End Sub


--
Jim
|I hope some one can help me with a problem I have with sharing files. We
are
| migrating to Excel 2003 and there is an incompatibility problem with
locked
| VBA files that are shared. To get round this I thought I could unlock the
| file in VBA using send keys , then save and close the file in an early
| version of Excel, there by making the file universally acceptable, but
| although I can run as two separate macros I can't combine them into one
| operation, Can any one help me? below is the code I have created.
|
| Sub UnlockVBA()
| With Application
| .SendKeys "%{F11}", True
| .SendKeys "%Te", True
| .SendKeys "fred", True
| .SendKeys "~", True
| .SendKeys "~", True
| .SendKeys "%{F11}", True
| End With
| End Sub
|
| Sub SaveOldStyle()
| Dim fn As Variant
| fn = Application.GetSaveAsFilename("MyFileName.xls", _
| "Excel files,*.xls", 1, "Select your folder and filename")
| If TypeName(fn) = "Boolean" Then Exit Sub
| ActiveWorkbook.SaveAs fn, FileFormat:=xlExcel9795
| End Sub
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top