Search results

  1. J

    auto populate fields

    what do u mean by "trusted location" and "enabled code"?
  2. J

    auto populate fields

    I also tried column (1). same result. Do u have time to check the attached sample database? Thanks again
  3. J

    auto populate fields

    Hi Paul, here is my code in Event After Update of "cboPartNumber" combo box. Private Sub cboPartNumber_AfterUpdate() Me.txtDescriptionT = Me.cboPartNumber.Column(2) End Sub ------------------------------------------ When I select PartNumber from the combo box, the Description Field was not...
  4. J

    auto populate fields

    it was in after update of my cboPartNumber:)
  5. J

    auto populate fields

    HI Paul thank you for your quick reply. Is this code is correct for the above given scenario? Me.Description = Me.cboPartNumber.Column(1) when I selected the drop down "PartNumber" combo box the "Description" field is not populating automatically :(
  6. J

    auto populate fields

    Please somebody help.:o I have a simple form with 3 fields on it. PartNumber Description SerialNumber I used 2 tables for this form: 1st Table: PartsList with 2 fields - PartNumber and Description both "Text". 2nd Table: MainTable with 3 fields - PartNumber , Description and Serial Number...
  7. J

    Reports with Customize Reference No.

    Thank you for your reply. I'm trying to do this step by step. I already done the 1st step. But I don't know how to accomplish the 2nd step. Can u guide how to do it? sorry i forgot to mentioned that i'm only a beginner and this is my 1st access db. :)
  8. J

    auto populate fields and save data to table

    Thanks for the reply. I tried both code u mentioned: =ComboName.Column(2)....this code made the Description text box auto populate but did not save the value in the Main Table. Me.TextboxName = Me.ComboName.Column(2)....this code did not auto populate the description text box.
  9. J

    Reports with Customize Reference No.

    Hi. Pls help me on how to create a Report with Customize Reference No. Reference Number should be continuously adding 1 count every time a user will print report. example: On dec 16, morning..... reference no: THS-01 (1st print) dec 16, afternoon...reference no: THS-02 (2nd print) dec...
  10. J

    auto populate fields and save data to table

    Plse Help. In my UpdateForm I have 3 fields. PartNumber, Description and SerialNumber. I use 2 tables for these. My MainTable and PartsList Table. In my PartsList table I have the list of PartNumber in Column (0) and Description in column (1). In my MainTable I have 4 fields: TransactionID...
  11. J

    intro

    Hi. I'm just newly joined and also creating my first access db. I'm working in an airline company and trying to create db for our small logistic department. regards to all.:)
Back
Top Bottom