1
 2
 3
 4
 5
 6
 7
 8
 9
10
'How to automatically change the MXMEMORY each time SPSS starts?

'If you have Autoscripting enabled (Edit>Options, Script tab) you can add
'the following To the file Autoscript.sbs (Or whatever file you have Set
'As your Autoscript file) To run your Set mxmemory Command automatically
'This was posted to SPSS newsgroup by John Bauer in Dec 1998

Sub Application_Create()
        objSpssApp.ExecuteCommands "SET MXMEMORY=48000.", True
End Sub