• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Using Forms

Pofski

Member
Hello everybody.


I was wondering if it would be possible, through the use of forms, to make it so that a group of people could fill in data in certain coloms of a read only file.

The idea is that there is a list that ppl could open as read only, and that if they are part of a certain group, they get a form.

In this form we would like it to be possible for them to go to a certain row, and put data in kolom P and S for example.


Thank you in advance
 
You could programme in different levels of access depending on the user name


Code:
application.username


so for example 

[pre]if application.username = "myusername" then
userform1.textbox1.enabled=true
end if
[/pre]
 
Back
Top