Hi
My goal is to create the table like that:
Transit AssetType Charges
80000 1 200
90000 2 300
85000 1 250
I have my transits in one recordset. I take one value at the time, pass it to another function that retrieves the AssetTYpe and charges for particular transit and stores it in another recordset. Then I move on to the next transit.
The workflow is this:
Select Transits into rst_transits
Do Unitl rst_transits.EOF
param = rst_transits("Transit_No"
call AnotherFunction()
rst_transits.MoveNext
Loop
Function AnotherFunction(Transit_No)
Select AssetType, Charges where transit = param
Create HTML table that looks like the one above.
PLEASE, help me with this....as I really have a critique deadline for this and don't have a time to study this myself.
Thanks...
My goal is to create the table like that:
Transit AssetType Charges
80000 1 200
90000 2 300
85000 1 250
I have my transits in one recordset. I take one value at the time, pass it to another function that retrieves the AssetTYpe and charges for particular transit and stores it in another recordset. Then I move on to the next transit.
The workflow is this:
Select Transits into rst_transits
Do Unitl rst_transits.EOF
param = rst_transits("Transit_No"
call AnotherFunction()
rst_transits.MoveNext
Loop
Function AnotherFunction(Transit_No)
Select AssetType, Charges where transit = param
Create HTML table that looks like the one above.
PLEASE, help me with this....as I really have a critique deadline for this and don't have a time to study this myself.
Thanks...