Search results

  1. D

    Need help!

    Make sure your table or query in the row source includes the two columns then change the bound column to 2. It’s a visual thing really.
  2. D

    Experts- Need Knowledge & Advice

    It is better practice not to use variant where possible use control or textbox instead.
  3. D

    Save Paper Size in Access Runtime

    Here is the complete paper size constants: 'Paper Sizes Private Const DMPAPER_LETTER = 1 ' Letter 8 1/2 x 11 in Private Const DMPAPER_LETTERSMALL = 2 ' Letter Small 8 1/2 x 11 in Private Const DMPAPER_TABLOID = 3 ' Tabloid 11 x 17 in Private Const...
  4. D

    Save Paper Size in Access Runtime

    I have knocked some code together which may work in the runtime version. I have modified the code from A Code A day for the basic structure and added a default printer function from Albert D.Kallal. Note this just a basic function to show you how you could go about it not a complete code to...
  5. D

    Problem creating MDE

    Recreate the textbox and combo as stated (Don't just copy and paste). Also try: Me.[txtNumber1].value = Me.[cboSurname1].Column(1)
  6. D

    Problems with Hide/Show DbWindow

    I'm telling :p
  7. D

    Problem creating MDE

    I agree it might be a refrences issue. Note this applies under the add-ins restrictions. You might want to change the priority of some or the references. Also sometimes I find you need to write a refrenced properties in full i.e. VBA.DateTime.Date rather than just Date.
  8. D

    Closing Access

    Note: This begins the close process it does not destroy the window immediately. Bare this in mind if you want to open Access shortly after.
  9. D

    Continuous form - won't distinguish between records...

    :confused: That exactly what I think she wants.
  10. D

    Problems with Hide/Show DbWindow

    Well if you had bothered then you would realise this is not simply about hidding the access window (that is easy) it about showing the forms ontop (so they look like standalone interfaces) at the same time. That is the whole issue with reports they can't be popups. You need to think before you...
  11. D

    Problem creating MDE

    "Important Some restrictions may prevent you from saving your database as an MDE file: · If your database is secured with user-level security, you must meet certain criteria. · If your database is replicated, you must first remove replication system tables and properties. · If your database...
  12. D

    Problem creating MDE

    Repair the database before compiling. It might be a system object that is corrupted.
  13. D

    Continuous form - won't distinguish between records...

    Labels don't have a source that's why they are labels. Use the on current event to update the label txt.
  14. D

    Problem creating MDE

    To unhide db objects go to Tools -> Options -> View. In the show options chech hidden objects.
  15. D

    Access 2000 versus 2003

    If it ain't broke don't fix it. The company I last worked at the larger holding company suddenly decided that all the businesses had to have office 2000 for no good reason. This caused a lot of havoc, and many people were left with something they either couldn't use or was inadequate. I know...
  16. D

    Problems with Hide/Show DbWindow

    You don't have to use selectobject to do this anyway. If you hadread the code properly you would use this method: Call fSetAccessWindow(1) 'show or Call fSetAccessWindow(2) 'maximize He didn't ask for this however he asked whether you can display reports without having the access window open.
  17. D

    Find whole word matches in two strings?

    Well this is not how you search databases for one, like you say it is very process intensive. What are you trying to do compare each record field with the search string or compare one record field with the search string?
  18. D

    Problems with Hide/Show DbWindow

    If you have used the code to hide the access window then you would know selecting the report is not the problem, it is making it display topmost of the mdi parent window. The only mdi child windows which display topmost to a mdi application window are popup and dialogue this is fact. Mdi stands...
  19. D

    Use same data for all records

    I don't understand why you don't want to use the security. You can leave the passwords blank. You can create four user groups: dogs, cats, fish and admin.
  20. D

    Print out with fieldnames

    If it is just the names you want, then go into datasheet view. Select the first row. File -> Print -> Selected Record(s). Then you can choose your own orientation fit to page, etc.
Back
Top Bottom