You are viewing our Forum Archives. To view or take place in current topics click here.
How to make a VIP Feature in VB?????
Posted:

How to make a VIP Feature in VB?????Posted:

SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
I am looking for a way or source code to make a VIP feature for people....

I am not using like

If TextBox1.Text "TheirName"
TextBox2.Text = "Password"
Then VIP.show
else
MsgBox "error, no vip"

^^ I AM NOT USING THAT!
My program actually signs into my website.
So basically i want to have a vip feature... maybe if it uses GetElementByID to see if they have a certain badge or something/....
IDK

I am just really looking for it.
+Rep and ill give 50 Subs plus a shoutout on YouTube...
#2. Posted:
SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Please!!! Someone!
I have many offers to give!
#3. Posted:
5FDP_Jekyll
  • Supporter
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
I'm not exactly sure but i think you would have to use the get element by id then make it an if then statement in vb. most likely
If getelementbyid = [vip] Then
[feature].enabled = True
else
[feature].enabled = False
MsgBox("You do not have a vip membership.",MsgBoxStyle.Okonly,"Invalid Vip membership")


Again i'm not exactly sure how to do this but i think that might work, then again it may not, i just don't know.
#4. Posted:
SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Puddle_Of_Mudd wrote I'm not exactly sure but i think you would have to use the get element by id then make it an if then statement in vb. most likely
If getelementbyid = [vip] Then
[feature].enabled = True
else
[feature].enabled = False
MsgBox("You do not have a vip membership.",MsgBoxStyle.Okonly,"Invalid Vip membership")


Again i'm not exactly sure how to do this but i think that might work, then again it may not, i just don't know.

Thanks... but im not sure what the ID is... if you can help me add my skype: skizzaddme

I will have to add a VIP feature to my website/forum.
#5. Posted:
SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
I use forumer as my host... they have a VIP feature... if not Forumotion does.
#6. Posted:
SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Any more helpful tips?
#7. Posted:
5FDP_Jekyll
  • 2 Million
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Well first you would have to add the vip feature to the site, then you would have to make an account a vip member, then find the vip feature's id so you can check it on the profile, then do the elementbyid thing.

There is a way you could easily do this but it would take some time as you would need to:
  • Make a new html file for everyone who has a VIP membership
  • Make a folder for each of those members for the html file


After that you would have to be able to isolate it.

You could do the first one or the second one, second one would be easiest.
#8. Posted:
SocialMods
  • Junior Member
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Status: Offline
Joined: Jan 03, 201311Year Member
Posts: 50
Reputation Power: 1
Puddle_Of_Mudd wrote Well first you would have to add the vip feature to the site, then you would have to make an account a vip member, then find the vip feature's id so you can check it on the profile, then do the elementbyid thing.

There is a way you could easily do this but it would take some time as you would need to:
  • Make a new html file for everyone who has a VIP membership
  • Make a folder for each of those members for the html file


After that you would have to be able to isolate it.

You could do the first one or the second one, second one would be easiest.

Can you add my skype: skizzaddme
I am doing do now...
#9. Posted:
Bashful
  • TTG Senior
Status: Offline
Joined: Aug 02, 201212Year Member
Posts: 1,915
Reputation Power: 77
Status: Offline
Joined: Aug 02, 201212Year Member
Posts: 1,915
Reputation Power: 77
You could use MYSQL and extract names from a database. Possibly passwords.
#10. Posted:
TTGXMODsX
  • TTG Natural
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 996
Reputation Power: 64
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 996
Reputation Power: 64
SocialMods wrote I am looking for a way or source code to make a VIP feature for people....

I am not using like

If TextBox1.Text "TheirName"
TextBox2.Text = "Password"
Then VIP.show
else
MsgBox "error, no vip"

^^ I AM NOT USING THAT!
My program actually signs into my website.
So basically i want to have a vip feature... maybe if it uses GetElementByID to see if they have a certain badge or something/....
IDK

I am just really looking for it.
+Rep and ill give 50 Subs plus a shoutout on YouTube...


You should have a database connected to your program with a list of usernames and passwords for clients,vip, and admins. Now you need to put in a check in your program that will look into the database. Which will look to see if the username is client, vip, or admin. Once it confirms their status the output will be different if you have set your program to display certain features/remove features for different types of users.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.