Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActiveX Control with DataRepeater

Status
Not open for further replies.

jizviz

Programmer
Oct 13, 2002
26
0
0
US
I have created an activex control and have placed it in a datarepeater. The data displays perfectly. I am trying to retrieve the value in the txtAcct field of the control by, for instatnce, double clicking on the row of the datarepeater. I have no idea on how to reference the field so that I can get the actual account number.

Here is the code for the control

Public Property Get Acct() As Variant
Acct = txtAcct
End Property

Public Property Let Acct(ByVal New_Acct As Variant)
txtAcct = New_Acct
End Property

Any help would be greatly appreciated. Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top