|
-
Aug 19th, 2002, 05:16 AM
#1
Thread Starter
New Member
Creating File extentions
Does anyone know how to create your own custom file extention for a program that you create? So that when the user save their informations it is readable only by this program.
-
Aug 19th, 2002, 05:47 AM
#2
Hyperactive Member
for the file extension, just make one up. The characters are completely arbitrary. To make it be readable by only yur program, you might want to:
A. But it into a custom UDT and save it for random access. Then, only a program with your UDT could really "read" all of the information.
B. Do a simple XOR encrypt.
C. Convert each char to a pixel in a box, save the picture as 24 bits, then switch screen mode to 24 bits and use Point() to get the actual RGB values perfectly. In 16 or 8 bit screen res they just won't we able to get the char info.
-
Aug 19th, 2002, 05:55 AM
#3
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|