F
forcefield via AccessMonster.com
I have a table with 3 fields :- ID, Class and FName,
My continuous form (which has Fname and Class fields) is bound to a query
“qryTblNameClassâ€
The SQL for the query is
SELECT tblNameClass.Class, tblNameClass.FName
FROM tblNameClass
GROUP BY tblNameClass.Class, tblNameClass.SName
ORDER BY tblNameClass.Class, tblNameClass.FName;
What I would like to do is to group the same class and show its running
serial number on the left of the continuous form.
I trying putting a textbox on extreme left of the the continuous form detail
section to show me the running serial number
Eg 1 Bioclass 2 John
2 BioClass 2 Peter
3 BioClass 2 Janet
1 PhyClass 1 Bill
2 PhyClass 1 Ben
1 ChemClass 1 Julie
I tried putting in the detail section a unbound textbound =[CurrentRecord]
or =Dcount( ) I got error message #Name? .
Any Idea?
My continuous form (which has Fname and Class fields) is bound to a query
“qryTblNameClassâ€
The SQL for the query is
SELECT tblNameClass.Class, tblNameClass.FName
FROM tblNameClass
GROUP BY tblNameClass.Class, tblNameClass.SName
ORDER BY tblNameClass.Class, tblNameClass.FName;
What I would like to do is to group the same class and show its running
serial number on the left of the continuous form.
I trying putting a textbox on extreme left of the the continuous form detail
section to show me the running serial number
Eg 1 Bioclass 2 John
2 BioClass 2 Peter
3 BioClass 2 Janet
1 PhyClass 1 Bill
2 PhyClass 1 Ben
1 ChemClass 1 Julie
I tried putting in the detail section a unbound textbound =[CurrentRecord]
or =Dcount( ) I got error message #Name? .
Any Idea?