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

    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...
  3. 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 +...
  4. 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...
Back
Top Bottom