Tree and XML

the only examples i found online for tree involve a XMLList.
is it possible to use an XML to populate it?
for example, my XML looks like this:
[code]
[Bindable]
private var MyCat:XML =
<categories>
<category ID="0">
<title>Category 1</title>
<link ID2="0">
<linkTitle>Link 1 Title</linkTitle>
<linkURL>
http://www.link1.com</linkURL>
</link>
</category>
<category ID="1">
<title>Categor 2 </title>
<link ID2="0">
<linkTitle>Link1 title</linkTitle>
<linkURL>
http://www.Line 1
URL.com</linkURL>
</link>
<link ID2="1">
<linkTitle>Link2 title</linkTitle>
<linkURL>
http://www.Line 2
URL.com</linkURL>
</link>
</category>
</categories>
[/code]
Thanks in advance!

"WestSide" <[email protected]> wrote in
message
news:gigrbp$9dc$[email protected]..
> Hi,
>
> I have this XML that is returned from a ColdFusion CFC.
So in Flex I have
> this code:
>
> var treeXML:XML = new XML(event.result);
>
> I am then assigning this to the dataProvider of my tree.
This works fine,
> but
> how can I get at each top level node in the tree? I want
to basically
> loop
> over the top level categories of the tree?
treeXML.children()
http://dispatchevent.org/roger/as3-e4x-rundown/

