Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Only1Abhi

  1. Only1Abhi

    Rounding Problem

    problem solved by turning Long Integer into Single. Thanx anyways ppl! (double will also work)!
  2. Only1Abhi

    Rounding Problem

    Hi. I have a with lots of fields, but 2 in particular. In Table Design View, I have set these 2 fields to Long Integer field size, General Number format, 2 decimal places, default value 0, NOT indexed, NOT required. But when I type a value in the table in these 2 fields (or in the form I made...
  3. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    thanks Ken someone else in another forum suggested the same. It worked. Many thanks. Bye!
  4. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    lol... then again people... I was thinking... Is it possible for the "Dates" field (updated name of the field "Date") to have TODAY's date automatically stored everytime? When I make a transaction, it will be automated to TODAY's date. But when I make a transaction...
  5. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    yeh thanks! It did work actually! The regional settings on CONTROL PANEL had language set to English (US) and not English (UK) That solved the problem. Many thanks! Best Regards, Abhi
  6. Only1Abhi

    Record values made by product of 2 other fields

    Magic... Magic... It works! Thanks millions, billions and gazillions. Kenray is the Don! ;o) Thank You Very Much. Kind Regards, Abhi
  7. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    But the problem is still there! :(
  8. Only1Abhi

    Record values made by product of 2 other fields

    this is what I done. Still not working though! :( Private Sub Form_BeforeUpdate(Cancel As Integer) Me.txtTotal = Me.txtCalc DoCmd.RunCommand acCmdSaveRecord End Sub
  9. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    yes! All that is set to UK default!
  10. Only1Abhi

    Record values made by product of 2 other fields

    Hi People! I posted this problem years ago! I searched for the thread but couldn't find it! So... I'm posting it again! Hoping access professionals can help out! ---------------------------------------------SCENARIO------------------------- I have a table called tblTransaction. In...
  11. Only1Abhi

    Date format is in mm/dd/yy but I need dd/mm/yy!

    Basically, when I choose the Data Type for my field "Date" as Date/Time, all dates are in: month/day/year format. I need day/month/year format! How is this possible? Many thanks!
  12. Only1Abhi

    Automated Field Problem

    thanks! But I solved this problem! I just deleted fields CustomerForename and CustomerSurname from tblTransaction. That solved it! Many thanks anyways! Kind Regards, Abhi
  13. Only1Abhi

    Simple Message Box Problem

    thanks guys... But I solved it using another way. When I click the button, another form loads with Yes & No button. That solved the problem. Thanks anyway! Kind Regards, Abhi!
  14. Only1Abhi

    Simple Message Box Problem

    Hi People. What's wrong with this code? When I press the button to exit the program, I want a message box to appear, which confirms this action. Private Sub cmdExit_Click() MsgBox("Are you sure you want to exit?", vbYesNo, "Exit The Program") End Sub
  15. Only1Abhi

    Automated Field Problem

    Hi. I have a problem that I tried to solve. It's very hard for me but maybe people with good access knowledge can help! -------------------------------------SCENARIO--------------------------- I have a table called "tblCustomer", with fields: CustomerID (Autonumber) Forename...

Part and Inventory Search

Back
Top