Search results

  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
  16. =TB=

    SQL results in VB

    Try this MsgBox (YourRs.Fields("StockTakeDate"))
  17. =TB=

    Print a TreeView

    The standard Tree View Control does not support a print method. Easiest way is to print the form it resides on or a more difficult solution would be to try and re-create the information in a seperate report.
  18. =TB=

    msgBox on Report Open!

    Place the code in the OnTimer Event of the form Form Properties > Events > OnTimer Set Timer Interval to 600 and adjust as you feel Form Properties > Events > TimerInterval Or Use a pop up form instead of a message box ######### Edited ########### opps I must be tired thought I was in...
  19. =TB=

    TreeView Control

    I can't see the point to using 2 tables, maybe you have another reason for this. There is also no need to store both the ParentID and ChildID. Just a ParentID, the highest tier parent in the tree will then be any record without a parent defined. I personally found this example a help. kb 209891
  20. =TB=

    Document Upload

    Maybe use the common dialog control to allow users to store the directory path to the document within a table is one thought. Maybe these 2 examples will help point you in the right direction. http://www.access-programmers.co.uk/forums/showthread.php?t=62414...
Back
Top Bottom