Is it possible to open a form with one common user and another as an administrator in the same application?

0

I have a program that in certain parts needs to be run as an administrator, while others need to be run as an ordinary user. Example:

configuracoes.Show() 'Esse será executado como usuário comum'
suporte.Show() 'Esse como administrador'

The ideal would be how to do this in vb.net , but if it is in C #     

asked by anonymous 13.08.2018 / 22:58

1 answer

0

It depends! You want to open it in the same process or in separate processes. If you want to open in the same process, the answer is no. If you want to open in separate processes yes.

Link a tutorial on

    
11.10.2018 / 19:07