Board index » delphi » Session.ModifyAlias question
Frank Fortino
![]() Delphi Developer |
Mon, 22 Oct 2001 03:00:00 GMT
Session.ModifyAlias question
Hi,
I have a program with a large number of Tables and Querys. I want the user to be able to work with LiveData, or TestData. I cannot use a second alias for TestData, because I would The Session has a method 'ModifyAlias' that changes the path of The following code will change the path of my alias (Tbs) procedure TForm1.TestDataBtnClick(Sender: TObject); Session.ModifyAlias('Tbs', List); Table1.Open; // Open All Tables The above procedure works, sometimes. If I try and run the program without changing Table1's What am I doing wrong? Thanks, Frank |