Unable to view nodes tat are added dynamically in Jtree

i'm very much new in swings. please take a look at my code and correct me.
i need to add all java, cpp and c files in a project folder to my jtree as nodes. the project folder is selected using jfilechooser. my file nodes are inserted, but they are not showed in the jtree. pls help me.
Message was edited by:
Tammy14

here is the code
public Metrix() {
        initComponents();
        jFileChooser1=new JFileChooser();
        jFileChooser1.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
        root = new DefaultMutableTreeNode("Project");
        java1 = new DefaultMutableTreeNode("Java Files");
        root.add(java1);
        cpp = new DefaultMutableTreeNode("CPP Files");
        root.add(cpp);
        c = new DefaultMutableTreeNode("C Files");
        root.add(c);
        treeModel1 = new DefaultTreeModel(root,true);
        treeModel1.addTreeModelListener(new MyTreeModelListener());
        treeModel1.reload();
        jTree2.setModel(treeModel1);
    public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent,
                                            Object child,
                                            boolean shouldBeVisible)
        int[] a;
        a = new int[1];
        a[0]=0;
        DefaultMutableTreeNode childNode = new DefaultMutableTreeNode(child);
        System.out.println("node " +parent.getChildCount());
        treeModel1.insertNodeInto(childNode, parent, parent.getChildCount());
       if (shouldBeVisible) {
            System.out.println("show");
            jTree2.scrollPathToVisible(new TreePath(childNode.getPath()));
        //a[0]=java1.getIndex(childNode);
        //System.out.println("child count " +parent.getChildCount());
        treeModel1.nodesWereInserted(parent, a);
        //System.out.println("child index : " +parent.getIndex(childNode));
        //System.out.println("a1 "+a[0]);
        //System.out.println(" "+treeModel1.getChild(parent, parent.getChildCount()-1));
        treeModel1.reload(childNode);   
        return childNode;
  public void display()
         Metrix m = new Metrix();
         for(int y=0;y<=jcount;y++)
             m.addObject(m.java1, javafiles[y], true);
             System.out.println(javafiles[y]);
         for( int y=0;y<=cppcount;y++)
             m.addObject(m.java1, cppfiles[y], true);
             System.out.println(cppfiles[y]);
         for(int y=0;y<=ccount;y++)
           m.addObject(m.java1, javafiles[y], true);
             System.out.println(cfiles[y]);
     }

