F
Frank
Hi,
in the code below, does it matter, in this case, whether I use byval or
byref? I don't think so but I would like confirmation. In both case I don't
change the actual value of pdgts, just the data it refers to.
Thanks
Frank
Private Sub somesub(ByRef pdgts As DataGridTableStyle, ByVal pds As DataSet)
....somecode..
pdgts.GridColumnStyles.Add(colArt)
End Sub
in the code below, does it matter, in this case, whether I use byval or
byref? I don't think so but I would like confirmation. In both case I don't
change the actual value of pdgts, just the data it refers to.
Thanks
Frank
Private Sub somesub(ByRef pdgts As DataGridTableStyle, ByVal pds As DataSet)
....somecode..
pdgts.GridColumnStyles.Add(colArt)
End Sub