Ok this may sound strange but I have an app that pulls records form a DB then puts them in a string ready for me to send out :) yay
works fine but now i want to add 2 records at the top of the report every time so record 1 and record 2 are allways going to be the same.
now when it pulls back the reporting data from the database i get
fixed recored count = 1
fixed recored count = 2
new record from db = 1
new record from db = 2
new record from db = 3
new record from db = 4
new record from db = 5
and so on
i want it to start at 3 so it all looks nice and clean at the end.
the only string i have set so far is
intFileCount = intFileCount + 1
so it goes up in 1's
is there a command to say go up in 1's starting at 3??
Many thanks guys