Recent content by elsandalos

  1. elsandalos

    Grouping with particular records at the top

    Just the job! Many thanks - much simpler than i thought it would be :rolleyes: El.
  2. elsandalos

    Grouping with particular records at the top

    Hi all, I have a db for logging meeting action points. Each action point has a description and owner. I'd like a query/report which will produce a list of action points grouped by owner (easy), but with a particular owner's action points at the top. Essentially, rather than do a GroupBy and...
  3. elsandalos

    Weird OrderBy problem

    To illustrate this problem, i've attached someone else's example db for sorting which i took off another thread. I wanted to check if my db was corrupt or something. Anyway, all the fields in the Employee table were text, but i changed one (Full Name) to memo, and sure enough, this db now has...
  4. elsandalos

    Weird OrderBy problem

    Hi all, Found a weird problem when editing records in continuous form view (and datasheet view) when a particular memo field is being used by OrderBy to sort the data. When i have just created a new record and tab to the next record, the record i was just in jumps to the top of the records, but...
  5. elsandalos

    Weird - font on text labels gets bolder as i move through records

    fixed! heh, fixed it. Seems that there's a little redraw bug here. All three labels were inside boxes with transparent fill. The only difference between these three and the other labels on the form was that i'd put these on AFTER i drew the boxes. Therefore they were 'in front' of the...
  6. elsandalos

    Weird - font on text labels gets bolder as i move through records

    Hi all, title says it all! I've got a form with numerous controls and labels. When i first open the form, all looks fine - all labels are Black Arial 8 Bold. But when i start scrolling through the records, the text on three of my text labels gets bolder. I haven't a clue what is causing this -...
  7. elsandalos

    formatting..

    I'm trying to use Format and FormatNumber, and getting the same problem. Why does this happen? I'm getting a 'data mismatch' when trying to use a numerical criteria on a query field that uses FormatNumber to change the number of decimal places displayed. FormatNumber is converting the field to...
  8. elsandalos

    Using The Current Value of a field, before it is saved

    That seems to work, but only when you move away from the field. Looks like the record is saved when i leave the field, rather than when i've changed record. Thing is i was using On Change because i wanted the requery to happen whilst i'm still in the field (a live update), but because the...
  9. elsandalos

    Using The Current Value of a field, before it is saved

    Hi all, I've got a subform, fed by a query which contains a lot of calculated fields. All the calculations use the contents of a field on the main form. What i want to do is have a live update, so that if i change the value of the field on the main form, the subform is requeried and the fields...
  10. elsandalos

    Trouble extracting field from table based on 2 criteria

    ok .. but what about the joins in the query? I need two joins really (Principal and Site from one table to another), and i can't set any primary keys on it because none of the columns contain unique values. Pete
  11. elsandalos

    Trouble extracting field from table based on 2 criteria

    Hi all, Been pulling my hair out about this for a while, so i hope someone's feeling kind: I'm using the BHRefPrefix to build part of a reference number. The Principal and Site exist on a separate form, and i need to use both as criteria in order for the correct BHRefPrefix to be returned...
  12. elsandalos

    non-declared variable working

    Nope - Option Compare Database ah - just read the helpfile. Thanks for the pointer! El.
  13. elsandalos

    non-declared variable working

    Hi all, got a weird one here: I've got a popup form whose contents are updated as the records are changed on another form (through Form_Current). This is working ok, but i'm trying to use a public variable so that the main form knows not to invoke a requery on the popup form if it isn't open...
  14. elsandalos

    Criteria and no criteria

    weird - that seems too simple to work, but it does. THANKS! El.
  15. elsandalos

    Criteria and no criteria

    Hi, i'm trying something similar - using the contents of a combo box as a critera in the query which feeds the form. I'm trying to implement an 'all' option in the combo box, which will be used put a like "*" in the criteria, thus displaying all records. The code i'm using in the criteria area...
Back
Top Bottom