Initialize a public variable

180 Views Asked by At

I am trying to initialize a public variable in vb.net 2013 in a form and set a value for it from data grid view and then use it value in anther form put when i use the value of it is zero

here is the initialization

Public IdSt As Long

set value for it

        IdSt = Me.DataGridView1.SelectedRows(0).Cells(0).Value

and this is where i use it

Dim std As Long
    If logIn.flag = True Then

        std = logIn.idstu
    Else

        std = CourseReq.IdSt
    End If
1

There are 1 best solutions below

3
On

Sounds like you aren't referencing the correct object.

Let me example, if you have two forms called MainForm and SecondForm and declare them like this:

Dim myMainForm as New MainForm
Dim mySecondForm as New SecondForm

If you try to access IdSt by doing MainForm.IdSt, that is not the same as myMainForm.IdSt.

So make sure you can access the actual main form object that you set the variable on.