Search results

  1. A

    Multiple field entry serpated by ";"

    Thank you very much. It is exactly what I wanted. :)
  2. A

    Multiple field entry serpated by ";"

    Hi I would like update a table column values separated by “;” For example 1. ColumA has no data, I want to do an update and place a comma at the end 2. If ColumA has already value do not delete add new valued at the end where “;” if found. My start attempt as follow: qry_test= "UPDATE...
  3. A

    Display all untill a special character is found.

    Thank you much appriciated.
  4. A

    Display all untill a special character is found.

    Hi that is true. How about if I want it to search in part 2 instead of 1 and look for "_&" at the same time. LLLLXXXXXX_&LLLLXXXXXX_LLLLXXXXXX Thanks
  5. A

    Display all untill a special character is found.

    Hi is it possible to include 2 "&&" with the following combination: If InStr(strProjectCode, "&") = 11 Then SubString = Left(strProjectCode, 10) ElseIf InStr(strProjectCode, "&&") = 11 Then SubString = Left(strProjectCode, 10) end if I was wondering if I am able to make InStr...
  6. A

    Display all untill a special character is found.

    Sorry Paul, I hope you are not upset. I deleted it and started a newone beause I thought no one was understanding me with your help I have re-written problem in a more clear manner.
  7. A

    Display all untill a special character is found.

    Thank you will give it a test run.
  8. A

    Display all untill a special character is found.

    First of all apologies for restarting this post as the previous one I did not explain myself properly. I hope I have done a better job now. I would appreciate anyone who could spare their time to have a look at this issue I am having. Please let me know if you need any further clarifications...
  9. A

    Refresh Navigation pane “Tables”

    Thank you pr2-eugin it worked nicely for me. Thank you all for your help
  10. A

    Refresh Navigation pane “Tables”

    Hi No backend server just one database current database. Thanks
  11. A

    Refresh Navigation pane “Tables”

    Hi CurrentDb.TableDefs.Refresh Above does not force navigation pane to refresh, still takes 5-10 seconds to do it itself. Thanks
  12. A

    Refresh Navigation pane “Tables”

    qry_test = "CREATE TABLE Test" & "(" & _ " Field1 TEXT(20) null, " & _ Set rs = cnnDB.Execute(qry_test) ‘Here the refresh should go to force a Navigation Pane refresh
  13. A

    Refresh Navigation pane “Tables”

    Hi After I add a table or delete a table is Ado. How do I refresh Navigation pane “Tables” with code. Thank you
  14. A

    I need to create A materialized query in Access VBA

    Hi Below is a loop that displays the required info, how do I Concatenate this information into a string so that i build the sql Create command. as you can see when I get out of the loop I only get one result the last one but I need to stay in the loop to get all one by one. how do I store the...
  15. A

    Connect to MySQL via ODBC

    Hi Have a look at this example: ConnectString = "ODBC;DRIVER={MySQL ODBC 5.1 Driver}" _ & ";SERVER=" & strServerIp _ & ";DATABASE=" & strDatabaseName _ & ";UID=" & strUserName _ & ";PWD=" & strPassword _ & ";OPTION=2" and to use the connection as follow...
  16. A

    I need to create A materialized query in Access VBA

    Sorry Galaxiom I meant to say I know how to do the CREATE table in code. It’s the putting of the stuff together dynamically before the CREATE and the columns can be very big or small as stated above. I really hope that is very clear. Thank you very much in advance.
  17. A

    I need to create A materialized query in Access VBA

    I have no I deal how to do it as the result of the record set above can be very large or small. For example 30 columns or 5 columns each time the lookup table is updated. Can you please show me an example I know that is too much to ask. Thank you for your advice.
  18. A

    I need to create A materialized query in Access VBA

    it runis and displays row by row all fied names and datatype. thats all it does.
  19. A

    I need to create A materialized query in Access VBA

    I need to create a new table in current databases using ADODB whose properties are defined in a lookup table. Public Function Create table() Dim cnnDB As ADODB.Connection Dim myRecordSet As ADODB.Recordset Dim tblname As String Dim qry_Issues As String ' Get connection to current database...
Top Bottom