Search results

  1. S

    Balance in a Inventory Database

    I checked the zipped file. It's oke :) I know how to create a Form etc. But in my database i want a form with a field wich shows me the balance and quantity on the most recent date I looked at the sample database of Allen Browne. See attachment
  2. S

    Balance in a Inventory Database

    Hi All, i have created an inventory database. I used the code of Allen Browne(http://allenbrowne.com/appinventory.html). Now i have to create a Form which shows me the balance and quantity on the most recent date. I looked at the Inventory Sample of Allen Browne but can get further. Can u...
  3. S

    Calculation Like Inventory

    Need more information?
  4. S

    Calculation Like Inventory

    Friend, i tried this one but with no success. TABLE tblPayment UNION all SELECT EmployeeID, [DatePaid] as DateUsed, Ont * [WorkedHours] AS AmtUsed from tblPayment UNION SELECT [EmployeeNum], [DateUsed], [AmtUsed] ; I have attached the database. Can u please tell me more how to create a union...
  5. S

    Calculation Like Inventory

    Friends, I need your help. I created a database with 2 tables and 1 query: tblPayment,tblEmployee,gryCalculation tblPayment is updated twice in a month. every payment has his own paymentID. I have a calculated field "ontv"(total workedhours) I have a vacationfactor For paymentX the...
  6. S

    CalculationHistory

    Dear Friends, How are you all?. The Spain fans congrats :). I need your help. I created a database with 2 tables and 1 query: tblPayment,tblEmployee,gryCalculation tblPayment is updated twice in a month. every payment has his own paymentID. I have a calculated field "ontv"(total...
  7. S

    Duplicate Records in a one-to-many relationship

    Thanks man. It worked. I created a subform and the problem was solved.
  8. S

    Duplicate Records in a one-to-many relationship

    Friends, I need some help. I have a database with 3 tabels: tblUsers,tblHourpayment,tblPayment. tblHourpayment and tblPayment has a one to many relationship with tblUsers. i have created a form based on tblUsers, and one field(hourpayment) of tblHourpayment. In tblHourpayment one UserID can...
  9. S

    Question ShowLastrecord!!

    Thnx Man. This great
  10. S

    MessageBox in combination with IF function

    Steve, Example: if i have 10 records and i navigate to record 9 and if textbox with controlsource: =DateDiff("d",[HireDate],Now()) = greater 100 a messagebox must be prompt. The Hiredate is already has a date value. So i want this to be triggerd if i am on a record and the textbox with...
  11. S

    MessageBox in combination with IF function

    Steve, I tried this code on Afterupdate: NO success I tried this code on doubleClick: With Success Did i do something wrong? Same code, nothing els If Me.HireDate + 100 < Date Then MsgBox "YourMessage" End If
  12. S

    TextBox #Name? Error

    Steve, Yes the name in the table is Hiredate Name of the textbox is txt328. I made i copy of the database end if i open the copy i am not getting any #Name?. I reopend the database mostly 10 times and now its working. But the error is not solved! Ps: I tried date() in another database and...
  13. S

    TextBox #Name? Error

    I want the date difference between the hiredate and the date of today. So if i open the database after Xdays it must use dateX. Any other option friend?
  14. S

    TextBox #Name? Error

    Friends, I have a textbox in my for with in the controlsource this: =DateDiff("d",[HireDate],Now()). When i open the form i get the error: #Name? After reopening the database many times is see the values. Please help.
  15. S

    MessageBox in combination with IF function

    Thats also possible. The messagebox would be better. Let me try with conditional formatting. Thnxfor the new idea. I wil try this.
  16. S

    MessageBox in combination with IF function

    Dear Fiends, I have a tbl called tblUsers:[Fields]: Userid, Name, HireDate. I created a form with this fields. Also i placed a textbox with controlsource: =DateDiff("d",[HireDate],Now()). What i want: If the text box value is greater then 100 a messagebox must must popup. I tried the IF...
  17. S

    Question ShowLastrecord!!

    Great man . It worked. Thnx thnx Do you have a link were i can get more access programming information?
  18. S

    Question ShowLastrecord!!

    Dear John, I tried this code(DoCmd.GoToRecord , , acLast) on both forms, with no result. tblpayment is related with tblUsers(field: userid) Relationship: one to many other code?
  19. S

    Question ShowLastrecord!!

    Dear Friends, I hope u all are fine. I need some help. I created 2 tabels (tblusers and tblpayment). tbluser has user information tblpayment hourly payment information. I created a form named frmHrm. I placed the user information and payment in the form. The payment of every user can...
  20. S

    Question Calculations in Form/Subform

    Paul, Thanks for replying. I need some more information. If i got you right then i have to create another table, with the transactions? Can i send u an example of my database? thnx
Back
Top Bottom