I don't know if it helps, if I chime in, too.
If you want one record height to be higher, you have to simply make the design of the report/label higher, the height of the detail band is the height of a record and if it doesn't fill your label sheet fully, then make the report design larger, the only other thing making the output larger is when you specify "stretch with overflow", but that obviously doesn't do the stretching always, only when dataq needs more place. The general size especially with labels is determined by the label type you choose when first creating the label, so that determines the full size of the lbx.
Dan has a nice trick of how to print a current record twice. You have to understand one thing for this: The report or label always uses one table/cursor/view as the main driving cursor. The number of records it has, determines how many times the detail band is printed. Now you can specify another table/alias name for report controls, so the label driving cursor determining the number of records is not pushing in the data, but whatever current record of the alias you use in the report controls is printed multiple times, as the record pointer moves forward in the driving cursor, but stays at the same printed record.
It's a nice trick, but probably not what you want. It's still unclear to me, what you want.
What you're doing can be seen to be wrong, because you can't LOCATE and thereby move to a certain record and then also use a FOR condition. The FOR condition makes the record position jump back to record number 1 and then move to all records fulfilliung the condition you specify, so the previous LOCATE has no effect whatsover, it only makes sure some record with some condition exists, but then the for condition most probably prints other records, that's what Mike already abserved and asked, if you wanted this. Your FOR condition in the LABEL command determines what is printed, not the locate, so thats obviously wrong.
If you want to print the record you found, then specify label FORM C:\BGHsystem\Report\issue.lbx NEXT 1 PREVIEW, no FOR clause. The FOR clause means moving to other records. The FOR clause also does not start searching from the initial position, but FROM top of the table. If you want to have both a certain fullname and a certain datetime, then combine both conditions. You might also combine the LOCATE with other scopes printing from there and further on, eg NEXT 2 prints the found and next record, REST WHILE also is a possible scope printing while a condition holds true, but not FOR.
Bye, Olaf.