02-06-2006 04:03 AM
axListBar1 .Pages[0].Items.Insert ( itemCaption, iconName, insertBefore) how should i use this function inorder to show my list of sequence files(ie where should i specify the path of the sequence file ?)
Note: I am binding the listbar control with application manager
If it is not possible Ok i will show it in List Box when the user select a sequence file name i should show the selected file in the sequence window . how this can achieved?
TIA
SRINI
02-07-2006 07:57 AM
Srini,
Although at first thought one would think that we should go directly to the ListBar object to add a new sequence, the best place to perform this task is to use the Application Manager Control. The Application Manager Control contains three different functions you can use to load a Sequence File into the ListBar.
The OpenSequenceFile method lets you define the path to the Sequence File you want to load into the ListBar. This is probably the function you will be using. In case you want to give your users more control over which Sequence Files to load, you can use the OpenSequenceFileDialog or OpenSequenceFilesDialog which will pop up a window so the user can select what file to load.
Regards,
Santiago D
08-30-2007 05:31 PM
In my case I want to modify the filename that is displayed to the user in the ListBar view.
How would I do that?
08-31-2007 12:42 PM - edited 08-31-2007 12:42 PM
Message Edited by Jon M on 08-31-2007 12:43 PM
09-06-2007 07:25 PM
Hi all:
I meet the same questing: I don't know how to add item in the listbar, I can't use ListBarPageItems.Insert ( itemCaption, iconName, insertBefore)
Boone