Search results

  1. L

    Solved Display user who has a record open on continuous form

    so the shared spreadsheet is what the company runs it business from at the moment. what i am doing is migrating from that to an access database when you have multiple people editing a spreadsheet at the same time the user initials are displayed as a overlay with a colourful highlight of the...
  2. L

    Solved Display user who has a record open on continuous form

    I am migrating users from a very large shared multi-user-access spreadsheet to an access database and they have started using the application i have created for beta testing. One of the issues/requests is to have functionality that occurs with shared spreadsheets where each person accessing it...
  3. L

    Continuous Form Date Sorting

    @MajP wow, ok that sounds perfect
  4. L

    Continuous Form Date Sorting

    @MajP looking, thank you
  5. L

    Continuous Form Date Sorting

    @Gasman thanks i'll take a look
  6. L

    Continuous Form Date Sorting

    @Minty i have a reset sort button on the page so thats where i'll put the defaults, and i think you've pretty much answered what i thought which is its not possible to capture the event and override it
  7. L

    Continuous Form Date Sorting

    @Minty thank you, that would at least set the default sorted view but i'm trying to append the RecordID sort bit to any time the user resorts the data themselves. again tbh i'm not sure what i am asking is possible so happy if someone says "nope not possible" but just trying to capture when a...
  8. L

    Continuous Form Date Sorting

    Hi I have a continuous form that is by default sorted by a date field of a record. If a user enters a 10 new records which have the same date the records are sorted in a random order, which i assume is as expected, so as an example: As you can see the last field is the record ID (which is...
  9. L

    Solved Allocate Amounts From Total to Specific Deliveries Multiple Forms and Continuous Form Input

    went a different route which solved all the issues above so i have resolved the issues. i am going to mark this solved because it has been and thank all for the inputs and assistance. if anyone wants to know what i did in the end i can explain but it might be a bit too long to explain
  10. L

    Solved Move To New Record on Continuous Form When You Close Data Entry Popup Form

    awesome thank you, its the acDialog part that pauses things thats good to know i'll look into the naming of the forms etc thanks for the recommendation
  11. L

    Solved Move To New Record on Continuous Form When You Close Data Entry Popup Form

    hey @June7 thanks for the update. The popup form is called as follows: Private Sub btnAddConsignment_Click() DoCmd.OpenForm "form-Consignment", , , , acFormAdd End Sub this creates a new record but doesn't actually add the record to the table till the user hits Save or Save/Exit on the...
  12. L

    Solved Move To New Record on Continuous Form When You Close Data Entry Popup Form

    Hi All I have a continuous form that shows records from a table. There is a button which opens a popup form for data entry. Once the user completes their data entry there is a button to Save/Exit and this requeries the continuous form so the new record is visible, but i would like to move the...
  13. L

    Solved Intermediary Steps in User Data Entry to Gather Data to Use to Create New Table Records

    @Pat Hartman thank you for your response and input it is appreciated
  14. L

    Solved Button on Popup Form To Open Same Form But With New Record

    @arnelgp that is very interesting thank you. i've tested it out and its pretty much exactly what i want to do, it might even mean me re-looking at the ways in which i'm passing data around etc because right now the arguments to open form are quite limiting but if i create the new form the way...
  15. L

    Solved Button on Popup Form To Open Same Form But With New Record

    @LanaR i will still take a look at the course though as i am sure there is tons of useful stuff on it and if it is discounted i will certainly put it to my boss as something that i would benefit from and see if they will fund it
  16. L

    Solved Button on Popup Form To Open Same Form But With New Record

    as an update: DoCmd.Close acForm, "form-Delivery" DoCmd.OpenForm "form-Delivery", , , , acFormAdd, , argumentsString works and achieves what i want the flagging of returns is just indicating which of the associated product records linked to the delivery will be used in the new...
  17. L

    Solved Button on Popup Form To Open Same Form But With New Record

    i think i am probably not explaining things well enough so i will add, i do not need to retain focus on a specific record as i am creating new ones and passing details of things i need to know as arguments to the form open call as i don't need to know anything about the record i'm clicking the...
  18. L

    Solved Button on Popup Form To Open Same Form But With New Record

    may take a while have 1000s of records of test data across 26 tables and all of it has been imported from a live spreadsheet so trying to anonymise it might be tricky, i will try though honestly i am pretty good with doing the stuff if people explain it, i have had the database reviewed by...
  19. L

    Solved Button on Popup Form To Open Same Form But With New Record

    the deliveries are built up of 2 tables: Delivery information - static data that covers all products Product information - 1 or many products delivered to a client When a client rejects product we can deliver it to a second client (usually a market) so we create entirely new sets of static and...
  20. L

    Solved Button on Popup Form To Open Same Form But With New Record

    @LanaR thanks for the response, and whilst you might have described the solution i'm not entirely sure what you mean. at the moment i can create NEW deliveries and all that works fine, just need to understand if i should close the form before the "openform" VBA line to get the process to work...
Back
Top Bottom