I have this line of code in vba currently:
Set conn = CurrentProject.Connection
I would like to do a global replacement in current project with
conn.ConnectionString =extractConnectionStringADOfromOLE
conn.OPEN
how can i do that using ms-access find and replace tool?
I need to replace the one line of code with two line of codes using the find and replace tools
i tried inserting a readable line break but the compiler produces an error ..
thanks!
Set conn = CurrentProject.Connection
I would like to do a global replacement in current project with
conn.ConnectionString =extractConnectionStringADOfromOLE
conn.OPEN
how can i do that using ms-access find and replace tool?
I need to replace the one line of code with two line of codes using the find and replace tools
i tried inserting a readable line break but the compiler produces an error ..
thanks!