Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
You can use the following code for finding the volume serial number of floppy disk and hard disk
*You can use the following code for finding the volume serial number of floppy disk and hard disk
hd=allt(sys(5))
fpno = '!vol '+hd + ' > '+hd+'\'+'fp.txt'
&fpno
mfile1 = hd + '\fp.txt'
mfile2 = hd + '\temp.dbf'
sele 1
create table &mfile2 (desc c(80))
appe from &mfile1 sdf
dele all for recno() # 3
pack
volserialno = allt(substR(desc,25,65))
use
dele file &mfile2
dele file &mfile1
messagebox(volserialno)