Search results

  1. H

    Solved How to make a form filter with Check boxes

    hey thanks for the prompt reply. will try it and reply
  2. H

    Solved How to make a form filter with Check boxes

    Hi I've created a data filter form in my access program. I have put 5 check boxes in the form which named as district (i.e. BK, SK, ARV, GN & NMD) now I've bound value to the check box as under, (note my first checkbox name is "Check0" and added code to after update event) Private Sub...
  3. H

    How to get last entered value in text box

    Thanks works like a charm!!! :)
  4. H

    How to get last entered value in text box

    Hi, I've a table named inward & a column named inward number Now, For each time I enter inward number manually. So I want to know what was the last inward number I've entered in a Separate text box to avoid duplicate entry. - I've tried "DLookup" & DLast query functions but no luck...
  5. H

    Multiple Entries under same ID in ACCESS

    Sir, Thanks for prompt Reply and making a DB for me. :) But my application & Other docs must be a separate tables, because application table must has columns like name of sender, date received, place of sender & farmer name... same columns required in other docs table too.. I've already made...
  6. H

    Multiple Entries under same ID in ACCESS

    Hi all, I have a Courier Register table which has following columns 1. Inward ID 2. Inward Date 2.Applications 3.Other Documents Every day I received multiple applications (i.e. 10 per day) and 5 other documents for a one Inward ID. Inward ID must be only one for a day as we are mentioning the...
  7. H

    How to lock auto number for 24 hours

    Sir, I've a table with columns as under 1. ID 2. Applications 3. Other documents Now many applications are received in a day. I want to enter all applications in one ID only, So that I can mark it as a inward id and find all applications received on that day by entering just a inward ID...
  8. H

    How to lock auto number for 24 hours

    You get it right. I have to do multiple entries under a same primary key How can i do it? Thanks
  9. H

    How to lock auto number for 24 hours

    Hi, We've inward/outward register in excel sheet at my office. I've to convert it to access form. But the problem is, 1. I've set primary key as auto number 2. Multiple entries done under same number during day. So how do i restrict or allow multiple users to do entry in a single primary...
  10. H

    Disable text box if other text box value is null

    Thanks, My work done with me.disable=false code at the form load event... Cheers!!!
  11. H

    Disable text box if other text box value is null

    Hi all, I've created a form for data entry. I've to do the following, If a Regi_No text box value is null then, automatically disable all other textboxes in form. I've implemented the code under after update as under, If IsNull(Me.Regi_No) Then Me.Village.Enabled = False Else...
  12. H

    Hello all

    Hi, i am new here...
Back
Top Bottom