I am reading a table in PSQL v9.1. I want to select certain item numbers out to put in an array to use later in my Crystal Reports as separate subreports. I am a newbie to VB, here is what I have so far:
Please help me, I am at a loss and I have already used up my deadline.
Thanks anyone!
Code:
Dim BOMIems() as String Dim Index as Number Index = 0 Dim TableItem as String TableItem = {ReportRecords.Forkey18_2} Do While {ReportRecords.Forkey5_4} = "F" BOMItems(Index) = TableItem Index = Index + 1
Thanks anyone!
Comment