Sign up on the Revelation Software website to have access to the most current content, and to be able to ask questions and get answers from the Revelation community

At 19 JUN 1998 05:37:32PM Jim Wheeler wrote:

I would like to keep certain users from opening the System Editor.

I tried changing the access permissions for it in the Database Manager; User Managment, but it had no effect.

Can anybody point me in the right direction?

Also, does anybody know which system table holds the User Name and Access Level. I know that I can retrieve the info using List_Users, but that can only be run from the command line, and resetting the RECEIVER still only gets me the User names.


At 22 JUN 1998 11:09AM John Duquette wrote:

I tried changing the access permissions for it in the Database Manager; User Managment, but it had no effect. Can anybody point me in the right direction?

If you set your users security to "USER" they should only be able to access OI in runtime mode and I believe the system editor is disabled.

If they are clicking on the OpenInsight on the task bar you can hide OI with the following code that Don Bakke posted:

Declare function FindWindow, ShowWindow

hWnd1%=FindWindow("RTI_OINSIGHT":\00\, "")

hWnd2%=FindWindow("AREV":\00\, "")

hWnd3%=FindWindow("PROGMAN":\00\, "")

rv=ShowWindow(hWnd1%, 0)

rv=ShowWindow(hWnd2%, 0)

rv=ShowWindow(hWnd3%, 2)

Also, does anybody know which system table holds the User Name and Access Level. I know that I can retrieve the info using List_Users, but that can only be run from the command line, and resetting the RECEIVER still only gets me the User names.

All the user information is stored in the SYSENV table (encrypted). If you want to retrieve all the data from the List_Users routine you should add the following line to your code:

call set_rowdef(\010101\) /* use a 01 for each column of data that is to be displayed */

John Revelation

View this thread on the forum...

  • third_party_content/community/commentary/forums_nonworks/cc35cf1b6e9d9ece852566280076cb4c.txt
  • Last modified: 2023/12/28 07:40
  • by 127.0.0.1