home *** CD-ROM | disk | FTP | other *** search
- //=============================================================================
- // $Id$
- //=============================================================================
-
- /*
- Copyright (C) 1999 Remo Hofer <nucifera@geocities.com>
- For more information see http://www.geocities.com/SiliconValley/Cable/5206/
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
- #include "resources.h"
-
- VERSION ID idVersion "1.02"
- APPLICATIONICONNAME ID idAppName "No Security"
- ICON "icon.bmp"
- SMALLICON "smallicon.bmp"
-
- FORM ID idMainForm AT (0 0 160 160)
- NOFRAME
- USABLE
- NOSAVEBEHIND
- BEGIN
- TITLE ""
- BUTTON "" ID idIconRect AT (30 25 32 32) NONUSABLE NOFRAME
- LABEL "No Security " ID idAppNameLabel AT (PREVLEFT+35 PREVTOP-1) FONT 2
- LABEL "0.00 " ID idVersionLabel AT (PREVLEFT PREVTOP+15)
- LABEL "\251 1999 Remo Hofer" AUTOID AT (CENTER PREVTOP+18) FONT 1
- LABEL "nucifera@geocities.com" AUTOID AT (CENTER PREVTOP+15)
- LABEL "http://www.geocities.com/" AUTOID AT (CENTER PREVTOP+15)
- LABEL "SiliconValley/Cable/5206/" AUTOID AT (CENTER PREVTOP+12)
- BUTTON "About No Security" ID idAboutButton
- AT (CENTER PREVTOP+20 AUTO AUTO)
- BUTTON "Remove Password" ID idPasswordButton
- AT (CENTER PREVTOP+20 AUTO AUTO)
- GRAFFITISTATEINDICATOR AT (152 150)
- END
-
- ALERT ID idPasswordRemovedAlert
- INFORMATION
- BEGIN
- TITLE ""
- MESSAGE "Your system password is removed."
- BUTTONS "OK"
- END
-
- ALERT ID idNoPasswordAlert
- ERROR
- BEGIN
- TITLE "Error"
- MESSAGE "There is no password assigned!"
- BUTTONS "OK"
- END
-
- STRING ID idAboutStr FILE "README.TXT"
-
- //=============================================================================
-