home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2000 February / PCW_2_2000.ISO / software / sw / notfall / xsetpsdk.exe / examples / testplug wrong language.xpl < prev    next >
Encoding:
Text File  |  1998-09-18  |  765 b   |  35 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="7"
  3. "COUNT"="1"
  4. "TEXT 1"="Option 1"
  5. "UIPATH"="Test Plug-ins"
  6. "NAME"="Error: Wrong Language"
  7. "LANGUAGE"="Gnarf Script!"
  8. "DESCRIPTION 1"="This plug-in generates an error because it's language property is not valid."
  9. "AUTHOR"="Xteq Systems"
  10. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  11.  
  12.  
  13.  
  14. 'Called when the Plugin is started
  15. Sub Plugin_Initialize 
  16. End Sub
  17.  
  18.  
  19. 'Called when the Plugin should validate the Data the user has entered
  20. Sub Plugin_CheckData(ElementIndex)
  21. End Sub
  22.  
  23.  
  24. 'Called when the Plugin should apply the changes
  25. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  26. End Sub
  27.  
  28.  
  29. 'Called when the Plugin is about to be removed from memory
  30. Sub Plugin_Terminate 
  31. End Sub
  32.  
  33.  
  34.  
  35.