here is the new verstion of the dll commards are:
messagebox
will open a message box has an input of a string for the message.
e.g. messagebox "hello"
errorbox
will open an error box has an input of a string for the message.
e.g. errorbox "file not found"
yesnobox
opens a yes no box and will return a 1 has an input of a string for the message.
e.g. print yesnobox("do you like dbpro")
conbox
Confirmation box will open has an input of a string for the message.
e.g. conbox "hello"
opendia
will open an open dialog and return the location of the file. a
$=opendia(dir$,filetype$,title"
e.g. print opendia("c:","txt","find an txt file")
savedia
will open an save dialog and return the location of the file.
a$=savedia(dir$,filetype$,title"
e.g. print savedia("c:","txt","find an txt file")
strword=returns string and has 2 inputs will get a word out of a string
word 1=0 and so on
a$=strword(string$,0)
e.g. print strword("hello my name is,1) this will print the word 'my'
stringget=returns int(string,letter as string)
will return the number of letters in the string
e.g. print stringget("hi henry","h")
that will return an 2 for the 2 letter h's in the string
you install it the same as all dll's