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...
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...
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...
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.
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 +...
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...
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.
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...
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.