back to Table of Contents


FreeBufFindID (function)

This function will return the next unused find data ID. This is similar to the FREEFILE function for file access numbers. Each buffer can manage upto 100 find datas, starting with ID number 1 and counting up to number 100.

If you use this function or if you manage the 100 find datas yourself in your program is up to you. However, library code should always use this function to avoid conflicts with ID numbers already used by the main program code.


SYNTAX:

findID% = FreeBufFindID% (buf$())

INPUTS:

buf$() (STRING array)


RESULT:

findID% (INTEGER)


NOTES:


back to Table of Contents