Search results

  1. C

    Form Opens Blank for one user

    Hi, I know this has to be something I'm just overlooking. I've asked a couple people to test out my database. I have a form, where they can click a button that opens another form where they can enter some information. but for 1 user, when they click on the button. The other form 'opens' but...
  2. C

    possible to concatenate fields from continuous subform.

    I've been looking at that, but I must just not have understood it, I was looking at the wrong rows. Grrr. khawar Thank You again for all your help with this
  3. C

    possible to concatenate fields from continuous subform.

    Hi Again, Been trying to modify this just a little, on my real database I have a 'main_form' then a subform, and the drop downs are on a subform of the subform. So I'm trying to duplicate this in the example, and reference the forms correctly, but I can't seem to get it. In the module where...
  4. C

    Concatenate Field, order in which items appear

    In the report? I thought I had tried that and it didn't work. I also tried it in the query, the report is based off and didn't work for me there either. oh well, it's working now Thank you for your help.
  5. C

    Concatenate Field, order in which items appear

    That looks great! What did you do?
  6. C

    Concatenate Field, order in which items appear

    Hi, I've created a report where I've concatenate a field to display the many side into 1 field, using the method found here http://support.microsoft.com/default.aspx?scid=kb;en-us;141624 It's all working great, but I need the items in this field to not appear in alphabetical order, like they...
  7. C

    possible to concatenate fields from continuous subform.

    Thanks! I've been able to get it all working and ordered the way I need it! Thanks to everyone who helped with this. I have another question tho, but maybe I should start a new thread.. Here is my latest test db. Take a look at the report, I'm basically doing the same thing. I believe I...
  8. C

    possible to concatenate fields from continuous subform.

    Thanks, this updates the field afterupdate but I noticed that it doesn't list the comments in the order right order. On the other example I was able to sort the query by accending by the ID of the junction table and that fixed it. I'm guessing I could do it here too? Another issues I...
  9. C

    Return to record and subform after requery

    This gives me a Run Time Error'438' Object doesn't support this property or method'
  10. C

    Return to record and subform after requery

    I'm trying to update a txt field on my main form, with the after update of a combo on a subform. I've tried these in the after update Forms("formmain").Recalc << Doesn't seem to do anything Me.Parent.Recalc << Doesn't do anything Forms("Formmain").Form.Requery <<Requeries the whole form...
  11. C

    possible to concatenate fields from continuous subform.

    ugh, I guess it doesn't quite work the way I want. It requeries the form, but takes you back to record 1 of whatever. How do I just refresh the current record?
  12. C

    possible to concatenate fields from continuous subform.

    OK, got it to work using this on the afterupdate of the combo Private Sub Combo0_AfterUpdate() Forms("Formmain").Form.Requery thanks again for all your help.
  13. C

    possible to concatenate fields from continuous subform.

    Ya I just noticed that myself, I made it in a hurry and didn't realize it until after you had replied. This new version works really well, and not much coding needed either. The only thing I have left to do, is make it so the preview window updates after a selection is made. On the...
  14. C

    possible to concatenate fields from continuous subform.

    Thank You for doing this. It's almost working how I need it too. The only thing I noticed is, since the combo box stores the record ID into the table, the preview box is showing just the ID's. So is that what the query in Pat's is used for? To pull the actual text into the preview?
  15. C

    possible to concatenate fields from continuous subform.

    Thanks for trying to help me with this. Where would this code go?
  16. C

    possible to concatenate fields from continuous subform.

    Ok, I put this in a module correct? YourID= would this be the ID of the main record? Me.txtYourID= Is this the name of the text box on the main form? qYourQuery= what query is this? Then on the main form, I call this on the oncurrent? I'm trying this on a sample db right now. I have...
  17. C

    Concatenate fields

    Hi, This sounds like something that I'm trying to do, would you happen to have a sample db you could post?
  18. C

    possible to concatenate fields from continuous subform.

    Thanks for replying, I've been trying to search for examples of this but haven't found any. Do you know of any examples anywhere, where I can see the code I'm not really sure how to do this.
  19. C

    possible to concatenate fields from continuous subform.

    Hi, Not sure if this is possible, been searching and not seeing any threads with this same request. Here is what I have. On my main form, I have a continuous subform where the user selects some phrases from a dropdown. This text will eventually be used on a report. What I would like to...
  20. C

    make visible and change text of field.

    Oh lol, Now it makes sense! I just did that, and it worked great. Thanks to both of you!
Back
Top Bottom