Quantcast
Channel:
Viewing all articles
Browse latest Browse all 43829

Forum Post: RE: Reusing login logout transactions in multiple scripts?

$
0
0
Hi, You have to put the code which you want to reuse in functions in a .bdh file. For example: LoginLogout.bdh --------------- dclfunc   function FMyLogin   begin     // your code for login   end FMyLogin;   function FMyLogout   begin     // your code for logout   end FMyLogout;   MainScript.bdf -------------- // .... on top use "LoginLogout.bdh" // ... transaction TMain begin   FMyLogin();   // custom code   FMyLogout(); end TMain;  

Viewing all articles
Browse latest Browse all 43829

Trending Articles