Search results

  1. E

    Printing on Dot Matrix Printer

    I am working on a accounting application. we use dot matrix printers for printing. But in access printing is very slow as compared to printing in Foxpro. Please help me and tell me how to increase the printing speed in ms access. someone told me that if we want a fast printing we have to create...
  2. E

    problem in if statement

    Thanks a lot george. The code is working well in my prog. you solved my problem. Thanks a lot.
  3. E

    problem in if statement

    Thanks george, I will try your code and tell the result.
  4. E

    problem in if statement

    No, the user will select one option. i.e Male, Female or Sr. Citizen. And depend on its choice only one result will be displayed.
  5. E

    problem in if statement

    i am working on a tax program. i write the following code in the OnUpdate Event of a text field. Private Sub Combo232_AfterUpdate() If ([sex] = "MALE" And [total_income] > 110000 And [total_income] <= 150000) Then Me.taxOnIncome = (([total_income] - 110000) * 10 / 100) Else Me.taxOnIncome = 0...
  6. E

    After Update statement

    thanks a lot brother. I am working on a tax calculation program. i want to use multi if statement in the manner below:- if sex=Male and income>110000 and income<=150000 then tax=(income-110000) *10 elseif if sex=male and income>150000 and income<=250000 then tax=(income-150000)*20+4000...
  7. E

    After Update statement

    How could I use both query and tables for printing. we can either use table or query for one printing. My all other values stores in table. So thats why i dont want to use query because i have to print everything Thanks for help.
  8. E

    After Update statement

    Thanks for reply. But is there any way through which I can achieve my goal without using query.
  9. E

    After Update statement

    i have a problem. I want to achieve this total2=gross_Salary+perquisites+profits total3=house_rent+transport_allowance+others i used AfterUpdate() function on form to do the calculation and to save the results in the table. Private Sub grossSalary_AfterUpdate() Me.total2 = Me.grossSalary +...
  10. E

    calculated field

    Now i am facing a new problem. My calculated fields are not saving its results in table fields. (e.g. textbox1= textbox2+textbox3) Although they show result in form but not save in table. And my tax calculation depends heavily on these fields. How could I use the result of calculated fields for...
  11. E

    calculated field

    Thanks for the help brother. Actually I am not a programmer by any means (mostly a network admin by trade), so I have no real skills in VB. Should I write this code in New Module.
  12. E

    calculated field

    i am working on a tax calculation program. I used many calculated fields on the form. But on the final field i dont have an idea how and where to write the code. Actually i want to use multi if statement in the manner below:- if sex=Male and income>110000 and income<=150000 then...
  13. E

    Access 07 -- automatic calculation of difference

    i am going through the same problem but i want to save results in table. can you help me and tell me how i can save the result of calculated field in table.
Back
Top Bottom