New Blitz Program

Miscellaneous Forums/General Discussion/New Blitz Program

I think you should make a new program that is like c++ were you can program stuff other than games.

Please, please tell me this is a joke.

Ermm.. I don't think he's kidding.

arget: If you're using BlitzMax, you can program whatever you want. Including GUI stuff. In fact, you can program whatever you want anyways without the GUI stuff... just differently.

I think you should make your application in C++, that would fix all your problems.


arget: If you're using BlitzMax, you can program whatever you want. Including GUI stuff. In fact, you can program whatever you want anyways without the GUI stuff... just differently.


*And BlitzPlus if you will not be lazy or slovenly, and use CS_TBL's 'Create Your Own Gadget's' tutorial you can do
just about any GUI thing BlitzMax can (within limitations).

Wait a second: Noel lives?!

Pretend I'm not here.

Be easier if you gouged our eyes out.

Maby so but I am using Blitz Plus and it is very hard to make secure stuff use blitzplus like the pass form I made with it all you have to do to find the pass is change the file name to .txt
(this is when it is a .exe file).

I don't understand what you mean?
Perhaps your security issue is your own problem of storing the pass in the file? Perhaps you just have to write a function to decrypt/encrypt the password?

Security issues that stem from you storing the password in a file are really your own problem. The easiest way to store a password is to run an MD5 hash on it and compare it to an existing MD5'd password. By doing that, the password is not exposed, and in order to generate a duplicate password with the same MD5 you'd have to do some pretty evil things.

Of course, if someone really wanted to get around that, they could just jump the password check and move past it.