Advertisement

[NEWBIE] Can C++ create a password-protected screen saver?

Started by April 15, 2002 06:55 AM
6 comments, last by Apache 22 years, 7 months ago
Hi, I am a newbie in VC++. I wish to create a password protected screen saver which is highly security as compared to any windows password protected screen saver.That means that any user cannot hack into the system until he key in the password.Is there any website or experts who can direct me to some information on these? Hereby, thanks a lot.
What''s wrong with the "password protected" checkbox? I wasn''t aware of any security holes in it...

codeka.com - Just click it.
Advertisement
Do you eaven know what you are doing?

[ my engine ][ my game ][ my email ]
SPAM
Rate me up.
yes, i know i want to create a password protected screen saver? if it is a normal screen saver created with VC++, then what''s the use of creating a screen saver when the user can just press clt-alt-del on the keyboard and will stop the program?i just want to make the screen saver more secure.Can it be done? thanks
Newbie questions in the Beginners forum, please...

[ MSVC Fixes | STL | SDL | Game AI | Sockets | C++ Faq Lite | Boost | Asking Questions ]
quote: Original post by Apache
yes, i know i want to create a password protected screen saver? if it is a normal screen saver created with VC++, then what''s the use of creating a screen saver when the user can just press clt-alt-del on the keyboard and will stop the program?i just want to make the screen saver more secure.Can it be done? thanks


They can''t do anything of the sort.
char a[99999],*p=a;int main(int c,char**V){char*v=c>0?1[V]:(char*)V;if(c>=0)for(;*v&&93!=*v;){62==*v&&++p||60==*v&&--p||43==*v&&++*p||45==*v&&--*p||44==*v&&(*p=getchar())||46==*v&&putchar(*p)||91==*v&&(*p&&main(0,(char**)(--v+2))||(v=(char*)main(-1,(char**)++v)-1));++v;}else for(c=1;c;c+=(91==*v)-(93==*v),++v);return(int)v;}  /*** drpizza@battleaxe.net ***/
Advertisement
We can''t figure out what you are wanting to do. If you want some help, I suggest you go into more detail with your please .

----------------------
Always will be smarter
than you,
--=ME=--
----------------------
Wachar's Eternity <-<-<-<-<- Me own site!
Windows handles screensavers differently than normal programs in that it doesn''t allow Ctrl-Alt-Del workaround.

For some reason my MSDN CD keeps trying to convince me that Visual Basic is the only thing that will write Screen Savers...

I think it is only a .exe changed to a .scr, with a few different handling things. The C++ example I have found I cannot be bothered finding on the CD... If you are trying to write this screensaver without Visual C++, good luck (I doubt you can do it). If you do have Visual C++, search the MSDN library.. there is stuff there...

-Chris Bennett of Dwarfsoft - The future of RPGs GPA Thanks to all the goblins in the GDCorner niche

This topic is closed to new replies.

Advertisement