|
This macro dynamically change the application connections
Ex. 1: To change the connections:
sc_change_connection("Old_Concection01", "New_Connection01" ; "Old_Concection02", "New_Connection02");
Allows to change more then one application/connection in one command. Multiple connections can be passed as parameters that must be separated by a ";".
Ex. 2: Using variables:
sc_change_connection([Global_Connetion], [Test_Connection]);
The changes take effect in the following applications.
Ex. 3: Changing the application main connection
sc_change_connection({Password}, [Test] ; "My_Connection", [Global_Connection]);
The changes take effect in the following applications.
Ex. 4: To delete the exchange:
To recover your previous settings you can use the sc_reset_change_connection(); macro
|