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
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:
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.