Search results

  1. KingRudeDog

    Calender Control and date field

    Using Access 03.... I know this seems noobish. But I've never used the calender before now. So while I know how to make one... I created a form with a calender on it [frmCalender]. I placed a command button on my parent form, next to the date field [request_date] to open the [frmCalender]...
  2. KingRudeDog

    Calender Control and date field

    Using Access 03.... I created a form with a calender on it [frmCalender]. I placed a command button on my parent form, next to the date field [request_date] How do I link whatever date I click on (in the calender) to appear in the [request_date] field?
  3. KingRudeDog

    Linking Databases

    Problem... remember that the db's are twins. That means that with the exception of the data in a single table, everything else is the same, even the table names. Therefore the problem lies. I can't have re-occurring table names linked at the same time with all the same relationships. I could...
  4. KingRudeDog

    Linking Databases

    Hey all! Okay, so here's a real puzzle, so put on yur thinking caps! I have two large databases that are twins of eachother, with only a minor difference in a small corner of one table. Even the forms are exactly the same. I want to split each one from thier tables, so I have databases...
  5. KingRudeDog

    Help me make this more user freindly...

    -------------------------------------------------------------------------------- PLEASE HELP!!! I beleive this should be easy for someone with more experiance than I. Okay. I have attached a small portion of the massive database I am working on (which happens to be my first ever and was...
  6. KingRudeDog

    Another easy one for the pro's....

    How do I get a combobox on my subform to default to a new record instead of showing and writing over the current record, and then default back to an emtpy record after hitting the "next" button.
  7. KingRudeDog

    Please help...almost got it.

    worked like a charm...thanks a bunch!
  8. KingRudeDog

    This is killing me...

    Tried your suggestion (as shown below). Kept getting the error "MS Office can't find the field "l" referred to in your expression..." I posted the expression i edited from your suggestion below. Do you see any errors of note? Private Sub Command32_Click() On Error GoTo Err_Command32_Click...
  9. KingRudeDog

    This is killing me...

    Okay. I have a main form TRequests, which has several subforms, although we are dealing with two here in particular. I have one subform [bsdata] that has combo's to choose data and a [enter] button to submit. This updates the second subform (query table) with a [PK] and further metadata... I...
  10. KingRudeDog

    That fancy dropdown on all these pages

    Is there a way I can get any word I choose on any list to open a small menu based on that word... Like when you click on my Forum name...or on the search bar, members list etc. You know the one...all fancy and stuff, so the word (link, hyper...) doesn't look like a drop down, but when you...
  11. KingRudeDog

    Easy question for the pro's

    I am not yet proficient in programming VB, but even I know the basic's of this one. But I know asking the access gods will make my way smoother.... I want to have a command button visible based on a boolean (checkbox)... So something like If boolean1 = true Then commandbutton73.visible...
  12. KingRudeDog

    Okay...partway there...please help!

    Meh? Sorry... But I'm still somewhat of a newb. If you could clarify that just a hair...
  13. KingRudeDog

    Okay...partway there...please help!

    Thanks but... Variable code just left all new samples at 0.... What Im trying to accomplish: When the parent form [test_request] creates a new record I want the NEW <sampleId> values in the table the subform is based off [body_style_data] to reset at 1 and increment up from there. So...
  14. KingRudeDog

    Okay...partway there...please help!

    Lister? You wouldn't happen to be "Lister D" from mousemod? Oh and I already tried to zip it and attach...too big. And theres not even any data in it yet..
  15. KingRudeDog

    Please help...almost got it.

    So I almost have this working. I have a subform <body_style_data> linked to a parent form <test_request>. I added code to the before_instert function on the subform to give each submitted sample to <body_style_data> an id number <sampleId> starting with 1. Here is the code... Me!sampleId =...
  16. KingRudeDog

    Okay...partway there...please help!

    So I almost have this working. I have a subform <body_style_data> linked to a parent form <test_request>. I added code to the before_instert function on the subform to give each submitted sample to <body_style_data> an id number <sampleId> starting with 1. Here is the code... Me!sampleId =...
Back
Top Bottom