Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > .NET General

Vista - Resolving a pointer in quickwatch?

Reply
 
Old 03-26-2008   #1 (permalink)
Michel Racicot


 
 

Resolving a pointer in quickwatch?

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



My System SpecsSystem Spec
Old 03-26-2008   #2 (permalink)
Michel Racicot


 
 

Re: Resolving a pointer in quickwatch?

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

"Michel Racicot" <mracicot@xxxxxx> wrote in message
news:e6XevR1jIHA.4196@xxxxxx
Quote:

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

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Infection Resolving Team System Security
Vista box not resolving IP from hostname Vista General
Problem with IP resolving Vista security
IE7 not resolving after SP1 install Vista security


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46