Search results

  1. maxmangion

    Query search in various fields!

    That does not require you to have 7 fields. It break the rules of normalization and you will be having similar problems to the one you already have. Create a table with just two fields i.e. workID and TravellerID and your data should be stored as follows WorkID1 Traveller1 WorkID1 Traveller2...
  2. maxmangion

    Form to Subform - What if no data?

    you can try to create a recordsetclone and do a recordcount and if it returns 0 then you display your message box
  3. maxmangion

    Query search in various fields!

    Hi, I think you have a problem with your setup. Could you explain why do you have 7 traveller fields? perhaps a search on normalization would help reconsider your table structure
  4. maxmangion

    Refreshing subforms

    try Me.Requery
  5. maxmangion

    Replace multiple lines in a table

    you're welcome, i'm glad that you managed to sorted out :)
  6. maxmangion

    ODBC Problem

    Once again a big thank you for you and oumahexi as well :) reputation time :D
  7. maxmangion

    ODBC Problem

    The person in question wasn't an end user. Basically some "power users" often create access databases and link them via odbc so that we can create our own queries/reports etc. So what was happening is that the power user in question went to File->Get External Data->Link Tables ->ODBC ... on the...
  8. maxmangion

    ODBC Problem

    Hi Banana/Oumahexi, I have created another system dsn and called it sipr and voila the databases are running fine now. Therefore all of the databases are running on all pcs without problems ... the only thing is that all pcs have 2 system dsn now instead of 1. As regards the suggestion to...
  9. maxmangion

    selecting records

    not sure if i understood your question correctly, but try adding the word DISTINCT in your SELECT statement of your query i.e. SELECT DISTINCT etc
  10. maxmangion

    ODBC Problem

    Hi, I think i found the problem, but before i proceed further i would like to ask for suggestion: I went to the odbc system dsn window and it seems that the pc in question have 2 system dsn created one called sipr and another called sits both having SQL Server as driver. All the other pcs have...
  11. maxmangion

    Replace multiple lines in a table

    create a form and have two unbound textboxes one for the current data and another for the new data you want to update. Eventually, placed the references of these controls in your query criteria and update to fields i.e. [Forms]![FormName]![TextboxName]. Once you have this setup place a button...
  12. maxmangion

    ODBC Problem

    Actually all PCs in question are connected to the same server. In fact all users on pc access the database and perform their routine work. As regards the file DSN, what is basically the difference between it and the system dns? The reason i am asking this is because way back when the database...
  13. maxmangion

    Replace multiple lines in a table

    well you can do that a form level. Use textboxes to accept the data and then in the query reference the controls of the forms i.e. [Forms]![frmName]![ControlName]
  14. maxmangion

    ODBC Problem

    Hi Banana and thanks for the reply. 1) The system is built with Uniface & SQL Server 2) When we setup the ODBC in the control panel we setup a System DNS (SQL Server Driver) 3)Yes we connect via office LAN 4)Immediate window produced ODBC--connection to '|' failed. Thank You
  15. maxmangion

    ODBC Problem

    Hi, I normally use Access to link tables via ODBC to a database which resides on the server. I have create some databases to perform certain reports and all of these work fine, however, some of the databases work fine on the pc which were created on but i get an ODBC - connection to 'sipr'...
  16. maxmangion

    Friends request

    I'm afraid there are only 5 posters with 5 figure post count, and right now you're placed 5th i.e. last:p
  17. maxmangion

    Replace multiple lines in a table

    Hi, As already suggested in another thread you can do that with an update query. In the query put the current data in the criteria row and put the new data in the Update to row. When you run the query the data will be updated.
  18. maxmangion

    Get rid of Exact Search

    Double Click on query in design view, once you're there from the Query Menu at the top select Update Query.
  19. maxmangion

    Get rid of Exact Search

    you can try the update query.
  20. maxmangion

    Get rid of Exact Search

    you're welcome :)
Back
Top Bottom