home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / tools / nosecuri / nosecuri.EXE / resources.rcp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  2.2 KB  |  70 lines

  1. //=============================================================================
  2. // $Id$
  3. //=============================================================================
  4.  
  5. /*
  6. Copyright (C) 1999 Remo Hofer <nucifera@geocities.com>
  7. For more information see http://www.geocities.com/SiliconValley/Cable/5206/
  8.  
  9. This program is free software; you can redistribute it and/or
  10. modify it under the terms of the GNU General Public License
  11. as published by the Free Software Foundation; either version 2
  12. of the License, or (at your option) any later version.
  13.  
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with this program; if not, write to the Free Software
  21. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22. */
  23.  
  24. #include "resources.h"
  25.  
  26. VERSION                ID idVersion    "1.02"
  27. APPLICATIONICONNAME ID idAppName    "No Security"
  28. ICON        "icon.bmp"
  29. SMALLICON    "smallicon.bmp"
  30.  
  31. FORM ID idMainForm AT (0 0 160 160)
  32. NOFRAME
  33. USABLE
  34. NOSAVEBEHIND
  35. BEGIN
  36.     TITLE ""
  37.     BUTTON "" ID idIconRect AT (30 25 32 32) NONUSABLE NOFRAME
  38.     LABEL "No Security   " ID idAppNameLabel AT (PREVLEFT+35 PREVTOP-1) FONT 2
  39.     LABEL "0.00   " ID idVersionLabel AT (PREVLEFT PREVTOP+15)
  40.     LABEL "\251 1999 Remo Hofer" AUTOID AT (CENTER PREVTOP+18) FONT 1
  41.     LABEL "nucifera@geocities.com" AUTOID AT (CENTER PREVTOP+15)
  42.     LABEL "http://www.geocities.com/" AUTOID AT (CENTER PREVTOP+15)
  43.     LABEL "SiliconValley/Cable/5206/" AUTOID AT (CENTER PREVTOP+12)
  44.     BUTTON "About No Security" ID idAboutButton 
  45.         AT (CENTER PREVTOP+20 AUTO AUTO)
  46.     BUTTON "Remove Password" ID idPasswordButton 
  47.         AT (CENTER PREVTOP+20 AUTO AUTO)
  48.     GRAFFITISTATEINDICATOR AT (152 150)
  49. END
  50.  
  51. ALERT ID idPasswordRemovedAlert
  52. INFORMATION
  53. BEGIN
  54.   TITLE ""
  55.   MESSAGE "Your system password is removed."
  56.   BUTTONS "OK"
  57. END
  58.  
  59. ALERT ID idNoPasswordAlert
  60. ERROR
  61. BEGIN
  62.   TITLE "Error"
  63.   MESSAGE "There is no password assigned!"
  64.   BUTTONS "OK"
  65. END
  66.  
  67. STRING ID idAboutStr FILE "README.TXT"
  68.  
  69. //=============================================================================
  70.