Search results

  1. taicho

    Explicitly Reference Control on Continuous Subform

    Hi All! Quick question: If I have a continuous subform with and I had a control (textbox) named "myTxt" how would I refer to the "myTxt" control in x record on the continuous subform... i.e. Record 1> [Date] [Something] [myTxt] Record 2> [Date] [Something] [myTxt] Record 3> [Date] [Something]...
  2. taicho

    Internet Explorer 7 search provider / Firefox search engine

    I use Access World Forums search all day long...Has anybody found a way to add the search here as a "search provider" in IE even though there is no query string? -Tai
  3. taicho

    Layers...in...forms...

    Alright now I searched the forum (at least I think I did) so don't get mad Ghudson! My question is whether or not you can adjust the layering of controls or objects in a form so that one object is always on top of another for instance an activex control or something...Can anybody help this...
  4. taicho

    Helppppp (If Statement)

    Thank you very much for your suggestion lagbolt, just goes to show me I have so much more to learn, I am going to implement this method instead of my other one, I wanted to mention though that I am not actually storing these numbers they are being listed in controls purely for routing to a...
  5. taicho

    Helppppp (If Statement)

    My apologies, the way I ended up solving it was instead of trying to incorporate ALL of the code into an If..Then..Else statement I made the Else part goto a seperate Procedure instead of being in the same one here is a bit of the code: Private Sub Command131_Click() If IsNull(Me.NOne) Then...
  6. taicho

    Helppppp (If Statement)

    Got it nevermind thanks though!!!!
  7. taicho

    Helppppp (If Statement)

    Alright my friends I am in need of help again...I just can't figure this out I tried "If" "Select" "Goto" everything and my brain can't work it out... I have 10 unbound controls named (NOne,NTwo,NThree, etc...) what I want is this- user clicks button to add the value in ControlX too NOne but if...
  8. taicho

    Isloaded...........

    Problem solved! RuralGuy you are truly a master, thank you very much for your help it is much appreaciated :-D P
  9. taicho

    Isloaded...........

    Forms!SalesUnFiltered.CustomerID = Me.CODE, I know using this technique is frowned upon but I didn't know what else to use and it works just that I need this IsLoaded to work with it so my users don't see a VB error...
  10. taicho

    Isloaded...........

    Here is the code... <code> Private Sub Form_Unload(Cancel As Integer) If IsLoaded("SalesUnFiltered") Then Forms!SalesUnFiltered.CustomerID = Me.CODE Else MsgBox "HEY!!" End If End Sub </code> and that is what still gives me an "Sub, Function, or Property not defined (Error 35)"
  11. taicho

    Isloaded...........

    Could you describe what you mean with an example RuralGuy? :-) By the way Rich I tried that and I think it's they same snippet I found before but what I get is "Sub, Function, or Property not defined (Error 35)"...
  12. taicho

    Isloaded...........

    Hello my brother and sisters! I am need of your help once again. Anybody got the fuzzy warbles to help me out?? Ok so here is the problem, I have a form in which customers can be edited and it is meant to only be opened from another form because when it closes the customerID is passed on to...
  13. taicho

    Database Help Much Needed!

    Problems have been solved! Just wanted to make the known so this thread can die peacefully, thank you very much for advice Neil - much of it was used in the solution(s) to my problem(s)... :-D
  14. taicho

    Subform help y'all!

    Got it figured out finally! Thanks for the tip though x0reset. :-D
  15. taicho

    Subform help y'all!

    Keeping it high Just tryin' to keep it up high...
  16. taicho

    Subform help y'all!

    I am in desperate need of your my help my fellow "Accesorians"! I have 3 Forms in this order within eachother- Purchase Orders Purchase Orders SubF(Subform in Purchase Orders) SummaryBackOrders(Subform in Purchase Orders SubF Now the purpose of...
  17. taicho

    Database Help Much Needed!

    Well since my last post I've gotten more of a grip on everything but there is something I still can't figure out - My Query looks like this: PriceID;Part Number;Price;Price Added Now in the query setup I've set it up so that totals are on and "Price Added" is set to Last and from everything...
  18. taicho

    Database Help Much Needed!

    Just trying to keep thread up high...
  19. taicho

    Copying values of fields from one table to another.

    Thanks for the replies guys, I have another post called "Database help much needed" that I probably should have just stuck to instead of this one, maybe you can read my last post in "Database help much needed" and give me your opinion(s). Any help much appreaciated!
  20. taicho

    Database Help Much Needed!

    Sounds good... I was also starting to think that the most logical thing would be to do this project in the Unified Parts DB but something still puzzles me, you see the reason I want/need the most current price from the "Prices table" copied into the "Price" field in the "Unified Parts Table" is...
Back
Top Bottom