Similar Messages

  • Working with mx:tree and XML

    Hi there! I've been reading and googling for ages and I
    cannot find the solution to this problem, I want to load an xml
    into a <mx:tree> but i don't want to load all the xml
    structure. My xml look like this:
    <DataSet>
    <diffgr:diffgram>
    <NewDataSet>
    <Show>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    <episodes>
    <episode1>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    </episode1>
    <episode2>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    </episode2>
    <episode3>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the episode</Title>
    </episode3>
    </episodes>
    </Show>
    <Show>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    <episodes>
    <episode1>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    </episode1>
    <episode2>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the show</Title>
    </episode2>
    <episode3>
    <uselessProperty>asdasd</uselessProperty>
    <uselessProperty1>asdasd</uselessProperty1>
    <uselessProperty2>asdasd</uselessProperty2>
    <uselessProperty3>asdasd</uselessProperty3>
    <Title>Title of the episode</Title>
    </episode3>
    </episodes>
    </Show>
    </NewDataSet>
    </diffgr:diffgram>
    </DataSet>
    I want to know if there is any way I can show the title of
    the show and the titles of the episodes as its children. By this
    time I've been just able to show the whole xml in the tree, but i
    just need those properties. I cannot find information about xml
    that doesn't have this format:
    <node property1="property" property1="property"
    property4="property" property3="property">
    <child property1="property" property1="property"
    property4="property" property3="property"/>
    <child property1="property" property1="property"
    property4="property" property3="property"/>
    <child property1="property" property1="property"
    property4="property" property3="property"/>
    </node>
    Please help me, my eyes will start bleeding if keep googling
    another nite.

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    initialize="e4xService.send()">
    <mx:Script>
    <![CDATA[
    import mx.events.TreeEvent;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var xmlData:XMLList;
    [Bindable]
    private var selectedXML:XML;
    private function resultHandler(event:ResultEvent):void
    var result:XML = event.result as XML;
    xmlData = result..title as XMLList;
    private function treeChangeHandler(event:Event):void
    selectedXML = myTree.selectedItem as XML;
    var xmlName:String = selectedXML.name();
    while (xmlName != "title")
    selectedXML = selectedXML.parent();
    xmlName = selectedXML.name();
    private function treeItemOpenHandler(event:TreeEvent):void
    selectedXML = event.item as XML;
    myTree.selectedItem = selectedXML;
    ]]>
    </mx:Script>
    <mx:HTTPService id="e4xService"
    url="assets/videoTitles.xml"
    result="resultHandler(event)"
    resultFormat="e4x"/>
    <mx:HBox width="800">
    <mx:Panel id="treePanel"
    title="Course Data" width="50%">
    <mx:Tree id="myTree"
    dataProvider="{xmlData}"
    labelField="@label"
    width="300"
    change="treeChangeHandler(event)"
    itemOpen="treeItemOpenHandler(event)"/>
    </mx:Panel>
    <mx:Panel width="50%"
    height="{treePanel.height}">
    <mx:Form>
    <mx:FormItem label="Course Name:">
    <mx:Label text="{selectedXML.@label}"/>
    </mx:FormItem>
    <mx:FormItem label="Duration:">
    <mx:Label text="{selectedXML.duration.@label}"/>
    </mx:FormItem>
    </mx:Form>
    </mx:Panel>
    </mx:HBox>
    </mx:Application>
    XML File:
    <?xml version="1.0"?>
    <titles>
    <title label="Flash User Experience Best Practices"
    software="Flash">
    <duration label="4.25 hours"/>
    </title>
    <title label="Flash Professional 8 New Features"
    software="Flash">
    <duration label="1.0 hours"/>
    </title>
    <title label="Flash Professional 8 Essential Training"
    software="Flash">
    <duration label="11.5 hours"/>
    </title>
    <title label="Flash Professional 8 Beyond the Basics"
    software="Flash">
    <duration label="10 hours"/>
    </title>
    <title label="Flash Professional 8 Video Integration"
    software="Flash">
    <duration label="7.25 hours"/>
    </title>
    <title label="Photoshop CS2 and Flash 8 Integration"
    software="Photoshop">
    <duration label="2.5 hours"/>
    </title>
    </titles>

  • Tree and XML Question

    Hi,
    I have this XML that is returned from a ColdFusion CFC. So in
    Flex I have this code:
    var treeXML:XML = new XML(event.result);
    I am then assigning this to the dataProvider of my tree. This
    works fine, but how can I get at each top level node in the tree? I
    want to basically loop over the top level categories of the tree?
    Thanks,
    -Westside

    "WestSide" <[email protected]> wrote in
    message
    news:gigrbp$9dc$[email protected]..
    > Hi,
    >
    > I have this XML that is returned from a ColdFusion CFC.
    So in Flex I have
    > this code:
    >
    > var treeXML:XML = new XML(event.result);
    >
    > I am then assigning this to the dataProvider of my tree.
    This works fine,
    > but
    > how can I get at each top level node in the tree? I want
    to basically
    > loop
    > over the top level categories of the tree?
    treeXML.children()
    http://dispatchevent.org/roger/as3-e4x-rundown/

  • Tree control and XML dataprovider

    Hi,
    I am trying to get this xml ( http://mitjafelicijan.net/test.xml ) working with my tree control in my Flex app and cannot figure it out how exactly to do this.
    my Flex code is this
    <mx:Tree left="0" top="0" bottom="0" showRoot="true" id="trvTreeview" right="0"></mx:Tree>
    and my AS code is this
    var tmp:XML = XML(event.target.data);
    trvTreeview.dataProvider = tmp.node;
    I get such output
    http://mitjafelicijan.net/tree.png

    The default data descriptor will see any child node as a child and claim that node is a folder.  If the xml node used attributes like this:
    Then there aren't any child nodes.  However, if you can't change the XML structure you can create a custom TreeDataDescriptor that is smarter about hasChildren()
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Unparsing a DOM tree and write XML to file

    Hi,
    I have created a DOM tree from scratch and would like to unparse the DOM tree and write the XML to a file, but how do I do that?
    Does anybody got code examples that do this?
    All help are very appreciated!
    /Daniel

    Thank you very much for the hint! Unfortunaly I still got problem to get it work though.
    I made a little piece of test code to try it but during the execution of the "Transformer.transform(source,result)" method I gets an "org.w3c.dom.DOMException".
    Does anybody see what that problem might be cause of by exmining the code below?
    I also would like to know how to specify the location where I would like to print out the XML file.
    Here is my little piece of test code:
    try{
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFadctory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    Document doc = docBuilder.newDocument();
    doc.appendChild(doc.createElement("topLevel"));
    Element elm = doc.getDocumentElement();
    elm = (Element)elm.appendChild(doc.createElement("PersonData"));
    elm = (Element)elm.appendChild(doc.createElement("Name"));
    elm.setAttribute("Firstname","D");
    elm.setAttribute("Lastname", "D");
    DOMResult result = new DOMResult(doc);
    DOMSource source = new DOMSource(doc);
    TransformerFactory transformerFactory = TansformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    transformer.transform(source,result);
    }catch(ParserConfigurationException e) {
    }catch(IOException e) {
    }catch(TransformerException te) {

  • How to mix HTML and XML??

    Hi guys,
    I want to stream some xml content to the browser from a servlet by setting the content-type as 'text/xml' and let IE browser take care of the parsing & formatting. It is important for me to show the formatted (tree structure) xml content in the browser. But I also need to show a text heading in the browser...Something like this ::
    Application XML Message ---> header text
    <xml>
    <id>.....
    <InvoiceDate>.....
    </xml>
    I know that the content has to be 'text/html' for the header text , and text/xml to let IE do automatic formatting of the xml data...How can I mix the contents? I don't want to format the xml file programattically or by using XSLT..Is it possible?
    Thanks guys

    I think it's possible; just create a page containing the header you want to display and an iFrame with the URL set to the address of the service that builds the XML. In fact you'll make two requests to server: one for the page containing the fancy header + the iFrame and one for the XML itself. Main page has text/html content and the contained iFrame will have text/xml content:
    More artistically:
    The header of the message
    The iFrame pointing to the URL that
    generates the XML.
    Be sure to use appropriate HTML styles so the iFrame border will not get displayed.

  • HGrid, Tree and Partial Page Rendering..

    Hi!
    We use JDev 9.0.3.3 .
    Is it possible to use HGrid or Tree with partial rendering?
    Or is there a solution to use iFrame...
    any help?
    Viktor

    It is possible in my version of uix that will be shipped with 10g production. The version i got is uix 2.2.
    Did you already used tree and hgrid in an application ? If yes, did you use struts action as event to pass parameter from the tree to the hgrid ?
    We are searching a good desgn to use tree as explorer in a frame and load different content in an another one. The problem i encountered now is to define how to pass parameter from the tree to the components in the "contents" frame.
    To use frame with tree an hgrid see the code below
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <frameBorderLayout>
    <top>
    <frame source="headerFrame.uix" height="20%" />
    </top>
    <left>
    <frame source="leftFrame.uix" width="30%"/>
    </left>
    <center>
    <frame source="centerFrame.uix"/>
    </center>
    </frameBorderLayout>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    <data name="FBTreeData">
    <inline>
    <nodes text="Par date de financement" expandable="expanded">
    <nodes text="2004" expandable="expanded">
    <nodes text="Quarter 4"/>
    <nodes text="Quarter 3"/>
    <nodes text="Quarter 2"/>
    <nodes text="Quarter 1"/>
    </nodes>
    <nodes text="2003" expandable="expanded">
    <nodes text="Quarter 4"/>
    <nodes text="Quarter 3"/>
    <nodes text="Quarter 2"/>
    <nodes text="Quarter 1"/>
    </nodes>
    </nodes>
    </inline>
    </data>
    </provider>
    <contents>
    <formattedText text="this is the left frame"/>
    <tree nodes="${uix.data.FBTreeData.nodes}"/>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <formattedText text="this is the center frame"/>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>

  • Problem with trees and memory handling.

    Hi there, I just want to know if, when I create a large binary tree, and I re-"pointed" the root pointer to another node somewhere below in that same tree (say, a terminal node), will the "upper" parts of the tree (starting from the new root node) be removed/deleted from memory? Please explain your answers.
    Thank you.

    f I changed the root to B, will A and its children be
    deleted from memory?If you do root = B, AND if nothing else is referring to A or C or anything else beneath them, then A, C, and all of C's children will become eligible for garbage collection.
    Whether the memory actually gets cleaned up is something you can't really predict or control, but it doesn't really matter. If it's needed, it will get cleaned up. If it's not needed, it may or may not get cleaned up, but your program won't care.
    So, in short, yes, for all intents and purposes, A's, C's, and C's descendants' memory is released when you re-root to B.

  • How to open and XML file?

    Does anyone have a way on Mac to open an XML file for viewing. This can be done with WIN Excel and XML toolkit but doesn't exist for Mac Excel in Office 2008. I can open with TextEdit but would like to see the info with headers and cells without all the XML coding. Numbers 09 can't open it at all.

    Numbers uses XML to build the description of the documents but it's not an XML editor.
    A simple search in Google with the intricate key string xml editor AND mac return numerous interesting links.
    Yvan KOENIG (VALLAURIS, France) vendredi 9 octobre 2009 11:33:27

  • HTML and XML files open in same window(KM Navigation iView)

    Hi All,
    I have created a KM navigation which is pointing the folder inside the documents repository. This folder contains HTML and XML files. It is rendering fine. But, when I click on the file links in KM Navigation iView, it is opening in new window.Here I need to open in same window. How can I acheive this?. Please help me.
    Thanks & Regards,
    Venkatesh R

    Hi ,
    check the below thread and try options mentioned in it
    https://www.sdn.sap.com/irj/sdn/thread?threadID=72594
    Koti Reddy

  • Spanning Tree and Admin mac address issues srw2048

    Ok, I have a somewhat complex problem and hopefully someone may shed some light or have an idea as to whats wrong.
    First the scenario:
    I have two Cisco Cat 6509's etherchanneled to each other via two fiber cables.  One of these is the STP/RSTP root.  I have two SRW2048's.. one trunked to each of these 6509 switches.  There is also a trunk between the SRW2048's.  All this is to create a redundant topology so that if one of the switches fail's the others can still forward packets to each other.  Of course the scenario described is in fact a loop that should be handled by STP/RSTP.  I have RSTP enabled on all the switches in the scenario (PV RSTP on the cisco switches as they only do Cisco's brand of per vlan spanning tree).  There are 3 vlan's configured on each of the srw2048's (2,55,96).  There are corresponding vlan's also on the 6509's.  I have put the srw2048's management interface into vlan 2.
    The problem:
    I need to forward packets between the srw2048's primarily and only use the 6509 that is not the root when a failure happens.  I have configured the non-root 6509's spanning tree cost on the etherchannel to be higher then the alternate path through the srw's to the root.  I can hook everything up and view the spanning tree and see that the srw2048's interface that goes to the non-root 6509 is blocked, and all other interfaces on the other switches are forwarding.  I can in fact ping and get to the admin interface on all the switches.  Then for some strange reason the admin interface of the srw2048 plugged into the non-root 6509 stops responding.  If I disable either the interface its plugged into on the 6509 or the other srw2048 everything starts working again.  Sometimes it responds after many failures for no apparent reason.  I looked into the mac-address table on the 6509's and they are conflicting, pointing to each other for the mac-address of the broken srw2048.  When I clear the mac-table the admin port comes back for about 5 seconds then again goes dark.  When reviewing mac-table on the 6509's they are back to pointing to each other.  The odd thing (although I haven't confirmed this completely) is that hosts placed into vlan 2 on that same srw2048 seem to work fine.  If there was an STP loop or something misconfigured, I would expect it to effect any host in vlan 2 or the other vlan's for that matter on the srw2048 that stops responding.  Alas, I am stuck because I need to manage this switch remotely.  My only thought is that for some reason even when the STP status is blocked the broken srw2048 is still sending out arp's of its admin interface and bypassing the STP protocol.  I have no way to confirm this, but maybe someone has an idea as to what I'm doing wrong, or otherwise offer a solution.  For now, I simply removed vlan 2 from the 6509 that the broken srw2048 is plugged into and everything seems fine.
    My apologies for such a long post, but this is somewhat complicated.  Thanks in advance for any info.
    -Geoff
    Message Edited by gmyers on 08-19-2008 10:35 PM

    To follow up, I had a ticket open with Linksys about this for about 3 months with no resolution.  I submitted packet captures, stp outputs, etc and no luck.  I gave up and basically had to revert to a manual failover for redundancy.  It's no perfect or fast, but it works every time.
    Unless linksys issues a firmware upgrade with this as a fix, I doubt we will be able to ever resolve this on our own.

  • ASO: How to set up Quoting and XML to Print Quote in R12?

    Which are the steps to set up Oracle Quoting and XML in order to Print a Quote in R12?

    Hi,
    Please refer the Note : How to Create a Custom Print Quote Template in Oracle Quoting ? (Doc ID 780722.1)
    Thanks & Regards,
    Sridhar

  • Report with ALV tree and ALV list?

    I need to create a report with layout as same as this one
    [http://trangiegie.com/MyFile/output.JPG]
    It looks like a report with combination of ALV tree and list. The tree works like a navigation bar. Wonder if there are any demo programs like this. Will appreciate any help.

    For Tree alone - You can check program : BCALV_TREE_02
    Program Name                   Report title
    BCALV_GRID_DND_TREE            ALV Grid: Drag and Drop with ALV Tree
    BCALV_GRID_DND_TREE_SIMPLE     ALV GRID: Drag and drop with ALV tree (simple)
    BCALV_TEST_COLUMN_TREE         Program BCALV_TEST_COLUMN_TREE
    BCALV_TEST_SIMPLE_TREE         Program BCALV_TEST_SIMPLE_TREE
    BCALV_TREE_01                  ALV Tree Control: Build Up the Hierarchy Tree
    BCALV_TREE_02                  ALV Tree Control: Event Handling
    BCALV_TREE_03                  ALV Tree Control: Use an Own Context Menu
    BCALV_TREE_04                  ALV Tree Control: Add a Button to the Toolbar
    BCALV_TREE_05                  ALV Tree Control: Add a Menu to the Toolbar
    BCALV_TREE_06                  ALV tree control: Icon column and icon for nodes/items
    BCALV_TREE_DEMO                Demo for ALV tree control
    BCALV_TREE_DND                 ALV tree control: Drag & Drop within a hierarchy tree
    BCALV_TREE_DND_MULTIPLE        ALV tree control: Drag & Drop within a hierarchy tree
    BCALV_TREE_EVENT_RECEIVER      Include BCALV_TREE_EVENT_RECEIVER
    BCALV_TREE_EVENT_RECEIVER01
    BCALV_TREE_ITEMLAYOUT          ALV Tree: Change Item Layouts at Runtime
    BCALV_TREE_MOVE_NODE_TEST      Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO         Program BCALV_TREE_SIMPLE_DEMO
    BCALV_TREE_VERIFY              Verifier for ALV Tree and Simple ALV Tree

  • Problems with reports and XML-publisher - No XML

    Hi!
    I'm having a problem with Apps and XML-publisher. I made a report file, which queries some views. When executing in reports, I get all the data I expect.
    Now, when I upload the reportfile to Apps and let it generate XML, my xml-file is empty (well, almost empty)
    <?xml version="1.0" ?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <T03501684>
    <LIST_G_PERSOON>
    <LIST_G_PERSOON />
    </T03501684>
    Anyone who can shed any light upon this problem?

    OK, finally solved the problem... A good night's sleep always helps ;).
    After just trying each queried table one after an other, I found the problem:
    The difference between Oracle Apps (Dutch locale) and the reports builder (English) is the language... And our functional people have changed some names, but the Dutch ones, leaving the english names in place and one of the tables I query has language specific data, which is also appears in a where clause.

  • Have itl and xml files on external hd am running home premium. can  no longer access files, am told this is because they were created with a newer version of itunes. also when i try to download 10.3 it wont, just says invalid drive j and for me to try aga

    i am running vista home premium on desktop and vista basic on laptop. have placed my itunes music with .itl and .xml files onto external drive connected to another desktop running vista and can no longer access music on first two mentioned comps only on the one connected to external drive. always am told that the library cant be read because it was created using a newer version of itunes. have tried to download 10.3 but it always tells me that i have and invalid hard drive j and to try again. any ideas?

    Older versions of iTunes cannot read libraries created with newer versions of iTunes. You need to have the same version of iTunes on all your PCs. Is that the case?
    As far as the problem installing iTunes goes, see this article from b noir on dealing with the problem:
    https://discussions.apple.com/thread/2450004
    If you get to the point where you need the Microsoft Installer cleanup utility, you will need more help as it has been withdrawn by Microsoft. but I am hoping the virtual drive trick will work,

Maybe you are looking for

  • [915 Series] LiveUpdate 3 Hangs systems at end of Windows XP boot

    After installing LiveUpdate 3, my system hangs near the end of XP boot.  Searching the forum, I found one thread related to this - https://forum-en.msi.com/index.php?topic=63173.0 but it didn't offer any solution. Anyone else experience this or have

  • New 3gs isn't turning itself off

    I had a 3G and just upgraded to the 3GS. I know this has to be something simple, but I'm not finding it in Settings. My new phone doesn't do the automatic shut off. It just stay on if I don't shut it off and if someone texts me or there is some kind

  • Stand still at Forms 6

    Dear All, Hi, I was a d2k person untill 2 yrs ago. I have 4 years of exp right from forms 4.5 to forms 6. I have created thousands of reports some very complecated ones in this tenure. Took a break of 2 yrs. Now i see a lot has changed. Could somebod

  • Rewriting my dynamic URL

    Hello, I am currently working on a new webshop at which i want to rewrite a dynamic URL. Currently the UL looks like this: http://www.mysite.nl/product.php?categorie=hat&subcategorie=red%20hat&slug=super%20hat I want to make it look like this: http:/

  • Carkit 112 passcode

    Hi all i have just bought a land rover discovery and it has the car kit 112 fitted. it is asking for a pass code but i dont have it. i have been told that the last four digits of the serial number on the brain but i dont know where this is located. c