Re: User-Define Type: object needed error??



"Randy Gardner" <RandyGardner@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
message news:08BCC9E4-EB46-4FFF-80E4-12F7F49948EE@xxxxxxxxxxxxx
Public Type BowRecord
<cut>
' Problem: ********************
BowRecord.Drawlbs = BowValues(I, 1, 0)

You defined a type named 'BowRecord' but that's not a variable...

Dim BR as BowRecord

BR.Drawlbs=BowValues(i,1,0)


--
Reply to the group so all can participate
VB.Net: "Fool me once..."

.