Hi everyone

i have written a simple random access file application but was
wondering how to delete a empty record i am using a UDT like
below

VB Code:
  1. Public Type record
  2.         staff_name      As String * 20
  3.         title                  As String * 4
  4.         initials              As String * 4
  5.         status              As String * 1
  6.         room                As String * 5
  7.         telephone        As String * 4
  8.     End Type

any ideas how to delete a blank record

thanks for help people