Search results

  1. XPS35

    Insert selected item into Access table

    Why would you want to store the email(s) in "t_dci" when it is already in "resp_acc"? In general you better not use multi value lists.
  2. XPS35

    Insert selected item into Access table

    I think an Else is missing. If the length of srvCBO not 0 you fill email and make it empty right away. Put an Else between those two lines. I don not understand the sense of adding "" to srvCBO.
  3. XPS35

    Solved Show Last Record in Query by Date

    Then only one record will be shown. The wish was "only last record by date". So 1 record. Edit: If the time parts of a same date differ, your query will also select 1 record.
  4. XPS35

    Solved Show Last Record in Query by Date

    Can be done 1 query. SELECT TOP 1 * FROM YourTable ORDER BY DATE_ DESC Even arnelgp's solution can be done In one query using a sub-query.
  5. XPS35

    Combo box dependant Form

    That is the right approach!
  6. XPS35

    Combo box dependant Form

    I agree with plog that having so many forms looks like a design problem. What table do you have? An other problem with your code might be the event that triggers it. I think the trigger should be the after update event, not the on click.
  7. XPS35

    Best way to manage heavy ftp files

    Is it perhaps an option not to upload and download directly from the application via ftp? Export and import the files to and from hard drive. Sending and receiving via ftp also runs via HD. The application will then not be bothered by the slow ftp.
  8. XPS35

    Access form Timestamp

    Try Private Sub datebox_Click() Me.datebox = Now() End Sub
  9. XPS35

    Solved Append/Add Query Question

    Create a separate update and append query. It is important that you always perform them one after the other in the correct order. I assume that table1 can and should be emptied afterwards. You should therefore execute the following queries in one and the same procedure. UPDATE Table1 INNER JOIN...
  10. XPS35

    Solved UNION QUERY.

    Try something like this: SELECT qryVacationProgressList.EmployeeID, qryVacationProgressList.EmployeeName, qryVacationProgressList.CompanyName, qryVacationProgressList.MaxOfLeaveDate, qryVacationProgressList.BranchEn, qryVacationProgressList.Status, "Progress - Vacation" as Type FROM...
  11. XPS35

    How to call a function with option parameter in another module in Ms Access

    A function returns a value. This one should return True or False. You have to assing the returned value to a variable. Something like YourVariable = SendstrTo("192.666.1.501:8888",strData, 10)
  12. XPS35

    Passing parameters for multiple sub reports

    I see two potentiaal solutions. First (and best) is not to use a query for each type of application. Use the main query in your report and use the grouping options in report design to seperate the types of applications. In that way you also do not need to change anything when a new type of...
  13. XPS35

    Daily, hourly and monthly average.

    In addition to the correct solution of CJ_London: if you want to round the results to 4 decimal places, you can use the following functions. Format(Avg(Pressure),".0000") AS AvgPressure, Format(Avg(Temp),".0000") AS AvgTemp
  14. XPS35

    At a crossroad and clueless

    I admire your courage to jump in at the deep end with Access. Your data model looks absolutely fine for a beginner. Of course I do have a few questions and comments. In many relationships, the property to enforce referential integrity is disabled. Normally you only turn it off in very...
  15. XPS35

    Transform csv file to match access table for import

    As mentioned in a previous response, you will first have to get the structure of the database in order. Based on the structure of the csv file, I arrive at the following database structure.
  16. XPS35

    Hallo (Access) World

    Hello all, I am Peter from the Netherlands. I have many years of experience with Access. The first version I worked with was the one under Windows 97. I joined this forum to help people whenever possible. My experience is that thanks to the questions and answers on these kinds of forums I always...
Back
Top Bottom