I find it very difficult to put this question here because I do not think I can offer anything back to this community. I currently programming an application that, once it's started, asks the user to login. If the data entered by the user match those in the database, then the user is logged in. Then the application fetches the data about the user from the database such as a user ID, name, role.
Now I would like this information to use widely in the application. My current situation:
- Solution
- Executable (main project)
- Database.dll (classes etc)
In database.dll I have the follow class:
Public Class SessionProfile
Public _gebruikersID As String
Public _gebruikersNaam As String
Public _gebruikersRole As String
Public Property gebruikersID() As String
Get
Return _gebruikersID
End Get
Set(ByVal value As String)
_gebruikersID = value
End Set
End Property
Public Property gebruikersNaam() As String
Get
Return _gebruikersNaam
End Get
Set(ByVal value As String)
_gebruikersNaam = value
End Set
End Property
Public Property gebruikersRole() As String
Get
Return _gebruikersRole
End Get
Set(ByVal value As String)
_gebruikersRole = value
End Set
End Property
End Class
In my main executable I refer to this class as follow: Dim SessionProfile As New Database.SessionProfile() and in my login form I use the following code to set the setter:
If loginResult = 1 Then
SessionProfile.gebruikersID = SQLHook.Results("SELECT * FROM tblgebruikers WHERE GebruikersNaam = '" & TextGebruikersNaam.Text.Replace("'", "''") & "'", "GebruikersID")
SessionProfile.gebruikersNaam = SQLHook.Results("SELECT * FROM tblgebruikers WHERE GebruikersNaam = '" & TextGebruikersNaam.Text.Replace("'", "''") & "'", "gebruikersNaam")
SessionProfile.gebruikersRole = SQLHook.Results("SELECT * FROM tblgebruikers WHERE GebruikersNaam = '" & TextGebruikersNaam.Text.Replace("'", "''") & "'", "gebruikersRole")
DialogResult = DialogResult.OK
Else
SessionProfile.gebruikersID = ""
SessionProfile.gebruikersNaam = ""
SessionProfile.gebruikersRole = ""
DialogResult = DialogResult.NO
End If
Now I go back to my main form and use for example MsgBox(SessionProfile.GebruikersNaam) and I get nothing returned.
Is there a reason this theory is not working or did I something wrong? The query's are good because if you dim them as string and msgbox them, it displays the correct text.
Could somebody help me solving my problem?
