Search results

  1. B

    Sequential Numbering with a difference!

    In the format field of the Autonumber properties. Set this format to the number you want to start at. i.e. \10 or \20 or \1000
  2. B

    Serious Issue ...

    References. I know that reference have been mentioned but hpw about this 1. Microsift DAO 2.5/3.51 Compatability Library. This can be found in the following place (possibly) C:\Program Files\Common Files\Microsoft Shared\DAO\DAO2535.TLB I will also attach it if it is not there. Also. I had...
  3. B

    auto delete record button

    Why not just use this. Docmd.setwarning false docmd.openquery "DELETEQUERYNAME" YOUR IMPORT ROUTINE docmd.setwarnings true
  4. B

    Unrecognized database format

    Try this......... This little tool lets you compact and repair a lot of corrupted databases. There has only been 1 db that I have not been able to use this on. The Jetcu4 file is for Access 2000. might work for 2003.
  5. B

    Sending files through Lotus Notes on XP

    This is the code that I am using. Like I said, it works in Win 98 & 2000, so I don't want to change it too much. Public Sub EmailSociety(ToAddress As String, FromAddress As String, Subject As String, BodyText As String) 'Package these files. Dim strFilename As String...
  6. B

    Sending files through Lotus Notes on XP

    I am trying to send an email from and Access Form through Lotus Notes. This works without any problem on Windows 98 & Windows 2000, but when I try it on Windows XP, I get the following error message. This Email could not be sent. Please contact your System Administrator with the following...
  7. B

    Filter - Subform _ Query , Multiple Combo Box

    Just add a command button.... Add a command button on the subform to open up the selected record.
  8. B

    multiple search criteria

    Here is the example form that I mentioned Just look at the attachment.
  9. B

    Report Height Property

    Yes it is possible - BUT....... there is a fair bit of meesing about. I have done a 10 page report in 1 using sub-reports and page breaks. Sorry, but I don't have the db anymore as it was no longer required.
  10. B

    multiple search criteria

    Instead of a Subform.... Use a Text box to create your query upon clicking the button. I will try and find and example of this for you. Just need to remember which of the db's I support uses it.
  11. B

    Filter - Subform _ Query , Multiple Combo Box

    I have some examples of drop-down boxes. I have uploaded them. Hope they help.
  12. B

    .MDE database

    That's what I thought. It was worth asking though. Thanks anyway.
  13. B

    .MDE database

    I have been asked to look at a .mde database but the user cannot find the .mdb file. Is there any way of unlocking this file???????????
  14. B

    Data analysis issue

    Did that work? I sent the db back to you this morning. Did it work?
  15. B

    Opening Form error

    Look at the query there will be a prompt asking for the number. Do you need to put the number in?
  16. B

    Data analysis issue

    Check your Private Messages. Email address is in there.
  17. B

    Data analysis issue

    Ok. To start, run queries to put the information into 1 table. In this part, you could break down the fault code into 2 fields using a Left function. Then run the query on this 1 table to get the totals using Sum on the BOG and TRD fields. Then use this query to run the report and in the...
  18. B

    Data analysis issue

    How many tables is your original query looking at? :confused:
  19. B

    Macro to switch Link table from Test to Prod server

    This is for ORACLE but may help. We use this on one of our systems. Look at the attached file. Hold down the shift key when going in as the AUTOEXEC is still active . we use the Oracle ODBC Drivers, so it may be different for SQL Server.
  20. B

    Subtract one field from another to make a third field in a query?

    Try this..... You will possibly need to run a query within a query. Query 1 to get the Sum of the Qty Delivered. Query 2. Using Query 1 and the original tables, you will then be able to use the following :- QuantityRemaining: [Quantity]-[SumOfQtyDelivered] Hope this helps.
Back
Top Bottom