Search results

  1. mark curtis

    Help with combo box and query...

    first you do not need the relationship as it is just a table to populate a combo box. if you dont want to store the code then change the properties of the combo to bound field 2 assuming that the code is 1 and detail is 2.
  2. mark curtis

    after update

    go to the properties of the combo box on the after_update event me.subform.requery or use me.subform.refresh
  3. mark curtis

    decimal places

    Cheers
  4. mark curtis

    decimal places

    Dear all, I have a form with some text boxes on with the properties as gen number and dec places set to 2 but i still get data such as 1.22223333 or 1.7766335 What is going on?
  5. mark curtis

    Questionnaire or Contracts Examples

    Dear all, All I am looking to put a database together that lets a user create a contract using the db forms and I was wondering if anyone had any examples of contracts or questionnaire table design/example db? One other main thing I need to do is store calculated vales and then write them to a...
  6. mark curtis

    submit button vb code

    zip up the db and it will be looked at!
  7. mark curtis

    HELP, form transitions

    References were missing and a form named wrong. Attached is repaired copy.
  8. mark curtis

    Creating a Report

    try to compact the db via the tool bar then zip it to here else send me the db mark_curtis_69@yahoo.com
  9. mark curtis

    report based on drop down list

    Create a combo box and either populate it direct or via a table. in the query refrer to the combo box!
  10. mark curtis

    Difference between 2 databases

    In a nutshell No! My advice is use the best and ditch the other. Users will moan a little but will get over it!!
  11. mark curtis

    Run-time, App-specific license checking?

    if u develop the db as a runtime with Office developer then distribute as a runtime there are no licencing issues as the developer edition covers this.
  12. mark curtis

    Please Help!!!

    why dont you do the following: Send the users straight to a form with the two unbound text boxes and then use a subform based on the query results. You can then either clear the sub form with code or use requerycos the table will be refreshed as opposed to refresh that only refreshes the form.
  13. mark curtis

    The old chestnut - DATES!! (Not US format)

    This could be your machine set up and not the applications, get into control panel!!
  14. mark curtis

    Sorry but I have to post this again - i'm stuck

    Thanks all. I have written it in vba instead!
  15. mark curtis

    Sorry but I have to post this again - i'm stuck

    another zip another
  16. mark curtis

    Sorry but I have to post this again - i'm stuck

    Dear all, I have a cross tab query that returns monthly data by year. There is also a field where users place a one off project cost. What I want to do is only show the one off cost once in the query basicall if the report runs more than 1 year i only want to show the one off cost in the last...
  17. mark curtis

    Challenge of the day

    Dear all, I have a cross tab query that returns monthly data by year. There is also a field where users place a one off project cost. What I want to do is only show the one off cost once in the query basicall if the report runs more than 1 year i only want to show the one off cost in the last...
  18. mark curtis

    Alias

    How can I alias: PIVOT tblFinancials.FY In ("1","2","3","4","5","6","7","8","9","10","11","12"); where 1=jan, 2=feb...........
  19. mark curtis

    Delete Problem

    search here for bookmark
  20. mark curtis

    Formatting a field in the report

    put this in a new text box control source: ="*" & [ProductID] & "*"
Back
Top Bottom