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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Customise IC stock transfer 1

Status
Not open for further replies.

shaccpac

Technical User
Sep 12, 2008
84
I have to customise the IC stock transfer transaction and validate the transfer Qty from the field that i will put in the customised form after dropping the OCX on the screen.

Can I pass the values from my textbox to ACCPAC IC transfer transfer qty & Requested qty.

Plz help.
 
Plz explain me how i can do this i mean events & methods for the ocx?
 
First add this to the top:

Public WithEvents dsICLine As AccpacIC3410.ACCPACDSControl

In the AccpacIC3410.OnUiAppOpened subroutine, put:

Set dsICLine = .UIDSControls("dsICTRED")

Then you can put dsICLine.Fields("QUANTITY") = Mytextbox at the appropriate time.



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top