Search results

  1. Z

    How to copy ms access forms field data into ms access table

    Thank you very very much! The add Button is adding the values into the table. Am I wrong in saying that this is an easy way to add / modify / query / delete records as compared to DAO / ADO? Is my approach correct?
  2. Z

    How to copy ms access forms field data into ms access table

    Here is my form with fields (named in red) and table in design view the add button has the following code Private Sub cmdAdd_Click() Dim sqlstr As String DoCmd.SetWarnings False DoCmd.RunSQL "INSERT INTO TblDir (fn, ln, gender) VALUES (cbfn.Value , cbln.Value, lstgender.Value );"...
  3. Z

    How to copy ms access forms field data into ms access table

    Running would be an understatement, i would need to sprint. the final deployment is envisaged to be installed on a server and two front end terminals :) But yes, the route you say is logical. I have done some bound form already, displaying data of table, going through records. I stumbled upon...
  4. Z

    Help Required for warehouse inventory + POS in MS Access

    Thanks, already feeling comfortable with the forum and being helped!! My project intends to be very simple but when I have successfully delivered it, I intend to continue doing it and start consulting on it with a legal name & arrangement (inc or pvt. ltd)
  5. Z

    How to copy ms access forms field data into ms access table

    Thanks dear. My purpose in MS access is to develop / designing / code a warehouse inventory + Point of Sale software in MS access. Do you think it is a good idea to be working with Table directly by using a source record property? I have always been of the opinion that we take input in field...
  6. Z

    Help Required for warehouse inventory + POS in MS Access

    Hello All, This is Zubedi Tufail from Pakistan. I am new to MS Access Application Development. Just turned to this platform on demand from a customer for a not too high tech system, simple, affordable and quick implementation. My project includes designing a warehouse inventory + Point of Sale...
  7. Z

    Hello from Pakistan

    Hello All, This is Zubedi Tufail from Pakistan. I am new to MS Access Application Development. Just turned to this platform on demand from a customer for a not too high tech system, simple, affordable and quick implementation. My project includes designing a warehouse inventory + Point of Sale...
  8. Z

    How to copy ms access forms field data into ms access table

    Hello guys, I am new to ms access development. I have a table and a form. I need to input data in the form and click on a button to add this data into the existing table. This is part of a bigger application which will be compiled and given away for use. tblProduct id = autonumber name = text...
Top Bottom