2016-10-05 8 views

답변

0
BusComp.GetPicklistBusComp(FieldName) 

다음 예 시벨 VB이다 :

If this.GetFieldValue("City") = "ABC" Then 
    Set oBCPick = this.GetPicklistBusComp("CUT Address") 
    With oBCPick 
     .ClearToQuery 
     .SetSearchSpec "Value", "CA" 
     .ExecuteQuery (ForwardOnly) 
     If .FirstRecord Then .Pick 
    End With 
    Set oBCPick = Nothing 
End If