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 Shaun E 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 canett

  1. canett

    checkup

    How can i check a field in the table? I have a field called Suborder in the table orders.On the form I have also a checkbox called ChkSuborder. I want to build a code in the OnClick event of the checkbox.This event should check whether there is a field Suborder = true and if so to give out a...
  2. canett

    Not in the list

    Thank you for the reply.I understand my question about Noin the list was irrelevant.Mt problem is the following.If you open the subform and try to choose say the fourth product,when closing the form you will get the following message: "The Microsoft Jet database engine cannot find a record in...
  3. canett

    Not in the list

    I have the following problem.I have a form and a subform based on a query,and this query does not allow the choice of other products.And it is quite logical, since the parameter is (SELECT Max([orderid]) FROM orders). Naturally no other product can be chosen. I am wondering can i find a...
  4. canett

    Table containing only the last record

    Tahn you so much. Thats exactly what i needed
  5. canett

    Table containing only the last record

    Thank you.There must be also some other error in my lines, since i get now "syntax error " in the following" Public Function Alan() Dim SQL As String SQL = "SELECT * INTO orders1 FROM orders WHERE orders1.orderid = DMax("orderid","orders")" CurrentDb.Execute SQL End Function
  6. canett

    Table containing only the last record

    In adition to my question,I guess that i should build a make table query that contains only the last order. To this end i have tried to build the following function: Public Function Alan() Dim SQL As String SQL = "SELECT * INTO orders1 FROM orders WHERE orders1.orderid = DMax(orderid,orders)"...
  7. canett

    Table containing only the last record

    I need to copy the tables orders and orderdetails containng only the last order.I am copying them to another database using the formula DoCmd.CopyObject db.Name, "orders", acTable, "orders" DoCmd.CopyObject db.Name, "orderdetails", acTable, "orderdetails" I want to use the criteria (SELECT...
  8. canett

    Can i simplify ?

    I have the following function that works. Could i rationalize it further,make it more simple or avoid repetition of the commands? Option Compare Database Option Explicit Public StrSource As String Public Const strDest = bappath Public Function CopyBackDepots() DepotBl DepotVa DepotHa DepotPl...
  9. canett

    IIF with IsNull

    I have a good IIF Function based on the availablity of a field, which sometimes might be 0 and sometimes there is nothing in it.My function works, if the filed cartons is either 0 or > 0. However, my function does not work if the field cartons is blank, i.e. there is no 0 in it. How an I improve...
  10. canett

    open recordset

    I am creating a new recordset in 2 tables, orders and order details.Obviously i have to open the recordset for two tables.Shall i open the recordset for the table order details and when shall i open it ? My function shown below does not create a new recordset in the second table,only in the...
  11. canett

    Get the first in the row

    In the part of the code shown below, is it possible for the constant LngCustomer to get the fist number of the customers in the table Customers for example, if the first customerid = 4000, then to get LngCustId = 4000 Const lngCustomerID = 1 Dim dbs As DAO.Database Dim rst As...
  12. canett

    update query

    Can you help me with an update query? I want to update the query sql in such a way, that the cartons should be the same as branch0 and quantity as items0 in the folloiwng sql: Dim sqlOnStock As String SQLOnStock = " SELECT Products.Productid, roducts.branch0, Products.items0 FROM Products"...
  13. canett

    send report

    Thank you !!!!!!
  14. canett

    send report

    I can send an opened report in a word format by clicking tools-office links-publish it with msword, and i get the report in My Documents.I want to do it by code from the form where i open the report..Can somebody help me ?
  15. canett

    update command

    I want write an update command in an sql form and not with the help of a query. My present working code now is : Dim strSQL As String strSQL = "UPDATE qryOrderDetails SET Branch0 = Branch0 - cartons " CurrentDb.Execute strSQL, dbFailOnError The query qryOrderDetails in an sql form is ...

Part and Inventory Search

Back
Top