09-07-2006 09:08 AM
09-12-2006 07:13 AM
Set oMyHeaders = View.ActiveSheet.ActiveArea.DisplayObj.HeaderItemsIt calls a messagebox for each configured headeritem. If you want to write the titles of these items into a new channel you can use the ChT() variable. Specify the row and a textchannel as parameters of this function.
For Each oMyHeaderItem in oMyHeaders
Call MsgBoxDisp(oMyHeaderItem.Name)
Next
09-13-2006 03:47 AM
09-13-2006 04:21 AM
noChn = globUsedChnTo add the channel to a table in VIEW, you can use the command
Call chnalloc("Resumee",noChn,1,DataTypeString)
for i = 1 to noChn
cht(i, cno("Resumee"))= ChnPropGet(i, "name")
next
view.activesheet.ActiveArea.DisplayObj.Columns.Add("Resumee")regards