Home Contest Entries Sponsors


Rules
Prizes
Contest Q&A
Submission Tips


 
Submission Tips
 





Copyright - ReadMe

Be sure to include your copyright notice and a ReadMe file.

Entries without an Open Source Copyright included will not be published.

Your copyright can be in:
The beginning of your source code.
In your help file, or About notice.
In your ReadMe.
A seperate License file.


Entries without a ReadMe.
Publishing entries without a ReadMe file will be delayed.
The discription of your application, posted publicly, will be extracted from your ReadMe.



Top

Support Files

If your application uses support files and keeps them in sub-folders, short path names should be used.

FUNCTION GetShortPathName$(lPath$)

    lPath$  = lPath$+chr$(0)
    sPath$  = space$(256)
    lenPath = len(sPath$)

    calldll #kernel32, "GetShortPathNameA",_
                        lPath$ As ptr,_
                        sPath$ As ptr,_
                       lenPath As long,_
                             r As long

    GetShortPathName$=left$(sPath$,r)

END FUNCTION


As an example:
My game SuperCraps has a seperate folder for High Scores file and it also has a has a seperate for BMPs.

Instead of
Open "\HighScores\HighScores.dat",
use
filePath$=DefaultDir$+"\HighScores\"
Open GetShortPathName$(filePath$)



Top

Ready?


Before pressing Submit:

  1. Copyright and ReadMe in place?
  2. Did you make all path calls relative?
  3. Have you included all support files?
  4. Should you test your application one more time?
Yes, I'm ready to submit my entry.



Top



Copyright © 2004 All rights reserved.
last aktualization: 10/23/04