Search results

  1. P

    Question replace input email address with mailto address

    Glad to be able to help! Yes, Hampshire born and bred ...
  2. P

    Question replace input email address with mailto address

    I think if you store the data in the TABLE as a hyperlink then when you click it it should open up an email in your default mail program? enter the data as mailto:me@hotmail.com or get user to enter just me@hotmail.com then run an update query on the table to add the "mailto:" prefix to each...
  3. P

    Splitting database in 3

    I have tried to extract the relevant Form and Code to the attached database. Hopefully you'll understand what's going on, but to make it work you'll need to create a few databases (all copies of the same original, with different names) and park this FE and all the BE's to a folder called...
  4. P

    Question Time format changes in edit mode

    Seems like the Time() function overrode the Input Mask setting!
  5. P

    Question Time format changes in edit mode

    ok try Default Value = Left(Time(),5) Just tried it and it seems to work.
  6. P

    Splitting database in 3

    OK ... I had some help from this Forum creating what I call a "Database Switcher" utility. This varies from your requirement insofar as what I needed was simply to change the NAME of the linked _BE file as I have a FE Database that needed to link to multiple Client BE's (to safely segregate...
  7. P

    Question Exporting to Excel changes field value

    You could perhaps export the data from a QUERY (based on the Table) rather than the TABLE itself??
  8. P

    Question Time format changes in edit mode

    What format is the Field in the underlying table, where the Date is actually stored??
  9. P

    Question Copy A Folder To Location Selected By The User

    Cleverer people than me will give you the solution you've asked for ... all I would ask is why you are managing files in this way? This simplest route to glory is for all users to use a common folder on their hard drive or for you all to use the same BE on a shared server. This way no-one has...
  10. P

    Missing Check Boxes In Multivalued Fields

    It's not at all clear from your text where the "check box" comes into play. Can you give a little more detail?
  11. P

    Splitting database in 3

    I would say:- 1) You certainly don't need another database 2) The BE doesn't even need to be read-only 3) You can effectively control what the Client views, edits, or adds by use of Forms restricting which tables (and which fields within the table records) they can add or edit data Hope this...
  12. P

    Question Export "Query or Report" to a "Delimited Text File"

    If using Access 2003 :- File>Export>Enter File Name>Save as Type>Text Files>Export All>Delimited>Next>Include Field names on First Row>Next>Finish
  13. P

    Combine new records

    Use individual APPEND queries to map and import data from your various data sources. To avoid reading in duplicate records, link the Source Data table to the Database table using one or more (unique) fields and using the IsNull criteria against those same fields in the Database table.
  14. P

    Question strSQL = Run Time Error 3075 Syntax Error Missing Operator in qry Expr

    '(tblMasterPersonnel.FirstName)="042" Or (tblMAsterPersonnel.EmpID)="044"))'. Try removing the last ")", as above, possibly even the one before as well ...
  15. P

    Report and Subreport Totals

    So, just so I understand, your subreport calculates and displays the correct value ... and you want a Text Field in the Main Report to display that same total is a pre-determined place?
  16. P

    Printed reports aren't the same using Access Runtime 2007

    Could be that different printers are causing the issue? To test, point the Runtime and the Full Licence at the same network printer as see if there's still a difference?
  17. P

    Missing Data Report Need Ideas on how to do this

    I would take steps to ensure that each record in each of the 265 expected files has a text field which identifies which team (from 001 to 265) has submitted the data. Plus, and additional text field indicating which Month each record belongs to e.g. 2012_07, 2012_08, etc. With these two fields...
  18. P

    Random Sub-form Linking Error

    I wonder, is the blank required field being using as a Parent field on the Main Form to link to a Child field on the Sunform? This might explain the symptom at least ...
  19. P

    Import Excel & Create New Table

    Certainly, in earlier versions to 2010, you would as part of the routine be asked to create a NAME for the table and then get a confirmation/successful message. Are you getting these messages?
  20. P

    Question strSQL = Run Time Error 3075 Syntax Error Missing Operator in qry Expr

    Have you simply omitted an "=" sign? Current coding: 'tblMasterPersonnel.FirstName"042" Or (tblMasterPersonnel.EmpID)="044"))' Amended coding: 'tblMasterPersonnel.FirstName="042" Or (tblMasterPersonnel.EmpID)="044"))'
Back
Top Bottom