Recent content by =TB=

  1. =TB=

    Columns problem

    Thankyou - I have applied this fix and so far the problem has not reappeared.
  2. =TB=

    Columns problem

    I have a report which is formated into 3 columns, very similar to address labels (though they are not) for some strange reason every now and again it seems to lose its format and reverts to having all the information down one side, I then have to go back into page set up and reset it all. I have...
  3. =TB=

    Transfer Text

    Thanks for the reply. I managed to achieve what I wanted by using the table the text was transfered too as a temporary table then using vba I appended the fields I wanted to a permanent table and picked up the current main forms PK and appended that, then finaly deleted the records within the...
  4. =TB=

    SQL not working properly

    Is the field [bCalPh] a yes/no field? Then value for yes is -1 not YES
  5. =TB=

    Transfer Text

    I am using the following code to transfer text Private Sub cmdImportSerials_Click() DoCmd.TransferText acImportFixed, "ImportSerial", "tblSerialNumber", Application.CurrentProject.Path & "\serial.txt", False Me.Refresh End Sub This works fine, the code is executed via a button on a form and...
  6. =TB=

    Users inputting incorrect data

    This might not be what you want to hear but if users are constantly repeating the same imput errors then maybe you need to completley re-design the form to make it more user friendly. From your post I am not quite sure what exactly what the problem is, maybe it's just me having a bad brain day...
  7. =TB=

    Hide access screen - makes it look like a normal prog.

    I have xp and whenever I have tried to set my reports to Pop Up and Module when hiding the database window as described here it never works. The Report loads hidden and I am left in situation I can only Ctrl-Alt-Del out of. The only thing I have been able to use with this method, that works is...
  8. =TB=

    access 97 out of memory?

    I've never heard of this before with XP, infact the exact opposite - one of the selling points of XP was that it could handle over 512mb of memory unlike 95, 98 and ME. If your motherboard can take that much memory and you are using XP it might be worth looking at other setting as you should...
  9. =TB=

    access 97 out of memory?

    NM shot in the dark, thought it might have been the WIN 9X problem with to much memory.
  10. =TB=

    access 97 out of memory?

    What version of windows are you using?
  11. =TB=

    Print only the last record entered

    Yes should still work, I am though assuming that BloodPressureID is a record number and therfore the highest number will be the last record created.
  12. =TB=

    Print only the last record entered

    Filter the query that feeds the report SELECT TOP 1 BloodPressureID, TodayDate, BloodPressure FROM tblBloodPressure ORDER BY BloodPressureID DESC; In the above query BloodPressureID is ordered Descending showing highest number first, then TOP 1 will show the first record only in the query...
  13. =TB=

    Check Box + Email

    me.checkboxname = true should that not be me.checkboxname = -1 or does True work as well?
  14. =TB=

    DB Window has disapeared and f11 and holding shift will not bypass....HELP!

    Have you tried Window > Unhide
  15. =TB=

    creating a "line total" price in design view

    Set the control Source of the text box =([Unit Price]*[Quantity]) Set the Name of the text box to Line Total
Back
Top Bottom