Skip Login dialog

oh! just remove Application.CreateForm(Tflogin, flogin);?

Hi,
No. Tflogin is the “Application Login screen”. If remove, the application will not work and show the login screen for user login.

image

Hi,

as I understand, you have your own login dialog:

so just remove standard one:

also in the ClientChannel_OnLoginNeeded event you should use your own login dialog.

Hi,
As my understanding, “Data Abstract Server Login” dialog is re-connect to DA server session. It will not access SQL DB server. Am I right? If I correct, then remove standard one that will disconnect the session. I need to handle re-connect without login dialog. Right?

Hi,

it depends on your implementation.
you can check passwords or their hashes in SQL DB.

anyway, you shouldn’t have 2 login methods.
DA Server login can call your login implementation that can return True or False.

Noted with thanks. I will try it.