home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Plus 2007
/
Programmer-Plus-2007.iso
/
Programming
/
Visual Basic new SourceCode and Projects
/
Barcode Generator 2.0
/
DBModule.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
BASIC Source File
|
2000-06-22
|
387 b
|
13 lines
Attribute VB_Name = "DBModule"
Public Type DBcode
FullCode As String * 13
Country As String * 15
Manufacturer As String * 20
Product As String * 20
PicPath As String * 512
End Type
Function GetPosition(text As String) As Long
GetPosition = CLng(Mid$(text, 2, (InStr(1, text, ">") - 2)))
End Function