Results 1 to 3 of 3

Thread: Creating File extentions

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2002
    Posts
    1

    Question 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.

  2. #2
    Hyperactive Member
    Join Date
    Jun 2002
    Posts
    299
    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.

  3. #3
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width