I want to use the sting in gridcode
Code
Dim View as string
View = "Rajan & vbtab & 211"
With gridview
.AddItem View
End with
‘
Output (FlexGrid)
Name Value
`Rajan & vbtab & 211`
‘It is showing in name column, it should show Rajan in name column, 211 in value Column.
What wrong in my code.
Expected Output(FlexGrid)
Name Value
Rajan 211
Need code Help
vbtabis the keyword you have not closed your quotes properly..The above code should work.