Similar Messages

  • I am unable to view movies that are sent via Messages.

    I cannot view movies sent to me in messages. I get a screen that looks like this:  MOV_6373.MOV.mov  QuickTime movie 1.2MB

    What device are you trying to watch movies sent through messages on? If it's an iPhone, iPod Touch, or iPad, try double-tapping the screen when it comes up with the movie name. If that doesn't work, try restarting your iPhone/iPod/iPad and turning off Wi-Fi or cellular data, depending on which one you're using, then turn it back on. Closing and reopening the messages app, or even all your apps, could help also. Keep in mind also that older iPhone models, like 3Gs, may not play movies sent through messages. If you're using a laptop and the messages app, I'd try the same things you would with an iPhone, but clicking instead of tapping of course. Those are the best suggestions I have, hope they help.

  • Unable to view files which are more than 4megabyte from microsoft word

    hi, i had this problem after updating to latest os for my iphone..
    my mailbox couldn't open files that are larger than 4mb anymore. whenever i tired to open the file from my iphone4, the mail app will crash.
    please help me!

    Just checked the model of card youre using by Hardware ID
    PCI\VEN_02&DEV_0002&SUBSYS_00A02&REV_0A = SB0220 SBLi've! 5. Digital,
    and I think if this is correct, you'll may find some other frustrationed owners asking the
    same question you have.
    Have you tried these drivers
    and/or
    these drivers
    About this issue you and the others are having:
    [url="http://forums.creative.com/creativelabs/board/message?board.id=soundblaster&message.id=4670" target=_blank>See this thread[/url]
    BTW:
    You perhaps can install Audigy 2 drivers and software to your card. Here are the instructions how to do it.
    It's quite easy process. Download Audigy driver/software package (~20MB) (link is there), extract it into some directory. Download the patch (link is on Automatic Method sentence)and follow instructions how to patch the instalation package. Then installation process. I've modded my Audigy 2 to Audigy 2 Zs using a similiar method and everyting else, but GraphicMixer, works great.
    .jtpMessage Edited by jutapa on 08-24-2005 06:38 AM

  • Adding dynamic attributes to static context node

    Hi All,
    I have defined a context node LINES with several attributes. This is done staticly during developmenttime.
    During run-time node LINES is extended with several attributes dynamicly. See below:
    10     HEADER_GUID               ->
    11     DETAIL_GUID               ->
    12     EXTERNAL_ID               ->
    13     OBJECT_TYPE               ->
    14     IN_OUT_PLAN               ->
    15     TRAFFIC_LIGHT_1               ->
    16     TRAFFIC_LIGHT_2               ->
    17     TRAFFIC_LIGHT_3               ->
    18     TRAFFIC_LIGHT_4               ->
    19     _LOCATION          \TYPE=STRING     ->
    20     _ZZTOPGROUPING     \TYPE=STRING     ->
    21     _STATUS          \TYPE=STRING     ->
    22     _100000200          \TYPE=STRING     ->
    19..22 are added dynamicly.
    I have an internal table that matches de new context. This <fs_tb_tree_new> I want to bind like:
    *&- bind table
      lr_node->bind_table( new_items =  <fs_tb_tree_new>
                           set_initial_elements = abap_true ).
    In <fs_tb_tree_new> the dynamicly added attrbutes contains values e.g. (the static attributes also have values via <fs_tb_tree_new>):
                         _LOCATION   _ZZTOPGROUPING  _STATUS              _100000200                   
    5     Africa     0002     Reporting Entity     0.000
    6     Russia, CIS     0003     Identify                          0.000
    An ALV presents the values of the attribute. But.... only the values of the static part are presented, not the dynamic attributes added during runtime.
    Please advise what I forget or do wrong .
    Thanks in advance.
    John

    I solved the issue:
    If you use a combination of static attributes added with dynanic attributes (during runtime) for dynamic ALV, I advise to create a new node and bind the values to this new created node:
    Cheers, John
    wd_this->extend_context( EXPORTING im_struc_descr =  lr_cl_abap_structdescr
                               IMPORTING ex_node = lr_node_alv ).
    Method:
    *&- Create new dynamic context LINES_DYN
    Node for alv-table
      lr_node_info = wd_context->get_node_info( ).
      CALL METHOD lr_node_info->add_new_child_node
        EXPORTING
          name                  = 'LINES_NEW'
          static_element_rtti   = im_struc_descr
          is_static             = abap_true
          is_multiple           = abap_true
          is_multiple_selection = abap_false
        RECEIVING
          child_node_info       = lr_subnode_info.
    lr_node = lr_subnode_info->get_parent( ).
      lr_node = wd_context->get_child_node( 'LINES_NEW' ).
      ex_node = lr_node.
    *&- bind table for alv
      lr_node_alv->bind_table( new_items =  <fs_tb_tree_new>
                               set_initial_elements = abap_true ).

  • Unable to view list of added devices in LMS

    Dear All ,
         Iam working on Cisco LMS 3.2.1.Everything was working fine before but since last 2-3 days we are unable to view the list of added devices under device management tab.We are able to see the added groups only.Because of this issue we are unable to get the logs from the added devices.
    Can anybody help in resolving this issue.....???
    Regards ,
    Divya A M

    We tried the suggested steps and could successfully reset the Casuser Password.But couldnot perform unregistering and registering Apache service.We ended up getting the following errors.
    1.)
    C:\Documents and Settings\Administrator>pdreg -u Apache(no output)
    2.)
    E:\lms\MDC\Apache\bin>pdreg -r Apache -epdcmd: option requires an argument -- eERROR: no such command, or option error.Usage:    pdcmd options...Where -b msg    broadcast message to all daemons -k daemon    kill daemon -K    stop system -H    start system -l    list daemon registry -R daemon    start daemon -i daemon    show daemon status briefly -I    show all daemons status briefly -s daemon    show daemon status -S    show all daemons status -G    show daemon statistics -r daemon -e path -d depends -f arguments [-w ] [-n] [-q] [-t code]    register daemon (-w -- timeout for ready file notification)                    (-n -- no autostart)                    (-q -- no INFO messages)                    (-t {0|p|n} -- expected transient exit code                         where                            0 = expected exit code is 0                            p = expected exit code is >=0                            n = expected exit code is < 0 ) -u daemon [-q]    unregister daemon (-q -- no INFO messages) -v    show version number
    3.)
    E:\lms\MDC\Apache\bin>Apache.exe" -f "-d'Apache.exe" -f "-d' is not recognized as an internal or external command,operable program or batch file.
    4.)
    E:\lms\MDC>Apache -D SSL" -d TomcatMonitor(OS 10048)Only one usage of each socket address (protocol/network address/port)is normally permitted.  : make_sock: could not bind to address 0.0.0.0:443no listening sockets available, shutting downUnable to open logs
    Regards  ,
    Divya

  • AdvancedDataGrid headerrenderer children added dynamically do not display

    The AdvancedDataGrid in Flex 3.x does not correctly render children of a custom headerrenderer when the children are added dynamically. This works correctly with the DataGrid.
    An AdvancedDataGrid has a custom headerrenderer with one field to display the column header text.
    A show button below the grid adds a text input field in the header below the column text in the header.
    When the show button is selected, the AdvancedDataGrid header sizes correctly to leave space for the field but does not display the field.
    If I drag the column, the text input field displays as I am dragging. See the 3 images below.
    I have included the 3 source files. What is the correct way to dynamically add children to an AdvancedDataGrid header?
    Thanks.
    1. AdvancedDataGrid with only the column header text:
    2. After Show is selected, the header is sized for the text field below:
    3. Only dragging the column header temporarily shows the text field:
    1. TestGrid.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="onInit(event)" width="100%" height="100%">
    <mx:Script>
    <![CDATA[
         protected function onInit(event:Event):void {
              var cols:Array = grid.columns;
              var colWidth:int = grid.width;
              var col:AdvancedHeaderColumn = new AdvancedHeaderColumn();
              col.wordWrap = true;
              col.show = false;
              var headerRenderer:ClassFactory = new ClassFactory(AdvancedHeaderLabel);
              // Add any custom properties
              headerRenderer.properties = {text: "Column1 header that wraps", dataGridColumn: col};
              col.headerRenderer = headerRenderer;
              col.headerWordWrap = true;
              cols.push(col);
              grid.columns = cols;
              grid.measuredWidth = colWidth;
         protected function showText(event:Event):void {
              var cols:Array = grid.columns;
              for each (var col:AdvancedHeaderColumn in grid.columns) {
                   col.show = show.selected;
              grid.columns = cols;
    ]]>
    </mx:Script>
         <mx:AdvancedDataGrid id="grid" height="100%" width="100%" variableRowHeight="true" editable="true" lockedColumnCount="1"/>
         <mx:Button label="Show" id="show" click="showText(event)" selected="false" toggle="true"/>
    </mx:Application>
    2. AdvancedHeaderLabel.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" verticalScrollPolicy="off">
    <mx:Script>
    <![CDATA[
         import mx.controls.TextInput;
         import mx.core.UITextField;
         // properties
         public var text:String;
         public var dataGridColumn:AdvancedHeaderColumn;
         // Column header
         public var textField:UITextField;
         // Optional text input field
         public var textInput:TextInput;
         override protected function createChildren():void {
              super.createChildren();
              // Always add the header text
              textField = new UITextField();
              textField.text = text;
              textField.multiline = true;
              textField.wordWrap = true;
              textField.percentWidth = 100;
              addChildAt(textField, 0);
         override protected function commitProperties():void {
              super.commitProperties();
              // Add the text input field?
              if (dataGridColumn && dataGridColumn.show && !textInput) {
                   textInput = new TextInput();
                   box.addChild(textInput);
         override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
              super.updateDisplayList(unscaledWidth, unscaledHeight);
              // Position and size the textInput field
              if (dataGridColumn.show && textInput) {
                   textInput.y = textField.getExplicitOrMeasuredHeight();
                   textInput.setActualSize(unscaledWidth, textInput.getExplicitOrMeasuredHeight());
         override protected function measure():void {
              super.measure();
              measuredWidth = textField.getExplicitOrMeasuredWidth();
              measuredHeight = textField.getExplicitOrMeasuredHeight();
              // Make room for the text input field
              if (textInput) {
                   measuredHeight += textInput.getExplicitOrMeasuredHeight();
    ]]>
    </mx:Script>
         <mx:VBox height="100%" width="100%" id="box" verticalAlign="bottom"/>
    </mx:VBox>
    3. AdvancedHeaderColumn.as
    package {
         import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
         public class AdvancedHeaderColumn extends AdvancedDataGridColumn {
              public var show:Boolean = false;
              public function AdvancedHeaderColumn(columnName:String=null) {
                   super(columnName);

    Thanks Hackintosh.
    It prints as it views, as a corrupt jpeg. I also dug into console and it confirmed there was an error about a corrupt jpg. The most interesting thing is if I open the bad pdf in Photoshop the whole image is there with no signs of corruption. This leads me to believe it's something with how OSx and/or Safari are rendering the jpgs. Another curious sidenote, Safari on Windows works fine but if you save the pdf, move it to a mac and open it, you get the corrupted jpg again.
    I think I'm going to try and stop swimming upstream now. At the end of the day I don't care if the images are pngs, tiffs, or eps. I'm going to try feeding a few different formats and see if that doesn't fix the problem.

  • Unable to view comments

    HI,
    I am unable to view comments after validly adding to input schedules through EVCOM. when i go to view comments it retrieves no data. can any one hlep or provide some details.
    Kishore

    Hello!
    I had the same problem. In my case i has two EVDREs and 2 EVCOM functions. The problem was that in the moment of posting data it took the the wrong CV. Go to the comments table in ABAP and check the cube slice where the data is written. It will help you to understand what is the problem in your case.
    To find comments table go through the detailed instruction Where are comments stored in Netweaver?
    Good luck!

  • Row action event on data table does not occur when rows added dynamically

    Row action event on data table does not occur (only refreshes the page) when the rows in the data table are added dynamically at run time using button click and java bean.
    please tell me a way to catch the row click event when adding rows dynamically to data table. i m using RAD 6.0 to develop Faces jsp pages.
    thanks
    amit

    i got the answer

  • How to hide columns that are getting added dynamically to UI Element 'Table

    In SRM 7.0 while displaying a RFx, click on "responses and awards" button.
    In the response comparision tab once the user selects response number and clicks on "compare all responses".
    Item details table is displayed with fields item number,internal number,item description,........,Price etc.
    Requirement is  to hide the price column from the table.
    The UI element type is 'Table'.
    But the catch is there is no column price visible at layout design level.
    This field is getting added dynamically at run time.
    When i right click and see the 'more field help' at the front end i get the field id as 'GRP_1_COL_3_TXTV'.
    lo_table ?= view->get_element( id = 'ITEMS_TABLE' ).
    lo_column = lo_table->get_column( id = 'GRP_1_COL_3_TXTV').
    ASSERT lo_column IS NOT INITIAL.
    lo_column->set_visible( EXPORTING value = '01' ).
    I had written the above code in the pre-exit of WDDOMODIFYVIEW.
    But i am getting dump as assertion failed.it says no column by name 'GRP_1_COL_3_TXTV'.
    Please help me inhow to hide fields or buttons getting generated dynmically.
    Regards,
    Venkat Raghavan.

    Hi Anitha,
    What i understood from your question is,you want to control the table from your inputs.I have a one question for you what do you want to show defaultly i.e when you run the application what you want to show,either no table or table with some values.
    Any how i am giving solution in this way.
    If both inputs are given proper table output is displayed
    Write your below logic in the WDDOMODIFYVIEW )
    Here i am assuming that you already have a table element in the view.
    Get the values entered in the input fields and compare those 2 values ,if the condition is satisfied then bind the values which you want to show in the table to the context node.
    but if only 1 input is given a column is empty in the output table so i want to hide this column dynamically at runtime based on my inputs
    You are telling that you know the empty column.If so get the view element reference and use the REMOVE_COLUMN to remove the column.
    data:lr_table type ref to cl_wd_table,
           lr_column type ref to L_WD_TABLE_COLUMN.
    lr_table ?= view->get_element( 'TABLE1' ).
    CALL METHOD LR_TABLE->REMOVE_COLUMN
        EXPORTING
          ID          = 'TABLE1_color'
         INDEX      =
        RECEIVING
          THE_COLUMN = lr_column.
    i want to hide some empty rows also at runtime based on inputs.
    Removing the rows is very simple.if you know the key fields data of internal table from your input fields then do in this way.
    delete itab from wa where key1= "12" and key2="abd".
    Now bind the internal table to context node.
    LO_ND_hcm->BIND_TABLE(
          NEW_ITEMS            = it_final
          SET_INITIAL_ELEMENTS = ABAP_TRUE ).

  • Unable to View .mod files in Photoshop Elements 11, can see they are there but no picture, I import them into Premiere and all OK ?

    I have hundreds of .mod files which are supported but I am unable to view them on my Adobe Photoshop Elements 11. I cant see the picture icons as pictures or see the vision when i select them? I am running the latest Windows 8.1 PC with heaps of Ram and memory. If I import the files into Premiere they play fine?

    Thanks Curt and 'Mylenium'
    I did re-set the prefs - but to no avail
    I checked and my graphics driver and audio is all up to date.
    No sure how to verify Windows Media Player's hardware acceleration options. I opened WMP Options /Perfformance tab and under Cd the DirX tab is checked.
    Running Windows Vista - so does the same caution apply regarding a re-install of Windows Media Components and DirectX ?
    Appreciate your help with this somewhat frustrating issue. I am converting some old 8mm film to avi with the hope of doing some edits then burning to DVD.
    Cliff

  • Can't locate email content? All of a sudden my email content has disappeared from inside MacMail? The actual emails are coming through but I am unable to view them as the area is just left blank! Nothing has been done to have changed this?

    Can't locate email content? All of a sudden my email content has disappeared from inside MacMail? The actual emails are coming through but I am unable to view them in the content area! Nothing has been done to have changed this?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Certain countries are unable to view iWeb's blog, etc.

    Hi,
    I've been using iWeb for a while and I chose to keep a log for business with this product. I can't seem to locate a way to contact apple about iWeb so I hope I can get advice here. Many countries outside of the US are able to view the entire iWeb project that I've been working on, lately, it has come to my attention that a few key countries are unable to view and/or subscribe to rss. France/Netherlands/Spain in particular are unable to view the mobileme or apple set up. I have this set up on a personal domain, properly and people in the USA are able to view everything. What can be done? Do I keep iWeb as the news generator? I'm not sure what to do.
    www.madonnaremixes.com is the domain for iWeb's logging.
    How do I fix this?

    I've had several people, mostly in France (a couple others) who say "I'm unable to see this site."
    Are you totally sure these people are using the correct url? You could ask them to email you what appears in the browser address bar and the exact error message they are seeing.

  • Unable to view external webcam content.  I'm using IE11 with Windows 7 64 bit.  I've tried deactivating Activex control, tried different browsers etc, tweeked the tools for trusted sites etc, but am totally stuck. I know the cams are working as i can view

    Unable to view external webcam content.  I'm using IE11 with Windows 7 64 bit.  I've tried deactivating Activex control, tried different browsers etc, tweeked the tools for trusted sites etc, but am totally stuck. I know the cams are working as i can view them on mobile phone via puffin browser.  I can play Youtube videos etc just fine. So why not the webcam?

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • Bought av adapter to watch iPad on tv.  Plugged it in iPad and received message not compatible.  Both are apple products.  Unable to view movies on tv from iPad.  I also used hdmi cable

    Bought av adapter to watch iPad on tv.  Plugged it in iPad and received message not compatible.  Both are apple products.  Unable to view movies on tv from iPad.  I also used hdmi cable

    Every consider an AppleTV for same? no cables, no fuss, LOTS of free content, very handy.

  • "3D' are added in HTML view sourse

    Hi,
    We are sending HTML attachments into email body from OSB 11g and it display successfully but in view the source of the email “3D” charcters are added to before of the attributes in HTML . Why “3D” coming and how to resolve.
    Pls privde the pointers.
    Regards
    Venkata

    Can you describe your E2E message flow? From where the attachment comes? How you pass it in mail body? What type of proxy and business service are you using?
    Regards,
    Anuj

Maybe you are looking for

  • No Longer Able To Resize Images (PDF Attachments)

    I recently upgraded to Snow Leopard and am now unable to resize my PDF attachments once they are within an email. Maybe I'm missing something, but in the older version of Mail / Leopard I was able to easily resize my attached PDF's on the fly by simp

  • Extrnal widescreen monitor problems

    Hi I Have recently bought a 19 inch widescreen monitor Acer AL1916w and the resolution setting is 1440 x 900 which comes up as well as the name of the monitor when it is plugged in, however it doesnt expand the full size of the screen it 's about the

  • Anyone know of a good bookkeeping program?

    I need a simple bookkeeping program. By simple, I mean printing invoices and keeping track of income and expenses. The idea here is to SAVE time. Quickbooks is a huge time waster - it's like a computer game for accountants or something. Three hours o

  • Error Integrated Weblogic domain was not built | JDeveloper 11.1.2.0

    When I try to start integrated weblogic server, I get the following message: "The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully" CreateDefaultDomain.log Log File: D:\JDeveloper\system11.1.1.2.36.5

  • RDS trouble with CF plugin for eclipse 3.3

    This is probably not new, I have installed the plug-in from Adobe and from cfreport.org. I have done a manual install, followed the directions for both sites, read all available forums , but cannot get this to work. I am working my way through some p