Not able to doenload reports in Internet Explorer 7

Hi,
I am not able to download the report in IE7, where as in mozilla I am able to do that.
Also in previous version of IE I was able to do the same.
right now it is showing an error stating: Internet Explorer was not able to open this Internet site.
Can any one suggest a help in this regard
Thanks
Shashank Gupta

I am getting the below error. And we are getting this prob
lem on all the systems
Internet explorer can not download saw.dll from www.xyz.com
Internet explorer was not able to open this internet site.The requested site is either unavailable or can not be found.

Similar Messages

  • Not able to see legends on Internet Explorer 8

    I have a Flex Application that works great in Internet Explorer 9 and Firefox. However with Internet Explorer it does not show the colors for the legends, just the values. Do you guys could give me any ideas what I need to change in my code so that IE 8 shows the legend colors? You can see on the image attached that the colors show correctly on the map but the legend does not show the colors for each values.! Thank you for any help!
    Here is the code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application       
                    xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    xmlns:esri="http://www.esri.com/2008/ags"
                    paddingBottom="8" paddingLeft="8"
                    paddingRight="8" paddingTop="8"
                    backgroundColor="0xffffff"
                    layout="vertical" >
        <!-- Start Declarations -->
    <fx:Declarations>
            <esri:SimpleFillSymbol id="mouseOverSymbol" alpha="0.5" color="0x808080">
                <esri:SimpleLineSymbol width="0" color="#000000"/>
            </esri:SimpleFillSymbol>
            <esri:SimpleFillSymbol id="defaultsym" alpha="0.01" color="#E0E0E0"   >
                <esri:SimpleLineSymbol width="1" color="#000000"/>
            </esri:SimpleFillSymbol>
        <!-- End Declarations -->
    </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import com.esri.ags.Graphic;
                import com.esri.ags.SpatialReference;
                import com.esri.ags.events.GraphicEvent;
                import com.esri.ags.geometry.Extent;
                import com.esri.ags.layers.*;
                import com.esri.ags.symbols.SimpleFillSymbol;
                import com.esri.ags.symbols.SimpleLineSymbol;
                import mx.collections.ArrayCollection;
                import mx.controls.RadioButton;
                import mx.controls.TextArea;
                import mx.events.DropdownEvent;
                import mx.events.ItemClickEvent;
                private function closeHandler(evt:DropdownEvent):void
                try
                    myLabel.text = ComboBox(evt.target).selectedItem.label;
                catch(error:Error){
                    trace("Caught Error: "+error);
                private function loadLayerName():void
                    myLegend.layers = null;
                    layerPanel.removeAllChildren();
                    //loop through each layer and add as a radiobutton
                    for(var i:uint = 0; i < (dynamicLayer.layerInfos.length); i++)
                        var radioBtn:RadioButton = new RadioButton;
                        radioBtn.groupName = "radioBtnGroup";
                        radioBtn.value = i;
                        radioBtn.label = dynamicLayer.layerInfos[i].name;
                        if (dynamicLayer.layerInfos[i].name == "Direct Impact (Million $)")
                            radioBtn.label = "Direct Impact";
                        else if (dynamicLayer.layerInfos[i].name == "Total Impact (Million $)")
                        {radioBtn.label = "Total Impact";
                        else if (dynamicLayer.layerInfos[i].name == "Total Impact (Jobs)")
                        {radioBtn.label = "Total Impact";
                        else if (dynamicLayer.layerInfos[i].name == "Direct Impact (Jobs)")
                        {radioBtn.label = "Direct Impact";
                        else
                        {radioBtn.visible= false;
                        layerPanel.addChild(radioBtn);
                    /*     myDividerBox.getDividerAt(0).visible = false; */
                    //set the visible layer the first radio button
                     radioBtnGroup.selectedValue = 0;
                     dynamicLayer.visibleLayers = new ArrayCollection([0]);
                    myLegend.layers = [dynamicLayer];
                    myLegend.visible = true;
                private function radioClickHandler(event:ItemClickEvent):void
                    myLegend.layers = null;
                    // update the visible layers to only show the layer selected
                    dynamicLayer.visibleLayers = new ArrayCollection([event.index]);
                    myLegend.layers = [dynamicLayer];
                    myLegend.visible = true;
                private function changeEvt(event:Event):void {
                if (yearcombo.selectedItem.year == "2007")
                    measures.filterFunction=filter1
                    measures.refresh()
                    myURL.dataProvider=measures
                    myLegend.visible = true;
                else if (yearcombo.selectedItem.year == "2009")
                    measures.filterFunction=filter2
                    measures.refresh();
                    myLegend.visible = true;
            public function filter1(item:Object):Boolean
                if (item.year=="2007") return true
                else return false
                public function filter2(item:Object):Boolean
                    if (item.year=="2009") return true
                    else return false
                private function clickEvt(event:Event):void {
                    if (yearcombo.selectedItem.year == "2007")
                        measures.filterFunction=filter3
                        measures.refresh()
                        myURL.dataProvider=measures
                    else if (yearcombo.selectedItem.year == "2009")
                        measures.filterFunction=filter4
                        measures.refresh();
                public function filter3(item:Object):Boolean
                    if (item.year=="2007") return true
                    else return false
                public function filter4(item:Object):Boolean
                    if (item.year=="2009") return true
                    else return false
                private function clickEv2(event:Event):void {
                    if (yearcombo.selectedItem.year == "2007")
                        measures.filterFunction=filter5
                        measures.refresh()
                    else if (yearcombo.selectedItem.year == "2009")
                        measures.filterFunction=filter6
                        measures.refresh();
                    else if (yearcombo.selectedItem.year == 2007 && myURL.selectedIndex==8)
                        myLegend.layers = null;
                        layerPanel.removeAllChildren();
                public function filter5(item:Object):Boolean
                    if (item.year=="2007") return true
                    else return false
                public function filter6(item:Object):Boolean
                    if (item.year=="2009") return true
                    else return false
                /* IF YOU WANT TO INCLUDE OTHER VALUES IN THE MAP TOOLTIP LIKE COUNTY NAME AND THE LABEL OF THE SELECTED ITEM
                if (myURL.selectedIndex==0)
                myTextArea.htmlText = "<b>County: </b>" + gr.attributes.NAME + "\n"
                + "<b>Measure: </b>" + myURL.selectedItem.label + gr.attributes.ForDirIndOut.toString()
                    public function fLayer_graphicAddHandler(event:GraphicEvent):void
                        event.graphic.addEventListener(MouseEvent.MOUSE_OVER, onMouseOverHandler);
                        event.graphic.addEventListener(MouseEvent.MOUSE_OUT, onMouseOutHandler);
                    public function onMouseOverHandler(event:MouseEvent):void
                        //Place the lines of code that don't change based on the selections once.
                        var graphic:Graphic = Graphic(event.currentTarget);
                        graphic.symbol = mouseOverSymbol;
                        var htmlText:String = graphic.attributes.htmlText;
                        var textArea:TextArea = new TextArea();
                        textArea.width= 110
                        textArea.height = 25
                        //The particular year doesn't seem to have an impact on anything but the definetionExpression
                        //so there is no need to evaluate it each time
                    /*     if (yearcombo.selectedItem.year == "2007"){
                            fLayer.definitionExpression = "DATA_YEAR_TXT like '2007'";
                        }else if(yearcombo.selectedItem.year == "2009"){
                            fLayer.definitionExpression = "DATA_YEAR_TXT like '2009'";
                        fLayer.definitionExpression = "DATA_YEAR_TXT like '"+ yearcombo.selectedItem.year+"'";
                        //This part is always the same so only do it once
                        textArea.htmlText = myURL.selectedItem.label; */
                        /* for each (var item:object in fLayer.getItemAt(i)
                        if (myURL.selectedItem.namefield == fLayer.tableDetails.fields){ */
                        /* if (myURL.selectedItem.namefield == fLayer.outFields 
                            textArea.htmlText = graphic.attributes.ForDirIndOut.toString();
                        private function locateBoundary(event:Event) : void
                        layerCOUNTIES.definitionExpression = "STATE = '" + (event.currentTarget as TextArea).data.STATEFP + "'";
                        try{
                            if (radioBtnGroup.selectedValue == 0){
                                if(myURL.selectedIndex == 0){
                                    textArea.htmlText = graphic.attributes.ForDirIndOut.toString();
                                }else if(myURL.selectedIndex == 1 ){
                                    textArea.htmlText = graphic.attributes.ForDirEmp.toString();
                                }else if(myURL.selectedIndex == 2){
                                    textArea.htmlText = graphic.attributes.ForDirLabInc.toString();
                                }else if(myURL.selectedIndex == 3){
                                    textArea.htmlText = graphic.attributes.ForIndirBusTax.toString();
                                }else if(myURL.selectedIndex == 4){
                                    textArea.htmlText = graphic.attributes.LogDirIndOut.toString();
                                }else if(myURL.selectedIndex == 5){
                                    textArea.htmlText = graphic.attributes.LogDirEmp.toString();
                                }else if(myURL.selectedIndex == 6){
                                    textArea.htmlText = graphic.attributes.LogDirLabInc.toString();
                                }else if(myURL.selectedIndex == 7){
                                    textArea.htmlText = graphic.attributes.LogIndirBusTax.toString();}
                                else if(myURL.selectedIndex == 8){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperDirIndOut.toString();}
                                else if(myURL.selectedIndex == 9){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperDirEmp.toString();}
                                else if(myURL.selectedIndex == 10){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperDirLabInc.toString();}
                                else if(myURL.selectedIndex == 11){
                                    textArea.htmlText = graphic.attributes.PrimaryPaperIndirBusTax.toString();}
                                else if(myURL.selectedIndex == 12){
                                    textArea.htmlText = graphic.attributes.PrimarySolidIndOut.toString();}
                                else if(myURL.selectedIndex == 13){
                                    textArea.htmlText = graphic.attributes.PrimarySolidEmp.toString();}
                                else if(myURL.selectedIndex == 14){
                                    textArea.htmlText = graphic.attributes.PrimarySolidLabInc.toString();}
                                else if(myURL.selectedIndex == 15){
                                    textArea.htmlText = graphic.attributes.PrimarySolidIndBusTax.toString();}
                                else if(myURL.selectedIndex == 16){
                                    textArea.htmlText = graphic.attributes.SecondPaperDirIndOut.toString();}
                                else if(myURL.selectedIndex == 17){
                                    textArea.htmlText = graphic.attributes.SecondPaperDirEmp.toString();}
                                else if(myURL.selectedIndex == 18){
                                    textArea.htmlText = graphic.attributes.SecondPaperDirLabInc.toString();}
                                else if(myURL.selectedIndex == 19){
                                    textArea.htmlText = graphic.attributes.SecondPaperIndirBusTax.toString();}
                                else if(myURL.selectedIndex == 20){
                                    textArea.htmlText = graphic.attributes.SecondSolidDirIndOut.toString();}
                                else if(myURL.selectedIndex == 21){
                                    textArea.htmlText = graphic.attributes.SecondSolidDirEmp.toString();}
                                else if(myURL.selectedIndex == 22){
                                    textArea.htmlText = graphic.attributes.SecondSolidDirLabInc.toString();}
                                else if(myURL.selectedIndex == 23){
                                    textArea.htmlText = graphic.attributes.SecondSolidBusTax.toString();}
                                myMap.infoWindow.show(myMap.toMapFromStage(event.stageX, event.stageY));
                            else if (radioBtnGroup.selectedValue == 1){
                                    if(myURL.selectedIndex == 0){
                                        textArea.htmlText = graphic.attributes.ForTotImpIndOut.toString();
                                    }else if(myURL.selectedIndex == 1 ){
                                        textArea.htmlText = graphic.attributes.ForTotImpEmp.toString();
                                    }else if(myURL.selectedIndex == 2){
                                        textArea.htmlText = graphic.attributes.ForTotImpLabInc.toString();
                                    }else if(myURL.selectedIndex == 4){
                                        textArea.htmlText = graphic.attributes.LogTotImpIndOut.toString();
                                    }else if(myURL.selectedIndex == 5){
                                        textArea.htmlText = graphic.attributes.LogTotImpEmp.toString();
                                    }else if(myURL.selectedIndex == 6){
                                        textArea.htmlText = graphic.attributes.LogTotImpLabInc.toString();}
                                    else if(myURL.selectedIndex == 8){
                                        textArea.htmlText = graphic.attributes.PrimaryPaperTotImpIndOut.toString();}
                                    else if(myURL.selectedIndex == 9){
                                        textArea.htmlText = graphic.attributes.PrimaryPaperTotImpEmp.toString();}
                                    else if(myURL.selectedIndex == 10){
                                        textArea.htmlText = graphic.attributes.PrimaryPaperTotImpLabInc.toString();}
                                    else if(myURL.selectedIndex == 12){
                                        textArea.htmlText = graphic.attributes.PrimarySolidTotImpIndOut.toString();}
                                    else if(myURL.selectedIndex == 13){
                                        textArea.htmlText = graphic.attributes.PrimarySolidTotImpEmp.toString();}
                                    else if(myURL.selectedIndex == 14){
                                        textArea.htmlText = graphic.attributes.PrimarySolidTotImpLabInc.toString();}
                                    else if(myURL.selectedIndex == 16){
                                        textArea.htmlText = graphic.attributes.SecondPaperTotImpIndOut.toString();}
                                    else if(myURL.selectedIndex == 17){
                                        textArea.htmlText = graphic.attributes.SecondPaperTotImpEmp.toString();}
                                    else if(myURL.selectedIndex == 18){
                                        textArea.htmlText = graphic.attributes.SecondPaperTotImpLabInc.toString();}
                                    else if(myURL.selectedIndex == 20){
                                        textArea.htmlText = graphic.attributes.SecondSolidIndOut.toString();}
                                    else if(myURL.selectedIndex == 21){
                                        textArea.htmlText = graphic.attributes.SecondSolidEmp.toString();}
                                    else if(myURL.selectedIndex == 22){
                                        textArea.htmlText = graphic.attributes.SecondSolidLabInc.toString();}
                                myMap.infoWindow.show(myMap.toMapFromStage(event.stageX, event.stageY));
                            myMap.infoWindow.content=textArea;
                            myMap.infoWindow.label = graphic.attributes.NAME;
                            myMap.infoWindow.closeButtonVisible = false;
                            myMap.infoWindow.width = 120;
                        catch(error:Error){
                            trace("Caught Error: "+error);
                        //Place the lines of code that don't change based on the selections once.
                public function onMouseOutHandler(event:MouseEvent):void
                        var gr:Graphic = Graphic(event.target);
                        gr.symbol = defaultsym;
                        myMap.infoWindow.hide();
            ]]>
        </fx:Script>
        <fx:Style>
            @namespace esri "http://www.esri.com/2008/ags";
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            @namespace esri "http://www.esri.com/2008/ags";
            @namespace components "com.esri.ags.components.*";
            components|InfoWindow
                background-alpha : 0.7;
                border-style : solid;
        </fx:Style>
        <mx:HBox   width="930" height="800"  id="mapHbox"  horizontalAlign="center" >   
        <mx:HBox width="80">
        </mx:HBox>
        <mx:HBox id="myHBox" width="800" height="600" backgroundColor="0xffffff"  >
            <mx:VBox  height="590" width="358"  >
            <!--    <mx:Panel
                    width="356" height="100%"
                    color="0x000000"
                    borderAlpha="0.15"
                    >
                    -->
                    <mx:Canvas height="100%" width="100%" backgroundColor="0xffffff" >
                        <esri:Map id="myMap" openHandCursorVisible="false"
                                  height="100%" 
                                  logoVisible="false"
                                  doubleClickZoomEnabled="false"
                                  scrollWheelZoomEnabled="false"
                                  zoomSliderVisible="false"
                                  scaleBarVisible="false" scale="4000000" >
                            <esri:extent>
                                <esri:Extent xmin="-10736651.061900" ymin="4024099.909700" xmax="-10409195.669800" ymax="3440153.831100"      >
                                    <esri:SpatialReference wkid="102100"/>
                                </esri:Extent>
                            </esri:extent>
                            <esri:ArcGISDynamicMapServiceLayer id="dynamicLayer2"
                                                               url="http://tfs-24279/ArcGIS/rest/services/RADIO_BUTTONS/counties_layer/MapServer" />
                            <esri:ArcGISDynamicMapServiceLayer id="dynamicLayer" name=" "
                                                               alpha="1"
                                                               load="loadLayerName()"
                                                       url="http://tfs-24279/ArcGIS/rest/services/{myURL.selectedItem.value}/MapServer"   />
                            <esri:FeatureLayer id="fLayer"
                                               graphicAdd="fLayer_graphicAddHandler(event)"
                                               mode="snapshot"
                                               outFields="*"
                                               symbol="{defaultsym}"
                                               url= "http://tfs-24279/ArcGIS/rest/services/RADIO_BUTTONS/feature_layer_0709_five/FeatureServer/ 0" />
                        </esri:Map>
                    </mx:Canvas>
            <!--    </mx:Panel>-->
            </mx:VBox>       
            <mx:VBox  height="590" width="20"  >
            </mx:VBox>       
            <mx:Canvas height="500" width="400" backgroundColor="0xffffff"
                       horizontalScrollPolicy="off"
                       verticalScrollPolicy="off" >
                <mx:VBox  width="420" height="50%" paddingLeft="5" paddingTop="10" paddingRight="10" paddingBottom="10"
                         verticalGap="8">
                    <mx:Form  >
                        <mx:FormItem label="Year        :"  >
                            <mx:ComboBox   id="yearcombo" selectedIndex="0" labelField="label" width="100%" change="changeEvt(event)"  >
                                <mx:ArrayCollection id="year"  >
                                    <fx:Object label="2007"  year="2007" />
                                    <fx:Object label="2009"  year="2009" />
                                </mx:ArrayCollection>
                            </mx:ComboBox>
                        </mx:FormItem>
                        <mx:FormItem label="Measure:">
                            <mx:ComboBox   id="myURL" selectedIndex="48" width="80%" mouseOver="clickEv2(event)" close="closeHandler(event)" >
                            <mx:ArrayCollection id="measures"   >
                                <fx:Object id="forindout07"  label="Forestry Industry Output" value="RADIO_BUTTONS/TFEI_07_forest_industry_output" year="2007" labeltext="Industry Output"  />
                                <fx:Object id="foremp07" label="Forestry Employment " value="RADIO_BUTTONS/TFEI_07_forest_employment" year="2007" />
                                <fx:Object id="forlabinc07" label="Forestry Labor Income " value="RADIO_BUTTONS/TFEI_07_forest_labincome" year="2007" />
                                <fx:Object id="forindbustax07" label="Forestry Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_forest_business_tax" year="2007" />
                                <fx:Object id="forindout09" label="Forestry Industry Output " value="RADIO_BUTTONS/TFEI_09_forest_industry_output2" year="2009"  />
                                <fx:Object id="foremp09" label="Forestry Employment " value="RADIO_BUTTONS/TFEI_09_forest_employment" year="2009" />
                                <fx:Object id="forlabinc09" label="Forestry Labor Income " value="RADIO_BUTTONS/TFEI_09_forest_labincome2" year="2009" />
                                <fx:Object id="forindbustax09" label="Forestry Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_forest_business_tax" year="2009" />
                                <fx:Object id="logindout07" label="Logging Industry Output"  value="RADIO_BUTTONS/TFEI_07_logging_industry_output" year="2007"  />
                                <fx:Object id="logemp07" label="Logging Employment " value="RADIO_BUTTONS/TFEI_07_logging_employment" year="2007" />
                                <fx:Object id="loglabinc07" label="Logging Labor Income " value="RADIO_BUTTONS/TFEI_07_logging_labincome" year="2007" />
                                <fx:Object id="logindbustax07" label="Logging Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_logging_business_tax" year="2007" />
                                <fx:Object id="logindout09" label="Logging Industry Output " value="RADIO_BUTTONS/TFEI_09_logging_industry_output" year="2009"  />
                                <fx:Object id="logemp09" label="Logging Employment " value="RADIO_BUTTONS/TFEI_09_logging_employment" year="2009" />
                                <fx:Object id="loglabinc09" label="Logging Labor Income " value="RADIO_BUTTONS/TFEI_09_logging_labincome" year="2009" />
                                <fx:Object id="logindbustax09" label="Logging Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_logging_business_tax" year="2009" />
                                <fx:Object id="ppindout07" label="Primary Paper Industry Output"  value="RADIO_BUTTONS/TFEI_07_primary_paper_industry_output" year="2007"  />
                                <fx:Object id="ppemp07" label="Primary Paper Employment " value="RADIO_BUTTONS/TFEI_07_primary_paper_employment" year="2007" />
                                <fx:Object id="pplabinc07" label="Primary Paper Labor Income " value="RADIO_BUTTONS/TFEI_07_primary_paper_labincome" year="2007" />
                                <fx:Object id="ppindbustax07" label="Primary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_primary_paper_business_tax" year="2007" />
                                <fx:Object id="ppindout09" label="Primary Paper Industry Output " value="RADIO_BUTTONS/TFEI_09_primary_paper_industry_output" year="2009"  />
                                <fx:Object id="ppemp09" label="Primary Paper Employment " value="RADIO_BUTTONS/TFEI_09_primary_paper_employment2" year="2009" />
                                <fx:Object id="pplabinc09" label="Primary Paper Labor Income " value="RADIO_BUTTONS/TFEI_09_primary_paper_labincome2" year="2009" />
                                <fx:Object id="ppindbustax09" label="Primary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_primary_paper_business_tax" year="2009" />
                                <fx:Object id="psindout07" label="Primary Solid Industry Output"  value="RADIO_BUTTONS/TFEI_07_primary_solid_industry_output" year="2007"  />
                                <fx:Object id="psemp07" label="Primary Solid Employment " value="RADIO_BUTTONS/TFEI_07_primary_solid_employment" year="2007" />
                                <fx:Object id="pslabinc07" label="Primary Solid Labor Income " value="RADIO_BUTTONS/TFEI_07_primary_solid_labincome" year="2007" />
                                <fx:Object id="psindbustax07" label="Primary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_primarysolid_business_tax" year="2007" />
                                <fx:Object id="psindout09" label="Primary Solid Industry Output " value="RADIO_BUTTONS/TFEI_09_primary_paper_industry_output" year="2009"  />
                                <fx:Object id="psemp09" label="Primary Solid Employment " value="RADIO_BUTTONS/TFEI_09_primary_solid_employment" year="2009" />
                                <fx:Object id="pslabinc09" label="Primary Solid Labor Income " value="RADIO_BUTTONS/TFEI_09_primary_solid_labincome" year="2009" />
                                <fx:Object id="psindbustax09" label="Primary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_primarysolid_business_tax" year="2009" />
                                <fx:Object id="spindout07" label="Secondary Paper Industry Output"  value="RADIO_BUTTONS/TFEI_07_secondary_paper_output" year="2007"  />
                                <fx:Object id="spemp07" label="Secondary Paper Employment " value="RADIO_BUTTONS/TFEI_07_secondary_paper_employment" year="2007" />
                                <fx:Object id="splabinc07" label="Secondary Paper Labor Income " value="RADIO_BUTTONS/TFEI_07_secondary_paper_labincome" year="2007" />
                                <fx:Object id="spindbustax07" label="Secondary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_secondary_paper_business_tax" year="2007" />
                                <fx:Object id="spindout09" label="Secondary Paper Industry Output " value="RADIO_BUTTONS/TFEI_09_secondary_paper_output2" year="2009"  />
                                <fx:Object id="spemp09" label="Secondary Paper Employment " value="RADIO_BUTTONS/TFEI_09_secondary_paper_employment" year="2009" />
                                <fx:Object id="splabinc09" label="Secondary Paper Labor Income " value="RADIO_BUTTONS/TFEI_09_secondary_paper_labincome" year="2009" />
                                <fx:Object id="spindbustax09" label="Secondary Paper Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_secondary_paper_business_tax" year="2009" />
                                <fx:Object id="ssindout07" label="Secondary Solid Industry Output"  value="RADIO_BUTTONS/TFEI_07_secondary_solid_industry_output" year="2007"  />
                                <fx:Object id="ssemp07" label="Secondary Solid Employment " value="RADIO_BUTTONS/TFEI_07_secondary_solid_employment" year="2007" />
                                <fx:Object id="sslabinc07" label="Secondary Solid Labor Income " value="RADIO_BUTTONS/TFEI_07_secondary_solid_labincome" year="2007" />
                                <fx:Object id="ssindbustax07" label="Secondary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_07_secondary_solid_business_tax" year="2007" />
                                <fx:Object id="ssindout09" label="Secondary Solid Industry Output " value="RADIO_BUTTONS/TFEI_09_secondary_solid_industry_output" year="2009"  />
                                <fx:Object id="ssemp09" label="Secondary Solid Employment " value="RADIO_BUTTONS/TFEI_09_secondary_solid_employment" year="2009" />
                                <fx:Object id="sslabinc09" label="Secondary Solid Labor Income " value="RADIO_BUTTONS/TFEI_09_secondary_solid_labincome" year="2009" />
                                <fx:Object id="ssindbustax09" label="Secondary Solid Indirect Business Tax" value="RADIO_BUTTONS/TFEI_09_secondary_solid_business_tax" year="2009" />
                                <fx:Object id="blank" label=" "  />
                            </mx:ArrayCollection>
                        </mx:ComboBox>
                        </mx:FormItem>
                    </mx:Form>
                    <mx:VBox  id="layerPanel" width="50%" height="8%" verticalGap="3" paddingLeft="17">
                        <mx:RadioButtonGroup id="radioBtnGroup" itemClick="radioClickHandler(event)"  />
                    </mx:VBox>
                    <mx:VBox   height="2%">
                    </mx:VBox>
                    <mx:VBox paddingLeft="17" height="10%"  >
                    <mx:Canvas  id="legendPanel" width="100%"  >
                        <mx:Label id="myLabel" text=" " fontWeight="bold" />
                        <esri:Legend id="myLegend"
                                     layers="{[dynamicLayer]}"
                                     map="{myMap}" visible="false"
                                     respectCurrentMapScale="false" />
                    </mx:Canvas>
                    </mx:VBox>
                    <mx:VBox>
                    <mx:TextArea width="275"  borderAlpha="0" height="200"  >
                        <mx:htmlText   >
                            <![CDATA[<font size='11'><b>Note:</b> Counties in white indicate either no data is available for that measure or the data has been supressed due to confidentiality.</font>
                            ]]>
                        </mx:htmlText>
                    </mx:TextArea>
                    </mx:VBox>   
                </mx:VBox>
            </mx:Canvas>
        </mx:HBox>
        </mx:HBox>   
    </mx:Application>

    Here is the HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Texas Forestry Economic Impact</title>
    <style type="text/css">
    <!--
    body {
        font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #FFF;
    p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 14px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
        font-size: medium;
        color: #333;
        font-family: Calibri;
        text-align: left;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #FFF;
        text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #FFF;
        text-decoration: none;
    .container table tr td Menu a {
        color: #FFF;
        text-decoration: none;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: underline;
        color: #FFF;
        font-size: small;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 960px;
        background: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background: #6f8d5c;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 10px 0;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background: #6f8d5c;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    .container .content table tr td {
        color: #FFF;
        font-weight: bold;
        text-align: center;
    .container table tr td {
        text-align: center;
        color: #FFF;
        font-family: Calibri;
        font-size: small;
    .container table {
        font-size: xx-small;
    table {
        font-size: 9px;
    .container table tr td p a {
        text-align: center;
    table tr td p a {
        text-align: center;
    .container .footer table tr td .footer {
        color: #FFF;
        font-size: small;
        text-align: center;
    .container p {
        font-size: medium;
    -->
    </style>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript">
    function updateSwfSize(myHeight, myWidth)
        var flexibleGorillaSwf = document.getElementById("FlashID");
        flexibleGorillaSwf.height = myHeight;
        flexibleGorillaSwf.width = myWidth;
    </script>
    </head>
    <body id="body" >
    <div class="container">
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
           <tr>
        <td bgcolor="#6f8d5c"><img src="assets/Banner5.jpg" width="960" height="120" alt="banner" /></td>
      </tr>
          <tr>
        <td height="31" bgcolor="#6f8d5c"><a href="Home.html">Home</a>  -  <a href="Highlights.html">Highlights</a>  -  <a href="EcoImpactTX.html" title="Map" target="_self">Summary Tool</a>  -  <a href="maps.html"  style="font-weight: bold; font-size:medium; target="_self">Maps</a>  -  <a href="charts.html" target="_self">Charts</a>  -  <a href="Report.html" target="_self">Download Reports</a>  -   <a href="FAQs.html" target="_self">FAQs</a>  -  <a href="ContactUs.html" target="_self"> Contact Us</a>  -  <a href="http://txforestservice.tamu.edu/main/default.aspx"> TFS Home</a><a href="http://txforestservice.tamu.edu/main/default.aspx"></a></td>
      </tr>
       <tr>
        <td height = "0" bgcolor="#FFFFFF"> </td>
      </tr>
    </table>
    <p >                                                                                                        <span style="font-size:x-large; color:#000">Thematic Maps</span></p>
    <p>
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="930" height="1950" id="FlashID" title="map">
        <param name="movie" value="maps.swf" />
        <param name="quality" value="high" />
        <param name="swfversion" value="6.0.65.0" />
        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don't want users to see the prompt. -->
        <param name="expressinstall" value="Scripts/expressInstall.swf" />
        <param name="SCALE" value="exactfit" />
        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
        <!--[if !IE]>-->
        <object data="maps.swf" type="application/x-shockwave-flash" width="930" height="1950">
          <!--<![endif]-->
          <param name="quality" value="high" />
          <param name="swfversion" value="6.0.65.0" />
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <param name="SCALE" value="exactfit" />
          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
          <div>
            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
          <!--[if !IE]>-->
          </object>
        <!--<![endif]-->
      </object>
    </p>
    <p><!-- end .content --></p>
    <div class="footer">
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="0"  bgcolor="#6f8d5c"><p class="footer"><a href="Home.html">Home</a>  -  <a href="Highlights.html">Highlights</a>  -  <a href="EcoImpactTX.html" title="Map" target="_self">Summary Tool</a>  -  <a href="maps.html"><span style="font-weight:bolder"><span style="font-size:medium">Maps</span></span></a></a>  -  <a href="charts.html">Charts</a>  -  <a href="Report.html" target="_self">Download Reports</a>  -  <a href="FAQs.html" target="_self">FAQs</a>  -  <a href="ContactUs.html" target="_self">Contact Us</a>  -  <a href="http://txforestservice.tamu.edu/main/default.aspx">TFS Home</a><a href="http://txforestservice.tamu.edu/main/default.aspx"></a></p></td>
      </tr>
    </table>
    </div>
    </div>
      <!-- end .container --></div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

  • Not able to run Java3d on internet explorer

    Hi there,
    I have made an application using Java3D api (1.3.1). And, i have deployed it on WebLogic server. When i run this application with installed java3d environment(java3d-1_3_1-windows-i586-opengl-sdk.exe) on Internet Explorer 6.0, it works fine. But when i uninstall the Java3D environment & try to run the application i get this error ::
    java.lang.ExceptionInInitializerError
         at com.aramco.wellplot.view.multilateral.TopView.createCanvas3D(TopView.java:1054)at com.aramco.wellplot.view.multilateral.TopView.<init>(TopView.java:223)
         at com.aramco.wellplot.view.WellPlotViewer.openFile(WellPlotViewer.java:1140)
         at com.aramco.wellplot.view.WellPlotViewer.access$6000371(WellPlotViewer.java:27)
         at com.aramco.wellplot.view.WellPlotViewer$2.mouseClicked(WellPlotViewer.java:339)
         at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:208)
         at java.awt.Component.processMouseEvent(Component.java:5024)
         at java.awt.Component.processEvent(Component.java:4818)
         at java.awt.Container.processEvent(Container.java:1380)
         at java.awt.Component.dispatchEventImpl(Component.java:3526)
         at java.awt.Container.dispatchEventImpl(Container.java:1437)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3214)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2938)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2859)
         at java.awt.Container.dispatchEventImpl(Container.java:1423)
         at java.awt.Component.dispatchEvent(Component.java:3367)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:190)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.sun.awt)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:270)
         at java.security.AccessController.checkPermission(AccessController.java:401)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:542)
         at java.lang.SecurityManager.checkPackageAccess(SecurityManager.java:1513)
         at sun.applet.AppletSecurity.checkPackageAccess(AppletSecurity.java:166)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:109)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:262)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:322)
         at javax.media.j3d.GraphicsConfigTemplate3D.<clinit>(GraphicsConfigTemplate3D.java:55)
         ... 23 more
    I have included the required Java3D JAR files with my JSP page. I have also provided the DLL files but still getting the same error. The following code is written in JSP page ::
    <HTML>
    <HEAD>
         <TITLE>Application</TITLE>
    </HEAD>
    <BODY LEFTMARGIN="0" RIGHTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0" BGCOLOR="#C0C0C0">
    <APPLET WIDTH="100%" HEIGHT="100%"
              CODE="wellplot.view.Viewer.class"
              ARCHIVE="wp.jar,clib.jar,j3dutils.jar,j3dcore.jar,vecmath.jar, j3d.dll, j3dutils.dll, j3daudio.dll"
              CODEBASE=".">
    <PARAM NAME = "DEBUG" VALUE = 'TRUE'>
    <PARAM NAME = "USERNAME" VALUE = 'WP'>
    <PARAM NAME = "PASSWORD" VALUE = 'WP'>
    <PARAM NAME = "DB_URL" VALUE = 'ABC:1521:ORION'>
    <PARAM NAME = "RUN_ID" VALUE = '1'>
    <PARAM NAME = "PLOT_TYPE" VALUE = '<%= plotType %>'>
    </APPLET>
    </BODY>
    </HTML>
    Please help me out to resolve this exception. thx in advance.
    Regards,
    Prashant

    Prashant,
    what you are doing with the HTML-code above is to use the IE inbuilt Java VM. This VM is very old and corresponds to the Java 1.1 Specification. Java 3D requires a Java2 Platform.
    To run Java 2 Applets in IE you must use the Java Plugin JPI. I think, there is also a JPI Forum.
    In a few words: If you have installed the actual Java 2 SDK from SUN (JPI is included) you can replace the Java VM in the IEs Options Menue (there is a checkbox in the advanced options)
    To run Java 2 Applets in your customers IE you must change the applet tag in your HTML code into a Plugin-Tag. This is different for Mozilla and IE and therefore a complex task. You will find a tool named HTML-Converter within your Java home directory, which will help you to convert an applet tag into correct Plugin-Code.
    Regards,
    Oliver

  • Not able to see form on Internet Explorer......FRM 92050 Pls help

    Hi,
    i just installed the 9ids release 2..
    i started oc4j instance version 1.3.1.8
    i created one fmb in default path forms90 and comiled the same in the
    same directory..
    when i run the browser it is throwing following error:
    FROM 92050 Failed to connect to the server /forms90/190servlet-1
    Details
    Java Exception
    java.io.ioexception: Negative content length from
    http://servername:8888/forms90/
    the following error occured
    (code=dns_no_data) the ip address was not found during the
    Dns lookup
    Please tell me detailed configuration what i have to made in
    regedit or forms90.cfg and environment file..
    No idea how i can proceed now..
    Thanks in advance
    asp

    Hi all,
    HMMM.. i fixed the problem.. but still need some help
    in my url i specified local host instead of servername and i am able to run the form on the web.
    http:localhost:8888/forms90/f90servlet?form=....etc(working fine)
    instead of
    http:itxkjdkk:8888/forms90/f90servlet?form=
    This is throwing error FRM92050
    but the problem is when ever i run the fmb from form builder in the IE browser
    it is taking the http://itxkjdkk:8888/forms90/f90servlet..so throwing error so i have to manually replace the url in browser to localhost:8888
    How can i set this through in formsweb.cfg..i did try to
    http:localhost:8888/forms90/f90servlet?form=....in server_url parameter of the
    formsweb.cfg but still it is taking http://itxkjdkk:8888/forms90/f90servlet when i run the form on web..
    pls help
    asp

  • Always facing the "Not Responding" issue while launching the internet explorer 11. I have tried reset in advanced, deleting all cookies, history and all. But no result.

    Always facing the "Not Responding" issue while launching the internet explorer 11. I have tried reset in advanced, deleting all cookies, history and all. Also I did change the default site to https://www.google.com. But no result.
    Some times after some time, able click on new tab and did open any urls. But it is rare. Please help me on this issue. Because of this unable to work with QTP/UFT tool.
    I am getting on top of the screen the below error -
    Error on top the ie screen :
    res:/ieframe.dll/acr_error.htm#google.com,https://www.google.com/ - Internet Explorer (Not Responding)
    I am getting at the bottom of the screen the below error -
    Error at the bottom of the ie screen :
    A problem with this webpage caused Internet Explorer to close and reopen the tab.

    Hi,
    Please refer to the following link to troubleshoot this issue:
    http://msdn.microsoft.com/en-us/library/dn338138.aspx
    Check the browser add-ons
    Check the browser rendering mode
    Then, please also make sure to install latest Windows Updates which might address this issue.
    Update your anti-virus program and perform a security scan incase some virus cause this issue.
    Yolanda Zhu
    TechNet Community Support

  • Not able to generate reports after 8.1.1.3 patch installation

    Hi All,
    We are not able to generate reports after 8.1.1.3 patch installtion.
    and we also followed workaround as below
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Still not able to generate Reports.
    Below is error message
    Please ask your systems administrator to check your application configuration.
    ObjMgrMiscLog     Error     1     000000064e150fa0:0     2011-07-07 19:45:31     (busobj.cpp (1654)) SBL-DAT-00222: An error has occurred creating business component 'Report Template Position BC' used by business object 'Report Administration'.
    Please ask your systems administrator to check your application configuration.
    ObjMgrBusServiceLog     Error     1     000000064e150fa0:0     2011-07-07 19:45:31     (swemenusvc.cpp (406)) SBL-DAT-00222: An error has occurred creating business component '<?>' used by business object '<?>'.
    Please ask your systems administrator to check your application configuration.
    Thanks
    Sean

    Hi Rajan,
    Thankyou for for your reply.
    Reports were working fine and we are able to generate reports at configured views in 8.1.1.1 version.
    After installing 8.1.1.3 patch, if we click on reports icon below is the error message displayed.
    An error has occurred creating business component '<?>' used by business object '<?>'.
    Please ask your systems administrator to check your application configuration. (SBL-DAT-00222).
    - is it mandatory to configure security model?(in 8.1.1.1 we used default security model)?
    -is it necessary to import BIPDataService and BIPSiebelSecurityWS inbound Web Services?
    - I didn't see below views as mentioned in bookshelf.
    . Reports - Custom Templates
    . Reports - Standard Templates?
    Thanks
    Sean

  • I'm not able to access to the internet with my ipod ..help! Non riesco a connettermi su internet via wi-fi !

    Salve, ho appena comprato il mio ipod di 8G..  connettendomi wi-fi al router di casa mia, aprendo safari (o le altre applicazioni che richiedono la connessione internet) spunta la finestra con scritto "Impossibile aprire pagine, Safari non può aprire la pagina perché non è connesso a Internet" Ho provato e riprovato, ma niente! Spero possiate aiutarmi, grazie! :)
    Hello, I've just bought my ipod (8Gb)... even with the wi-fi I'm not able to access to the internet, opening any app that needs internet my ipod shows this " Cannot open page, Safari cannot open the page because it is not connected to the internet"  I tried and I tried but it was useless..! I hope You can help me! Thank you and sorry if my english isn't right

    I can connect to the site using another computer on my network. It's completely isolated to my iMac.

  • I have the new ipad and inserted  a new tata docomo sim , it shows network but is not able to connect to the internet,,, can any1 plzz help me out

    i have the new ipad and inserted  a new tata docomo sim in it, it shows network but is not able to connect to the internet,,, can any1 plzz help me out

    Let's start with the most obvious? Have you paid for service? If yes, thry THIS.

  • Firefox w/ not open forms from websites. Internet Explorer had no problem. Re-installed FF with no resolution.

    Firefox will not open forms (i.e. registration forms, class schedule, flyer, etc.) on certain websites. Updated Adobe Reader and Re-installed and updated FF. Still will not open the forms. Tried Internet Explorer with no problem at all. Tried FF on a different computer w/ no problem. Help please?

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • SSRS 2012 some users are not able to edit reports in the server

    Hello All,
    I am install reporting services SharePoint native mode but some users are not able to edit reports on server error is "Application cannot be started contact your application vendor" but this users edit reports on their client machine
    using report builder 3.0.
    Please help me

    Hi harshad_mule,
    Because Report Builder in the Report Manager is a ClickOnce application, the error message means that one or more of the files listed in the application manifest cannot be found on the server, so the application cannot be started. Based on my research, frequently
    this means that the application is somehow corrupted, or that the ClickOnce store is corrupted.
    To fix this issue, we can try to refer to the following steps:
    If Report Builder is corrupted, we can update the Reporting Services to repair this.
    Check that the Report Builder application is existing
        Open the Report Server folder. By default, the folder is located in: C:\Program Files\Microsoft SQL Server\MSSQL.<X>\Reporting Services\ReportServer\ReportBuilder
        Make sure the file "ReportBuilder.application" is existing in the folder mentioned above.
    If it is existing, please use the following URL to access the Report Builder directly:
    http://<server>/ReportServer/ReportBuilder/ReportBuilder.application
    And this issue can also be caused by browser. Because not all report functionality is supported by all browsers in Reporting Services. So please use IE browser to start Report Builder to try it again.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Since latest Firefox update, other web sites will load but Netflix will not. Netflix will load in Internet Explorer.

    Since latest Firefox update, other web sites will load but Netflix will not. Netflix will load in Internet Explorer.

    Does it matter whether you use www? Will the sign-in link open: https://signup.netflix.com/#do-login
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    1. Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server. Any difference? If not...
    2. Clear Firefox's Cache Completely
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    3. If needed, remove the site's cookies in this dialog
    While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • Standard version og gmail will not load, although it will on Internet Explorer. HTML version works OK.

    Standard version of gmail will not load, although it will on Internet Explorer. HTML version works OK.

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    1. Clear Firefox's Cache
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Offline Storage : "Clear Now"
    2. If needed, delete your google.com cookies here
    While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • Hi, i am not able to connect to the internet. wifi not working.

    hi, i am not able to connect to the internet. wifi not working. not able to find proper drivers for 32 bit win.7 os. need urgent help..
    This question was solved.
    View Solution.

    Hi:
    I can give you the link to the wifi driver, if you do the following steps to post the hardware ID for the wireless card, so I can figure out what model wireless card the notebook has...
    To find the hardware ID, go to the device manager and click on the device labeled Network Controller.
    Then click on the Details tab at the top of the Network Controller window.
    Now you see a Property drop down list and it is defaulted to Device Description.
    Drop down on that list and select the second item (Hardware ID's).
    Post the top string of characters you see in the window.

  • When I downloaded Firefox, it did not copy my Favorites List from Internet Explorer

    When I downloaded Firefox, it did not copy my Favorites Bar from Internet Explorer. If it did, I don't know where to find it on Firefox. Can you help?

    Look for a folder named '''from Internet Explorer''' in your bookmarks.

  • Book mark problem in SAP Bi web report with internet explorer 8

    Hi
    we recently started usig internet exlpore 8.0 for BI report, in that when we are click the book mark button it was not doing nothing. the same book mark option is working fine with Ineternet Exlpore 6.0
    Note:we are allowing the  Popup in IE8.0
    thanks
    Sudha

    Hi  Sudha,
    We had had the same issue, and we solved it reintalling the internet explorer (that was the faster and easier solution).
    [1159538|https://websmp130.sap-ag.de/sap(bD1lcyZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1100707] this note explain some errors with i-explorer 6 and 7, but it also happens with ie 8. In the note you have a "script" to be executed in the computer that have the error, but we didn't tested, we reinstall the ie directly.
    Regards and I hope it helps, Federico

Maybe you are looking for

  • Permanent error in BPE inbound processing

    Hi all, We have recently migrated are XI scenarios to a new server. In one of the file to rfc scenario whenver a file is processed i get the error in smq2: Permanent error in BPE inbound processing. The chances of BPM and mapping error  are less as t

  • Using MTS files with iMovie

    I'm having a real nightmare working with .mts video files.  I'm not sure if this is the best forum to discuss, but I'm willing to try anything at this point. I have a Canon Vixia HFR20 camera that saves in .mts format, and I'm trying to find a good w

  • SOA 11g Bundled EM - search instances with wildcard?

    Hello~ My apologies if this isn't the right place for this post... it's on a bit of a grey line between SOA and EM. Anyway, in the EM that comes bundled with SOA Suite 11g, under:Farm > SOA > soa-infra > [partition name] > [composite name] > Instance

  • Free item Indicator in PR (ME51N)

    Free Item check box not appearing in PR- item overiview (ME51N). How can I get that in PR item overview screen????

  • Sound not working on laptop hp pavilion dv6

    My sound is not working on my HP Pavilion dv6 Laptop.  I can not get any music to play through itunes and it will not even start playing when the play button is pressed.  I have not tried any movies.  When computer restarts it does not play windows o