home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / sourcecode / various / defpref.amos / defpref.amosSourceCode
AMOS Source Code  |  1993-01-08  |  640b  |  30 lines

  1. '********************************************************
  2. '*                     DefPref.AMOS                     *
  3. '*               ï¿½1992 by Volker Stepprath              *
  4. '*  Change the System-Configuration in Defaultsettings  *
  5. '********************************************************
  6. '
  7. Amos To Back 
  8. Wait 50
  9. '
  10. '**** Memory for Preferences-Datas ****  
  11. '
  12. BUFFER$=Space$(232)+Chr$(0)
  13. '
  14. '**** Install defaultsettings **** 
  15. '
  16. Areg(0)=Varptr(BUFFER$)
  17. Dreg(0)=Len(BUFFER$)
  18. XDEFPREF=Intcall(-126)
  19. '
  20. '**** Set defaultsettings **** 
  21. '
  22. Areg(0)=XDEFPREF
  23. Dreg(0)=Len(BUFFER$)
  24. Dreg(1)=True
  25. XSETPREF=Intcall(-324)
  26. '
  27. Wait 200
  28. '
  29. Amos To Front 
  30. Edit