tgf-47
Member
- Joined
- Feb 16, 2010
- Messages
- 15
- Programming Experience
- Beginner
In my crystal report I have columns and rows. Columns displaying my headings and the rows the data in the table.
Here is an example
ID | Name
----|------
123 | John
347 | Max
348 | Merry
749 | Pete
and so on, u get the picture.
NOW ---> When I click on cell B3 (Merry), I want to know what I have clicked.
In these codes:
I want to know how to provide the info to populate those variables. For the expamle above, ColumnSelected should be = "name" and ValueSelected = "Merry".
How do I do this in Crystal reports, using vb.net 2008
Here is an example
ID | Name
----|------
123 | John
347 | Max
348 | Merry
749 | Pete
and so on, u get the picture.
NOW ---> When I click on cell B3 (Merry), I want to know what I have clicked.
In these codes:
VB.NET:
Dim CulumnSelected as string = ""
Dim ValueSelected as string = ""
How do I do this in Crystal reports, using vb.net 2008