Search results

  1. C

    unbound data show

    two text box use in form aa.......bound text bb......unbound text if data enter in bb not show in aa i use vba code but not work code Private Sub bb_AfterUpdate() Me.aa.value = Me.bb.value Me.Refresh End Sub code give some tips file attach
  2. C

    unbound value equal to bound value

    my table aa.......number form1 value---unbound aa------bound code Private Sub value_AfterUpdate() aa = value Me.Refresh End Sub code in form use unbound and bound when enter data in unbound no diaplay in boundo bject give some tips file attach
  3. C

    if if condition not work proper

    use code in vba unbound if condition work after few minute if condition not work and show wrong result
  4. C

    unbound text in continuous form

    table data id_no p_name q_work i use a continuous form and insert data in table easily but i use unbound text in continuous form it is not work need insert data in table unbound text in use continuous form
  5. C

    help in progess bar in form

    this is a link http://www.datapigtechnologies.com/flashfiles/progressbar.html i make file from this link but but not work it expert person guide for this tutorial
  6. C

    unbound text in form

    in form use two rows counter and p_name as unbound text need help for run counter auto sequence and save button press record save and next counter no display see my code in file sample file attach
  7. C

    sequence Lot no

    Data of table Lot_no............Product 01.......................aa 02.......................bb for example delete lot_no 02 Lot_no............Product 01.......................aa i need when insert new data in form lot_no runing auto serial lot_no start is 02 give some tips file attach
  8. C

    Make Auto Number Serial

    Table1 data ID_No(AUTO NMBER) 01 02 03 04 IF I AM DELETE ID_NO 03 & 04 AUTO NUMBER START 05 AND MY DATA SHOW IN THIS STYLE AND ALL DATA DISTURB Table1 data ID_No(AUTO NMBER) 01 02 05 06 NEED ID_NO SERIAL WISE NO ANY DISTURB IF I DELETE ANY RECORD
  9. C

    Update But not Duplicate

    table data Ename=Melsi Payrate=100 I Update Ename Melsei to Carl in update query and result it Ename= Carl Payrate=100 but i update other data wrongly change Ename is Johan to Carl for example orignal data Ename=Johan Payrate=100 update data Ename= Carl Payrate=100 i need tip to update...
  10. C

    How Make Menu and List Menu

    in My form i make Menu and menu item list for example Main menu=> Record------Form--------Report and list is Record New Old Save Form Main Exit give me guide and make a sample Mdb file
  11. C

    my Date query

    i face some problem in date query detail is table1 work_name=repairing start_date =01-jan-2000 duration_year= 01 if duration_year= 01 in query auto display finish_date= 01-jan-2001 work_name=repairing start_date =01-jan-2000 duration_year= 01 finish_date= 01-jan-2001 i wait answer
  12. C

    data not show in report

    i need data show in report in unbound table01 Enme in report i use a unbound as name" En" Private Sub Report_Open(Cancel As Integer) En = Ename End Sub Data not show in Report need tips
  13. C

    Need active x controls

    some active x dll file need Scrolling Marquee Text Progress Meters Animated Text Animated Gif and more other style activex
  14. C

    employee duty work database

    i need to make a shift work employee database * employee work in two shift daily day and night 8 hour(7:00 am to3:00 pm) and (3:00pm to 11:00pm) * 04 employee in depart * 02 person in day shift * 02 person in night shift * shift change after 07 day every week * night person rotate to day *...
  15. C

    Leave query

    employe give 01 leave every month during the year from hire date any emergency 01 leave advance table1 ename=Johan hire date= 01-jan-2011 given_leave= 12 available_leave=01 use-leave =0 use_advance=0 employe use 01 leave 12-jan-2011 then show data ename=Johan leavedate= 12-jan-2011...
  16. C

    Shift Duty query need

    carl work data in shift wise duty morning and evening shift change every 5 days shedule Morning=01-jan-2012 to 05-jan-2012 Evening =06-jan-2012 to 10-jan-2012 i enter date 01-jan-2012 display data date=01-jan-2012 ename =carl shift = morning if enter date=03-jan-2012 then shift data...
  17. C

    Shift wise query

    i made two person duty work record duty done two shift morning and evening shift change after 5 days SDate-------------ename----- work--------shift-------- name----work---shift 01-jan-2010-------carl----------05------- morning---- Johan---- 10--evening...
  18. C

    query problem

    in vba i need write query multiple line in this style SELECT Table1.ename FROM Table1;
  19. C

    Show data other file

    show data other file without link table i write this query SELECT Table2.ename FROM Table2 F:\database.mdb ; query not result
  20. C

    convert number value to word value

    In form use Two text box, txtbox1 & txtbox2 If i write any number value in txtbox1 then txtbox2 show in word value for example txtbox1= 1 txtbox2= One txtbox1= 10 txtbox2= Ten txtbox1= 115 txtbox2= One hundred fifteen txtbox1= 235 txtbox2= Two hundred thirty five need help
Top Bottom