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!

Add a new column to ACCPAC GRID

Status
Not open for further replies.

Boris10

IS-IT--Management
Jan 26, 2012
97
KE
Hi everyone,

I am trying to customize PW Purchase Requisition Entry Form. Would any one have any idea how to add an extra column to the Requisition Detail grid. I came across this code on greytrix but failing to make it work:
Code:
Private Sub ACCPACIC1550UICtrl1_OnUIAppOpened()
 
On Error GoTo ErorHandler
 
Dim lintcolumnCount As Integer
 
‘set the number of column present in the viewlist
 lintcolumnCount = vwkTDtlList.ColumnCount
 
‘Add the category column
 vwkTDtlList.AddColumn lintcolumnCount, “CATEGORY”, 0, “Category”, ALIGMENT_LEFT, 100, True, True, False

Could anyone point me in the right direction.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top