VB Help - update a system field

Thanks for the help, Sean!
Â
Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@...




________________________________
From: Sean McDaniel <smcdanie@...>
To: vantage@yahoogroups.com
Sent: Tue, March 23, 2010 12:41:25 PM
Subject: RE: [Vantage] Re: VB Help - update a system field

Â
Instead of key1=…

Do this:

[edvVarName] .dataView( [edvVarName] .Row)("PartNum" ) = <value>

From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of Keith
Sent: Tuesday, March 23, 2010 11:50 AM
To: vantage@yahoogroups .com
Subject: [Vantage] Re: VB Help - update a system field

OK, found it. Once I get this object, how do I write to it? It seems to be showing me how to retrive a value into a variable, I want to write to the object itself, right?

Thanks,
Keith

--- In vantage@yahoogroups .com <mailto:vantage% 40yahoogroups. com> , "Sean McDaniel" <smcdanie@.. .> wrote:
>
> Typically, when I change a field value I change it at the database level.
>
> If you are in customization, go to object explorer, click on middle tab, expand to table field you want to get/set data from and it will have an example like this…
>
>
>
> Dim Key1 as string
>
> Dim [edvVarName] As EpiDataView = CType(oTrans. EpiDataViews( "ReportParam" ), EpiDataView)
>
> Key1 = [edvVarName] .dataView( [edvVarName] .Row)("PartNum" )
>
>
>
>
>
> From: vantage@yahoogroups .com <mailto:vantage% 40yahoogroups. com> [mailto:vantage@yahoogroups .com <mailto:vantage% 40yahoogroups. com> ] On Behalf Of Keith Walter
> Sent: Tuesday, March 23, 2010 11:23 AM
> To: vantage@yahoogroups .com <mailto:vantage% 40yahoogroups. com>
> Subject: Re: [Vantage] VB Help - update a system field
>
>
>
>
>
> Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:
>
> Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
> '// ** Place Event Handling Code Here **
> dim myVariable as EpiNumericEditor
> myVariable=CType( csm.GetNativeCon trolReference( "2fb3632e- e429-4503- 86cf-6b353409116 a"),EpiNumericEd itor)
> myVariable.Value = txtLbrHrsCust. Value
> End Sub
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@ ... <mailto:keith. walter%40norgren auto.com>
>
> ____________ _________ _________ __
> From: Sean McDaniel <smcdanie@.. . <mailto:smcdanie% 40rochester. rr.com> >
> To: vantage@yahoogroups .com <mailto:vantage% 40yahoogroups. com> <mailto:vantage% 40yahoogroups. com>
> Sent: Tue, March 23, 2010 10:47:40 AM
> Subject: RE: [Vantage] VB Help - update a system field
>
>
> You need to do something like this to get to that textbox.
>
> dim myVariable as EpiNumericEditor
>
> myVariable
> =CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
> "),EpiNumericEditor )
>
> From: vantage@yahoogroups .com [mailto:vantage@ yahoogroups .com] On Behalf Of
> Keith Walter
> Sent: Tuesday, March 23, 2010 9:53 AM
> To: vantage@yahoogroups .com
> Subject: [Vantage] VB Help - update a system field
>
> I am trying to update the Labor Entry form to auto-update the Burden Hrs
> field when you enter Labor hrs. I could not add an event to the system
> Labor Hrs field, so I added a custom textbox and added this code:
>
> Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
> As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
> '// ** Place Event Handling Code Here **
> Dim txtbox as object = nbrBurdenHrs
> txtbox.Value = txtLbrHrsCust. Value
> End Sub
>
> But my compile fails: Name 'nbrBurdenHrs' is not declared.
>
> How do I declare this to update the value? Is there a better way to do
> this?
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> [Non-text portions of this message have been removed]
>

[Non-text portions of this message have been removed]







[Non-text portions of this message have been removed]
I am trying to update the Labor Entry form to auto-update the Burden Hrs field when you enter Labor hrs. I could not add an event to the system Labor Hrs field, so I added a custom textbox and added this code:

 Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
  '// ** Place Event Handling Code Here **
      Dim txtbox as object = nbrBurdenHrs
      txtbox.Value = txtLbrHrsCust.Value
 End Sub

But my compile fails: Name 'nbrBurdenHrs' is not declared.

