Search results

  1. B

    FIFO

    hello am working on sales inventory database for my own business and i want to add the FIFO concept to my products because the cost will differ from time to time or i will change the supplier do you have any example so i can learn and achieve my goal
  2. B

    save data from main form and subform

    hello am trying to create a sales app for my business i want to save data from the main form to a specific table and the data from the subform to another table and for each row in the subform i want to add the invoice id that is existed in themain form here a copy of my database the form am...
  3. B

    Solved Counting Checkboxes with True Value

    hello i have 4 checkboxes in continuous form i want to get the sum of each checkbox with true value in an unbound texbox i tried these codes =Sum(IIf(Nz([chk_Gift];False); 1; 0)) =-Sum([chk_Gift]) =Abs(Sum([chk_Gift])) but always am getting error any help please
  4. B

    save and update data from access table to google sheet to use it with telegram bot

    hello i want to save my clients data to google sheet so can my users fetch their data through telegram bot could you lead me to how to start or where to start
  5. B

    same code for 48 textbox

    hello i have 48 textbox in same form to receive invoices from our collector i have a code to dlookup the invoice if paid or not Dim InvN As String If DLookup("ID", "tbl_Clients_Charging", "[ID] = " & Me.txt_01 & " And [AccountPaidStatus] = '" & "Paid" & " '") > 0 Then...
  6. B

    automatic find backend

    helllo i have a splitted database one Frontend and Two backend any solution to let the Frontend check on load two destinations and the right one will be the backend i dont want something ready if you can lead me i really appreciate
  7. B

    Problem with Dsum

    i have a query contains [ID] and [Amount] i wrote in vba Dim BulkTotal as integer BulkTotal = DSum("Account_Amount", "[qry_Bulk_Total]") am getting this error Runtime error 6 Overflow any help?
  8. B

    Solved insert into table error 3134

    am inserting data into a table table fields name is correct form textboxes names is correct strsql101 = "insert into tbl_Clients (ClientName, Username, Phone, RegistrationDate, RechargeDate, ExpiryDate, Address, Section, Account, AccountDealerCost, AccountResellerCost, AccountResellerSell...
  9. B

    Search Continuous Form with one textbox

    hello, i have a continuous form for now i can search just one field with this code Dim strFilter As String If Len(Trim(Me.txt_Search.Value & vbNullString)) > 0 Then strFilter = "Clientname Like '*" & Replace(Me.txt_Search.Value, "'", "''") & "*'" Me.Filter = strFilter...
  10. B

    Solved dcount query to unbound textbox

    hello i have unbound form two unbound text (txt_printed) (txt_not_printed ) i put in the control box of txt_printed = DCount([Printed];[qry_Invoices_Printing_Data];[Printed]=True) txt_not_printed =DCount([Printed];[qry_Invoices_Printing_Data];[Printed]=False) when i run the form the two...
  11. B

    Solved show specified data and all records before

    hello guys congratulations for the new look :love: i have a table with 15 record each record have a unique name 1-A 2-B 3-C . . . 15-X in a form if i choose from a combo box for example letter D and run the query (or vba code) i want to get all records from D and before so i will get 1-A 2-B...
  12. B

    criteria to sum same product for one person

    hello i want my database to tell me when the same person bought the same product 20 times If DCount("*", "tbl_Personal_Sanctions_02", "[PID] = " & [PID]) = 0 Then MsgBox ("congratulations") Else End Ifthe product field is (Sanction_Code) the type of...
  13. B

    query criteria based on form textbox

    hello i have form1 - form2 - table1 - query1 form1 contains textbox with specific value query1 bring data from table1 form2 (data source query1) show data from query1 (ID like the textbox on the form1) if i run the query1 it will ask me to give input so i add any number the query...
  14. B

    send records to print

    hello i have a listbox bound to a table that show the id of the records i want to print all the records showed in the listbox with one command https://ibb.co/xDgXGxY any help?
  15. B

    change date month to current month

    hello i have a list of clients each with recharge date for example i have a recharge date for client 01/05/2019 (april) i want to renew the subscription so i should have a new date 01/08/2019 (august) i renew every month with this expression...
  16. B

    text in textbox fit problem

    hello i have a report in arabic, in this report i have a textbox that will change whatever the client enter a new data the problem is each lines at the right a letter or two disappear https://ibb.co/Vv3hZkk please look at the red circle in each one there is two letters that are not existed...
  17. B

    command button change place on form view

    hello i have a form, in design view everything is okay but when i run the form the command button go to the right design view https://ibb.co/ZSgkGvB form view https://ibb.co/nCMmcJs any help
  18. B

    change textbox size or font size in continuous form

    hello i have a continuous form with lot of data, some data is bigger than the textbox and dont fit so the user can read it all any idea how can i grow the textbox when the text is bigger than x characters or resize the font i tried to check the cangrow by lebans.com...
  19. B

    Error Code 2105

    hello guys, i have a form that is bound to a table am let the form go to the last record then showing a message to let the client now the number of the last file saved then push the form to go to a new record so the client continue saving new files Private Sub Form_Load()...
  20. B

    shrink text box

    hello, any idea how can i shrink textbox in form when the text is long? in report the can shrink and can grow work perfect but not in form
Back
Top Bottom