Default Value Blank Title 80403

I think a BAM could possibly do this , monitor possibly 'CustID' or similar , if it has changed (or in this case in new) then update whichever field correlated to the VB Form input.
--- On Wed, 7/15/09, Kunal Ganguly <kunal_vantage@...> wrote:


From: Kunal Ganguly <kunal_vantage@...>
Subject: Re: [Vantage] Default Value
To: vantage@yahoogroups.com
Date: Wednesday, July 15, 2009, 10:20 AM








Yes, you would need to use the Customer.GetNewCust omer method directive.

Thanks,
Kunal

____________ _________ _________ __
From: RICH WAGNER <rwagner@bawplastics .com>
To: "vantage@yahoogroups .com" <vantage@yahoogroups .com>
Sent: Wednesday, July 15, 2009 8:53:53 AM
Subject: [Vantage] Default Value

Is it possible to have a default value put into a VB field on the customer table when a new customer is created? Could a BAM do this?

Thanks,

Rich Wagner

[cid:image001. jpg@ 01CA0532. 295A5510]

412-384-3100

rwagner@bawplastics .com<mailto: rwagner@bawplast ics .com>

www.bawplastics. com<http://www.bawplast ics.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]
Is it possible to have a default value put into a VB field on the customer table when a new customer is created? Could a BAM do this?


Thanks,



Rich Wagner



[cid:image001.jpg@01CA0532.295A5510]





412-384-3100

rwagner@...<mailto:rwagner@...>

www.bawplastics.com<http://www.bawplastics.com/>





[Non-text portions of this message have been removed]
Here is a tip I got a while back on how to do this with a checkbox:

In Customisation Tools, add a BeforeFieldChange event to the Customer
table and add in the following code:

Select Case args.Column.ColumnName
Case "CustID"
' Check if new account
if (args.Row("CustID" )="") then
' Set CheckBox02 to True
Dim CB02 As EpiCheckBox = CType(csm.getNative ControlReference
("5a2678b8-7003- 480b-8bc2- 27c2e020ad51" ), EpiCheckBox)
CB02.checked = true
Case Else
End Select

You will need to change the ID within the quotes - "5a267...." - to
the EpiGuid for your specific checkbox. Select the checkbox, then
look at the Properties tab..


________________________________
From: RICH WAGNER <rwagner@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Wednesday, July 15, 2009 9:53:53 AM
Subject: [Vantage] Default Value





Is it possible to have a default value put into a VB field on the customer table when a new customer is created? Could a BAM do this?

Thanks,

Rich Wagner

[cid:image001.jpg@ 01CA0532. 295A5510]

412-384-3100

rwagner@bawplastics .com<mailto:rwagner@bawplastics .com>

www.bawplastics. com<http://www.bawplastics.com/>

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







[Non-text portions of this message have been removed]
Yes, you would need to use the Customer.GetNewCustomer method directive.

Thanks,
Kunal




________________________________
From: RICH WAGNER <rwagner@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Wednesday, July 15, 2009 8:53:53 AM
Subject: [Vantage] Default Value





Is it possible to have a default value put into a VB field on the customer table when a new customer is created? Could a BAM do this?

Thanks,

Rich Wagner

[cid:image001.jpg@ 01CA0532. 295A5510]

412-384-3100

rwagner@bawplastics .com<mailto:rwagner@bawplastics .com>

www.bawplastics. com<http://www.bawplastics.com/>

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







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