How do I declare this to update the value? Is there a better way to do this?

Thanks,
Â
Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@...




[Non-text portions of this message have been removed]
You need to do something like this to get to that textbox.

dim myVariable as EpiNumericEditor

myVariable
=CType(csm.GetNativeControlReference("bdda2b2b-d8b4-4c89-a9e1-77466d34d7fc
"),EpiNumericEditor)





From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Keith Walter
Sent: Tuesday, March 23, 2010 9:53 AM
To: vantage@yahoogroups.com
Subject: [Vantage] VB Help - update a system field





I am trying to update the Labor Entry form to auto-update the Burden Hrs
field when you enter Labor hrs. I could not add an event to the system
Labor Hrs field, so I added a custom textbox and added this code:

Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args
As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
'// ** Place Event Handling Code Here **
Dim txtbox as object = nbrBurdenHrs
txtbox.Value = txtLbrHrsCust.Value
End Sub

But my compile fails: Name 'nbrBurdenHrs' is not declared.

How do I declare this to update the value? Is there a better way to do
this?

Thanks,

Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@... <mailto:keith.walter%40norgrenauto.com>

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]
Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:

 Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
  '// ** Place Event Handling Code Here **
       dim myVariable as EpiNumericEditor
       myVariable=CType(csm.GetNativeControlReference("2fb3632e-e429-4503-86cf-6b353409116a"),EpiNumericEditor)
       myVariable.Value = txtLbrHrsCust.Value
 End Sub
Â
Thanks,

Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@...




________________________________
From: Sean McDaniel <smcdanie@...>
To: vantage@yahoogroups.com
Sent: Tue, March 23, 2010 10:47:40 AM
Subject: RE: [Vantage] VB Help - update a system field

Â
You need to do something like this to get to that textbox.

dim myVariable as EpiNumericEditor

myVariable
=CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
"),EpiNumericEditor )

From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of
Keith Walter
Sent: Tuesday, March 23, 2010 9:53 AM
To: vantage@yahoogroups .com
Subject: [Vantage] VB Help - update a system field

I am trying to update the Labor Entry form to auto-update the Burden Hrs
field when you enter Labor hrs. I could not add an event to the system
Labor Hrs field, so I added a custom textbox and added this code:

Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
'// ** Place Event Handling Code Here **
Dim txtbox as object = nbrBurdenHrs
txtbox.Value = txtLbrHrsCust. Value
End Sub

But my compile fails: Name 'nbrBurdenHrs' is not declared.

How do I declare this to update the value? Is there a better way to do
this?

Thanks,

Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]







[Non-text portions of this message have been removed]
Typically, when I change a field value I change it at the database level.

If you are in customization, go to object explorer, click on middle tab, expand to table field you want to get/set data from and it will have an example like this…



Dim Key1 as string

Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)

Key1 = [edvVarName].dataView([edvVarName].Row)("PartNum")





From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Keith Walter
Sent: Tuesday, March 23, 2010 11:23 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] VB Help - update a system field





Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:

Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
'// ** Place Event Handling Code Here **
dim myVariable as EpiNumericEditor
myVariable=CType(csm.GetNativeControlReference("2fb3632e-e429-4503-86cf-6b353409116a"),EpiNumericEditor)
myVariable.Value = txtLbrHrsCust.Value
End Sub

Thanks,

Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@... <mailto:keith.walter%40norgrenauto.com>

________________________________
From: Sean McDaniel <smcdanie@... <mailto:smcdanie%40rochester.rr.com> >
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Sent: Tue, March 23, 2010 10:47:40 AM
Subject: RE: [Vantage] VB Help - update a system field


You need to do something like this to get to that textbox.

dim myVariable as EpiNumericEditor

myVariable
=CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
"),EpiNumericEditor )

From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of
Keith Walter
Sent: Tuesday, March 23, 2010 9:53 AM
To: vantage@yahoogroups .com
Subject: [Vantage] VB Help - update a system field

I am trying to update the Labor Entry form to auto-update the Burden Hrs
field when you enter Labor hrs. I could not add an event to the system
Labor Hrs field, so I added a custom textbox and added this code:

Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
'// ** Place Event Handling Code Here **
Dim txtbox as object = nbrBurdenHrs
txtbox.Value = txtLbrHrsCust. Value
End Sub

