Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Could anyone tell me a code for this?


Aalagon
 Share

Recommended Posts

Well i think you would need to create a list, which would contain the classes you have selected. You would then need a remove button, to obviously remove a class from the list. That's the visual side to it, I'm just not sure what the code would look like. sorry.
Link to comment
Share on other sites

You can try to make a new bar… Make it classA OR classB OR classC OR classD

Something like this:

```
Private Sub scrlClass2Req_Change()
    If scrlClass2Req.Value = -1 Then
        LabelX.Caption = "None"
    Else
        LabelX.Caption = scrlClass2Req.Value & " - " & Trim$(Class(scrlClass2Req.Value).Name)
    End If
End Sub

```
It's just how the scrlClass2Req must looks like, it won't work since you'll have to add more in mod's but I'm not sure in which one. Sorry I can't help any further.

Anasky
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...