Search results

  1. N

    Referring to a form with Form("FormName")

    Hi, Yeah, I've done it in a very similar way! Not ideal but it works which is all that counts! Thanks for the help, nry
  2. N

    simple tasks..

    Dapple, in all of these posts, I don't think any of us know what you are actually trying to create! Any chance of you posting what you are trying to do, with a list of what tables(and their fields and field types) you currently have (and maybe any relationships you have between tables?)... I...
  3. N

    wrap your brain around this one

    Stupid OutlookXP won't let me open the DB as it is 'potentially unsafe' ! I've posted elsewhere to see if I can force it to let me open it! nry
  4. N

    wrap your brain around this one

    Hell yeah, why not! not_rich_yet@btinternet.com nry
  5. N

    wrap your brain around this one

    Simply, Access won't let you create a Many-Many relationship, only a many to one or a one to one....you said that you have a many to many within Access but I don't know how: "Actually the tables are normalized. There is a **many-to-many relationship** between the three tables, but four isn't...
  6. N

    How do you remove right-click option

    Open the form in design view. Right click on the the topmost right square of the form and choose the properties option: you may be able to get the form properties via a menu when the form is open in design view. One of the properties you can set is 'Shortcut Menu'. Set this to 'No' and users...
  7. N

    wrap your brain around this one

    Hmm, to what normal form level are they normalised? Currently, every device you have in the system can appear possibly infinite times in the device table, as a seperate record of each device is required every time a device is loaned: this is not an ideal situation and I'd guess it may make...
  8. N

    wrap your brain around this one

    Hmm, let me get this right: A participant goes to an event At an event, a participant may be given one or more devices. In which case, I'd hazard a guess that your DB isn't normalised correctly. I think you still have some many-many type relationships in there, and addition of one or more...
  9. N

    Referring to a form with Form("FormName")

    Hmm, no, according to Access VBA Help, Forms() can be used with the form index, form name or a string representing the form name.... ActiveForm won't work because I have hmm, around 12 forms open at once! nry
  10. N

    Update value on form dependent upon which form subform was opened from..

    I think I originally misunderstood what you meant! I think the use of Forms("FormName") may be the neater way to do this, but for the life of me i can't work it out... I've just tried you're suggestion and had no hassles so for now guess which way I'm gonna use! Ta, nry
  11. N

    Referring to a form with Form("FormName")

    Not much help really, as it doesn't cover what I want to do: I open a subform via a button from one of many main forms. I then wish to have the subform update a value on the mainform, but this mainform is one of many so the subform needs to know which main form to update, hence cannot use the...
  12. N

    Referring to a form with Form("FormName")

    Hi all, I have a subform which can be opened via a button from numerous main forms. I need to access the main form from the subform to update a value on the main form based on what the user has done with the subform. I created a textbox on the subform, which gets it's text value set when the...
  13. N

    Update value on form dependent upon which form subform was opened from..

    Presumably then, I can then use the value from the textbox to refer back to the form FormB was opened from? I can't suss the syntax to do this though, any ideas? nry
  14. N

    Update value on form dependent upon which form subform was opened from..

    If that makes sense? Say I have numerous forms, all of which can open FormB. These numerous forms can all open FormB via a button click. I create a value on FormB which I would like added to a value on the form which FormB was opened from. Beyond creating a seperate FormB for each of the...
  15. N

    Reference to Control on Nested Subforms - My brain is going to explode!

    Try using the expression builder as this cannot get the names wrong...all those !!! and [][][] get me confused with nested nested stuff! nry
  16. N

    Button to open one form and close other

    Didn't work for me....the new form loaded but the original form didn't close...possibly because it lost focus? Anyhow, after a bit of searching I used the 'IsOpen' function from the Northwind Database..... nry
  17. N

    Button on main form to delete record on subform

    Not quite.....I have several subforms on my main form. Each subform represents a possible appointment and it's time for a given date. I have a button that allows me to set every appointment as a 'holiday' (to set staff holidays) but I also want a button that allows me to reset every...
  18. N

    Customising Jet Error messages

    I do need a seperate subform for each time slot since I want all possible time slots to be visible on the screen regardless of whether or not the time slot has an appointment. The screen layout needs to look as close as possible to the current paper based appointment book which has a list per...
  19. N

    Button on main form to delete record on subform

    Can I do this? ie click a button on the main form to delete a record on a subform? Ta, nry
  20. N

    Button to open one form and close other

    Hi, I can get a button to open a form and get a button to close a form. Thing is, I want the button to open one form and close itself...if that makes sense? eg form1 has a button on it. When clicked, I want to open form2 and close form1 I've tried using the forms LostFocus property and also...
Back
Top Bottom