But my compile fails: Name 'nbrBurdenHrs' is not declared.

How do I declare this to update the value? Is there a better way to do
this?

Thanks,

Keith Walter
Vantage Coordinator
Norgren Automation Solutions, Saline Division
keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]





[Non-text portions of this message have been removed]
OK, found it. Once I get this object, how do I write to it? It seems to be showing me how to retrive a value into a variable, I want to write to the object itself, right?

Thanks,
Keith

--- In vantage@yahoogroups.com, "Sean McDaniel" <smcdanie@...> wrote:
>
> Typically, when I change a field value I change it at the database level.
>
> If you are in customization, go to object explorer, click on middle tab, expand to table field you want to get/set data from and it will have an example like this…
>
>
>
> Dim Key1 as string
>
> Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)
>
> Key1 = [edvVarName].dataView([edvVarName].Row)("PartNum")
>
>
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Keith Walter
> Sent: Tuesday, March 23, 2010 11:23 AM
> To: vantage@yahoogroups.com
> Subject: Re: [Vantage] VB Help - update a system field
>
>
>
>
>
> Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:
>
> Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
> '// ** Place Event Handling Code Here **
> dim myVariable as EpiNumericEditor
> myVariable=CType(csm.GetNativeControlReference("2fb3632e-e429-4503-86cf-6b353409116a"),EpiNumericEditor)
> myVariable.Value = txtLbrHrsCust.Value
> End Sub
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@... <mailto:keith.walter%40norgrenauto.com>
>
> ________________________________
> From: Sean McDaniel <smcdanie@... <mailto:smcdanie%40rochester.rr.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Sent: Tue, March 23, 2010 10:47:40 AM
> Subject: RE: [Vantage] VB Help - update a system field
>
>
> You need to do something like this to get to that textbox.
>
> dim myVariable as EpiNumericEditor
>
> myVariable
> =CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
> "),EpiNumericEditor )
>
> From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of
> Keith Walter
> Sent: Tuesday, March 23, 2010 9:53 AM
> To: vantage@yahoogroups .com
> Subject: [Vantage] VB Help - update a system field
>
> I am trying to update the Labor Entry form to auto-update the Burden Hrs
> field when you enter Labor hrs. I could not add an event to the system
> Labor Hrs field, so I added a custom textbox and added this code:
>
> Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
> As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
> '// ** Place Event Handling Code Here **
> Dim txtbox as object = nbrBurdenHrs
> txtbox.Value = txtLbrHrsCust. Value
> End Sub
>
> But my compile fails: Name 'nbrBurdenHrs' is not declared.
>
> How do I declare this to update the value? Is there a better way to do
> this?
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Instead of key1=…

Do this:

[edvVarName].dataView([edvVarName].Row)("PartNum") = <value>



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Keith
Sent: Tuesday, March 23, 2010 11:50 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: VB Help - update a system field





OK, found it. Once I get this object, how do I write to it? It seems to be showing me how to retrive a value into a variable, I want to write to the object itself, right?

Thanks,
Keith

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> , "Sean McDaniel" <smcdanie@...> wrote:
>
> Typically, when I change a field value I change it at the database level.
>
> If you are in customization, go to object explorer, click on middle tab, expand to table field you want to get/set data from and it will have an example like this…
>
>
>
> Dim Key1 as string
>
> Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)
>
> Key1 = [edvVarName].dataView([edvVarName].Row)("PartNum")
>
>
>
>
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On Behalf Of Keith Walter
> Sent: Tuesday, March 23, 2010 11:23 AM
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] VB Help - update a system field
>
>
>
>
>
> Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:
>
> Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
> '// ** Place Event Handling Code Here **
> dim myVariable as EpiNumericEditor
> myVariable=CType(csm.GetNativeControlReference("2fb3632e-e429-4503-86cf-6b353409116a"),EpiNumericEditor)
> myVariable.Value = txtLbrHrsCust.Value
> End Sub
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@... <mailto:keith.walter%40norgrenauto.com>
>
> ________________________________
> From: Sean McDaniel <smcdanie@... <mailto:smcdanie%40rochester.rr.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Tue, March 23, 2010 10:47:40 AM
> Subject: RE: [Vantage] VB Help - update a system field
>
>
> You need to do something like this to get to that textbox.
>
> dim myVariable as EpiNumericEditor
>
> myVariable
> =CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
> "),EpiNumericEditor )
>
> From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of
> Keith Walter
> Sent: Tuesday, March 23, 2010 9:53 AM
> To: vantage@yahoogroups .com
> Subject: [Vantage] VB Help - update a system field
>
> I am trying to update the Labor Entry form to auto-update the Burden Hrs
> field when you enter Labor hrs. I could not add an event to the system
> Labor Hrs field, so I added a custom textbox and added this code:
>
> Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
> As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
> '// ** Place Event Handling Code Here **
> Dim txtbox as object = nbrBurdenHrs
> txtbox.Value = txtLbrHrsCust. Value
> End Sub
>
> But my compile fails: Name 'nbrBurdenHrs' is not declared.
>
> How do I declare this to update the value? Is there a better way to do
> this?
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> [Non-text portions of this message have been removed]
>





