Search results

  1. M

    Is it possible? Merge 2 lots of data for populating a form.

    Hi, Bascially i have a calendar set up in my DB. The issue is that i now have 2 ways of where Bookings can be made. So what i need to do is get the data from both tables and fill the month calendar form to view. Is there a way that i can merge 2 queries? At the moment i have a single query...
  2. M

    Trigger after delete?

    Hey, Nana Thanks for the response. I ended up manually coding a Right Click menu that deletes then i can trigger what ever i want after wards... :) Thanks for your help. Cheers
  3. M

    Question Restuarant Database

    Hi, Sammy You lost me there with that. You should be able to set the combo box to a query like this. Select foodID, FoodName, FoodPrice from food Well something like that anyway. In VBA columns start off at 0 not 1. So if the combo box actually has 3 columns like above, it is actually column...
  4. M

    Trigger after delete?

    Hi, Banana Ihavnt heard of these.... what do they do? >>BTW, any particular reasons why you aren't using BeginTran, CommitTran, Rollback? I cant seem to find the after delete trigger.... have looked on the net any help would be appreciated. Cheers Tristan F
  5. M

    Question Restuarant Database

    Simply make the Combo box have more then one column and set the column widths to 0. Ounce you have done that click on the combo box go to afterupdate event. go into the vba then you would type something like this depending on your db. txtcost.value = cmbfoodsale.column(2) Cheers Tristan
  6. M

    Trigger after delete?

    Hi, Banna Thanks for your response. Unfortunetly it seems after confirm delete hasnt deleted the data yet. Form update isnt triggering... I feel sad. lol, 4 + hrs ive spent on this. Maybe im doing something wrong. I have a normal transactions form with a datasheet sub form, when i delete on...
  7. M

    Trigger after delete?

    Hi, Basically I have a transactions form, i have a trigger for after update. For the form which executes some query's and gives you the total. But the real issue lies in when i do a DELETE, because i cant get it to trigger the sub routine which stores the quereies calculations to run. So my...
  8. M

    Question Restuarant Database

    Why dont you add another field in called quantity and default the value to 1, so then if they have more then 1 "Coke" they can just rverse tab back or go back and change it to the amount the cusomter is buying. I dont know exactly how you have set this out. But i would most likely do the table...
  9. M

    Sub Forms running horizontally instead of diagonally..

    Ok. Normally you have a subform(normal form view). You can only scroll through the records up and down... What i want to be able to do here is scroll through them horizontally. So the records go across instead of up and down. Cheers Tristan F
  10. M

    Sub Forms running horizontally instead of diagonally..

    Hi, Basically as the title says. Im trying to make a form where the sub forms records scroll across horizontally instead of vertical. Is this possible if so how? Cheers Tristan F
  11. M

    Way to only query Day and month?

    thanks guys... I will check it out brian... Cheers Tristan
  12. M

    Way to only query Day and month?

    Thanks. Sorry for my ignorance, but how would you structure so you get a column that has, dd/mm like this > day(mydate)/month(mydate). Would access handle that properly..? Im just aunable to test now, will check when im home tongiht... Cheers Tristan F
  13. M

    Way to only query Day and month?

    Hi, I was wondering is there a way to only QUERY day and month? dd/MM ? The issue is i need to build a report that has all the accounts opened within a certain month/time period. BUT its not year specific so i would need for instance. 01/02 to 28/02 dd/mm dd/mm Note: The date stored in...
  14. M

    Access 2007 Max Network Users

    Hi, Guys Im just wondering what the maximum number of simultaneous connections to an ACCES 2007 DB over a network,(obviously a mapped drive). I apologize if this is a double post.... Cheers Tristan F
  15. M

    Acess saving fields automatically....

    Thank You Verry Much....
  16. M

    Acess saving fields automatically....

    Hi, Guys Im wondering is there a way to stop access saving fields automatically... Example you open up a form eg.frmEmployees (it has the employees details on it) You click in the address and change it but it was for the wrong person. You click close and IT SAVED IT AUTOMATICALLY :( Cheers...
  17. M

    Simple Timesheet DATABASE

    Hi, Guys I'm building a simple time sheet database for a friend of mine. I know that im going to have trouble checking there amount against the tax table and taking there tax out to finalise the amount they would actually get. So basically im an intermediate access user, how would i get the...
  18. M

    Calendar Database that has multiple entries for 1 day

    Here is a calendar database that has multiple entries for each day.... Can't sort the entries by tiem on each day... if someone can figure this out and change it would be much appreciated... This was originally another guys calendar but was a little messy with the table, query, form namign...
  19. M

    Formatting reports

    Hi, Does anyone know how to use a rich text box in an ms access report and do formatting like 1 word bold the next one not and next line paragraph etc... Or how do i load a specific query in to a word document... The same as a report if you know what i mean... I need to have bold formatting...
  20. M

    Problems with VBA & Queries...!!?

    Thank you for the post was exactly what i was after...... There isn't a shorter way by any chance though...??
Back
Top Bottom