Resolving a pointer in quickwatch?

M

Michel Racicot

I need to evaluate an object that is assigned to a variable that is being
reused later on... how can I do that?

In the following exemple, I want to continue evaluating the "Input" variable
marked with **** even if it's being reused later for NO_SEM

In Delphi, I only had to resolve the object to it's pointer state and then
watch the pointer resolution in the evaluator... how can I do that in
VB.NET?!


'MT_TSN montant
TD = New HtmlTableCell
Input = AddDummyInput("MT_TSN", RowNumber.ToString,
Row("MT_TSN"), Me) ' ***************
If IsEarning AndAlso (IsBankHoliday OrElse (appStat =
"5" AndAlso CdSup = "8")) Then
Input.ReadOnlyField = True
End If
TD.Controls.Add(Input)
TR.Cells.Add(TD)

'NO_SEM
If PayrollContext.IsWeekEntry = True Then
Input = AddDummyInput("NO_SEM", RowNumber.ToString,
Row("NO_SEM"), False, True, Me)
Input.OnChange = "initBankDate(this.id,this.value);"

TD = New HtmlTableCell
TD.Controls.Add(Input)

TR.Cells.Add(TD)
End If
 
M

Michel Racicot

What I mean, is that I want to watch the object itself... and not the
variable in which it is temporary assigned...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top