[Non-text portions of this message have been removed]
Thanks Sean! This helped with an issue I was trying to address too.

@

--- In vantage@yahoogroups.com, "Sean McDaniel" <smcdanie@...> wrote:
>
> Typically, when I change a field value I change it at the database level.
>
> If you are in customization, go to object explorer, click on middle tab, expand to table field you want to get/set data from and it will have an example like this…
>
>
>
> Dim Key1 as string
>
> Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)
>
> Key1 = [edvVarName].dataView([edvVarName].Row)("PartNum")
>
>
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Keith Walter
> Sent: Tuesday, March 23, 2010 11:23 AM
> To: vantage@yahoogroups.com
> Subject: Re: [Vantage] VB Help - update a system field
>
>
>
>
>
> Thanks Sean, that seems to update the value, but it is not consistant. When I enter a number in the LaborHrs field, the BurdonHrs change accordingly, but when I tab out of the field, the value reverts back to what it was. Is there another event I could use? Can I force an update to make the value stick? Here is my code:
>
> Private Sub txtLbrHrsCust_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtLbrHrsCust.ValueChanged
> '// ** Place Event Handling Code Here **
> dim myVariable as EpiNumericEditor
> myVariable=CType(csm.GetNativeControlReference("2fb3632e-e429-4503-86cf-6b353409116a"),EpiNumericEditor)
> myVariable.Value = txtLbrHrsCust.Value
> End Sub
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@... <mailto:keith.walter%40norgrenauto.com>
>
> ________________________________
> From: Sean McDaniel <smcdanie@... <mailto:smcdanie%40rochester.rr.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Sent: Tue, March 23, 2010 10:47:40 AM
> Subject: RE: [Vantage] VB Help - update a system field
>
>
> You need to do something like this to get to that textbox.
>
> dim myVariable as EpiNumericEditor
>
> myVariable
> =CType(csm.GetNativ eControlReferenc e("bdda2b2b- d8b4-4c89- a9e1-77466d34d7f c
> "),EpiNumericEditor )
>
> From: vantage@yahoogroups .com [mailto:vantage@yahoogroups .com] On Behalf Of
> Keith Walter
> Sent: Tuesday, March 23, 2010 9:53 AM
> To: vantage@yahoogroups .com
> Subject: [Vantage] VB Help - update a system field
>
> I am trying to update the Labor Entry form to auto-update the Burden Hrs
> field when you enter Labor hrs. I could not add an event to the system
> Labor Hrs field, so I added a custom textbox and added this code:
>
> Private Sub txtLbrHrsCust_ ValueChanged( ByVal Sender As Object, ByVal Args
> As System.EventArgs) Handles txtLbrHrsCust. ValueChanged
> '// ** Place Event Handling Code Here **
> Dim txtbox as object = nbrBurdenHrs
> txtbox.Value = txtLbrHrsCust. Value
> End Sub
>
> But my compile fails: Name 'nbrBurdenHrs' is not declared.
>
> How do I declare this to update the value? Is there a better way to do
> this?
>
> Thanks,
>
> Keith Walter
> Vantage Coordinator
> Norgren Automation Solutions, Saline Division
> keith.walter@ norgrenauto. com <mailto:keith. walter%40norgren auto.com>
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> [Non-text portions of this message have been removed]
>