Help with Mathscipt and loop for

I have a Mathscript/matlab code and I need to output the table on. One option is my first code, the other option is to use a loop for, but I get only the last exit. I need to get the set of output.

Any help.

Thank you

This is how it should look.

Tags: NI Software

Similar Questions

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • A program of Photoshop for beginners help with things and advertising brochures

    What would be a good program of Photoshop for beginners help with things and advertising brochures

    ' Advertising brochures and things ' seems to imply elements that will be printed on both sides of a piece of paper or make multipage documents.

    Photoshop is an image editor and can have only 1 page per document.

    In short, Photoshop is the application bad for something more than a single item from the front.

    Adobe InDesign is a page layout program that is specifically designed to create multipage documents.

    You can type or place text, photos of the place and the other images and have better control over the placement and arrangement of the elements on the page.

    InDesign, like Photoshop, Illustrator has a steep learning curve.

    You can download Adobe trial versions (these will only work for 30 days) and raise you some books or sign for video lessons on Lynda.com

  • Looking for adobe certified companies that can create a web site of muse with java and PHP for me

    Looking for adobe certified companies that can create a web site of muse with java and PHP for me

    Relationship problems he...

    1: nothing like the Adobe Certified companies

    2: sites of Muse do no PHP support.

  • Hi, how do I change the orientation of the page with headers and footers for facing pages

    Hello

    How to change the orientation of the page with headers and footers for facing pages in CS5

    Turning the page is only for the formatting of data - the page is not literally transformed for printing.

    In most print even if the pages of a book are enabled for the landscape, the header and the footer are still in the same position.

    If you need pages in landscape mode with headers and footers in a different location - you need to do these pages in the section "Master Pages" of the Pages panel

    Then apply these new Master Pages to the pages in your document.

    http://helpx.Adobe.com/InDesign/using/master-pages.html

    Note - it is not usual to have a different orientation for the headers and footers.

  • No support for pse4, don't need help with aid and all the rest. What is a layer? How can I get help PDF from CD? I don't have any idea how to use it. I have a Macbook pro.

    Need help with using pse4 not taken in charge by adobe. How subjects do not available and I have never used something like that. Aide said there is a download but have not been able to do. What is a rookie to do? Y at - it somewhere that I can go to learn how to use PSE4?

    To find out how your problem:

    http://kb2.Adobe.com/CPS/402/kb402107.html

    To get help from the CD files you double-click in the finder, go to PDF help and drag it to the desktop or elsewhere.

  • Help with packages and functions that it

    Hello, I need help with the package.
    I have two tables of the employee base (id, firstname, lastname, etc..) T1 and T2.
    What I need, it's a package and two features inside. First function reads the data from T1 and passes to the second function, where second function reads data from T2 and concatenates the data just read with data from function1 and data T1 + T2 function2 goes on the main program that displays this data.

    So far, I have:
    create or replace type emp_type as object
    (id number,
    firstname varchar(20),
    lastname varchar(20),
    salary number(9,2));
    
    create or replace type emp_type_table as table of emp_type;
    
    create or replace package my_package
    is emp_table emp_type_table:= emp_type_table();      -- *not sure if this line is correct*
    function get_T1_emp return emp_type_table;
    function get_T2_emp (T1_emp in emp_type_table) return emp_type_table;
    end my_package;
    
    -- *confusion begins*
    
    create or replace package body my_package as 
    function get_T1_emp
    return  emp_type_table as 
      emp_table emp_type_table:= emp_type_table();
    begin
         for i in (select * from T1) loop
             emp_table.extend;
             emp_table(emp_table.count):= (emp_type(i.id, i.firstname, i.lastname, i.salary));
          end loop;
        return emp_table; 
    end get_T1_emp; 
    - get_T1_emp function seems to be quite beautiful. At least it works separately
    function get_T2_emp (T1_emp in emp_type_table)
    return  emp_type_table  
      emp_table emp_type_table:= emp_type_table();
    begin
         for i in (select * from T2) loop
             T1_emp.extend;
             T1_emp(T1_emp.count):= (emp_type(i.id, i.firstname, i.lastname, i.salary));
          end loop;
        return T1_emp; 
    end get_T2_emp;
    end my_package;
    
    
    DECLARE
      v_Return emp_type_table;
      v_Return2 emp_type_table;
    BEGIN
      v_Return := get_T1_emp;
      v_Return2 := get_T2_emp(v_Return);
      for i in 1..2 loop
        DBMS_OUTPUT.PUT_LINE(v_Return2(i).id || ', ' || v_Return2(i).firstname || ', ' || v_Return2(i).lastname 
        || ', ' || v_Return2(i).salary || 'EUR');
      end loop;
    END;
    So basically I don't know about my tax package.
    Most important, I don't know how to write the get_T2_emp function. And also not very sure of my main function. Please can someone help my with my problem

    Published by: dber November 6, 2011 21:22

    Published by: dber November 6, 2011 23:38 added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    Hello

    Here you go

    SQL> DROP TABLE t1;
    
    Table dropped.
    
    SQL> DROP TABLE t2;
    
    Table dropped.
    
    SQL> CREATE TABLE t1 (id NUMBER,
      2                   firstname VARCHAR2(100),
      3                   lastname VARCHAR2(100) );
    
    Table created.
    
    SQL> CREATE TABLE t2 (id NUMBER,
      2                   firstname VARCHAR2(100),
      3                   lastname VARCHAR2(100) );
    
    Table created.
    
    SQL> INSERT INTO t1  (SELECT 1,'SURI','DAMA' FROM dual
      2                     UNION ALL
      3                     SELECT 2,'SRINU','DAMA' FROM dual);
    
    2 rows created.
    
    SQL> INSERT INTO t2  (SELECT 3,'ABC','XYZ' FROM dual
      2                     UNION ALL
      3                     SELECT 4,'DEF','PQR' FROM dual);
    
    2 rows created.
    

    Package code

    
    SQL> CREATE OR REPLACE PACKAGE test_array_pkg
      2  AS
      3    TYPE test_array1 IS TABLE OF t1%rowtype  INDEX BY PLS_INTEGER;
      4    TYPE test_array2 IS TABLE OF t2%rowtype  INDEX BY PLS_INTEGER;
      5
      6    FUNCTION get_t1 RETURN test_array1;
      7    FUNCTION get_t2(p_t1 IN test_array1)
      8    RETURN test_array2;
      9
     10  END test_array_pkg;
     11  /
    
    Package created.
    

    Package body

     SQL> CREATE OR REPLACE PACKAGE BODY test_array_pkg
      2  AS
      3    t1_array1 test_array1;
      4    t2_array2 test_array2;
      5
      6    FUNCTION get_t1
      7    RETURN test_array1
      8    IS
      9
     10      n NUMBER :=0;
     11
     12    BEGIN
     13
     14     FOR i IN (SELECT * FROM t1)
     15     LOOP
     16
     17       t1_array1(n).id:= i.id;
     18       t1_array1(n).firstname := i.firstname;
     19       t1_array1(n).lastname := i.lastname;
     20
     21       n:=n+1;
     22
     23     END LOOP;
     24
     25     RETURN t1_array1;
     26
     27    END get_t1;
     28
     29    FUNCTION get_t2(p_t1 IN test_array1)
     30    RETURN test_array2
     31    IS
     32
     33      n NUMBER:=0;
     34
     35    BEGIN
     36
     37     FOR i IN p_t1.FIRST..p_t1.LAST
     38     LOOP
     39
     40       t2_array2(n).id:=p_t1(i).id;
     41       t2_array2(n).firstname:= p_t1(i).firstname;
     42       t2_array2(n).lastname := p_t1(i).lastname;
     43
     44       n:=n+1;
     45
     46     END LOOP;
     47
     48     FOR i IN (SELECT * FROM t2)
     49     LOOP
     50
     51       t2_array2(n).id:=i.id;
     52       t2_array2(n).firstname:= i.firstname;
     53       t2_array2(n).lastname := i.lastname;
     54
     55       n:=n+1;
     56
     57     END LOOP;
     58
     59     RETURN t2_array2;
     60
     61    END get_t2;
     62
     63
     64  END test_array_pkg;
     65  /
    
    Package body created.
    

    Main script

     SQL> declare
      2
      3     t1_result test_array_pkg.test_array1;
      4     t2_result test_array_pkg.test_array2;
      5
      6  begin
      7
      8    t1_result:= test_array_pkg.get_t1;
      9    t2_result:= test_array_pkg.get_t2(t1_result);
     10
     11    FOR i IN t2_result.first..t2_result.last
     12    LOOP
     13
     14      dbms_output.put_line(t2_result(i).id||' '||t2_result(i).firstname||' '||t2_result(i).lastname);
     15
     16    END LOOP;
     17
     18  end;
     19  /
    1 SURI DAMA
    2 SRINU DAMA
    3 ABC XYZ
    4 DEF PQR
    
    PL/SQL procedure successfully completed.
    
  • Desperately need help with AS3 and Twitter Feed!

    Hi all

    I took another developer and try to add a Twitter feed to my flash application. The twitter feed has, but only the first title and loops. It does not show the other tweets, just the first title and repeat over and over again. Please help me with this because I'm desperate to fix.

    Here is my source code for Twitter.as

    I use Flash develop to make it the main.swf, but I don't know the code below for the Twitter account is wrong because it shows more then 1 tweet.

    package src.main

    {

    import com.greensock.TweenMax;

    import com.theppc.cmstools.CmsVars;

    import com.theppc.cmstools.TextTool;

    import com.theppc.visualtools.DrawBox;

    import flash.display.MovieClip;

    import flash.display.Sprite;

    import flash.errors.IOError;

    import flash.events.Event;

    import flash.events.IOErrorEvent;

    import flash.events.SecurityErrorEvent;

    import flash.events.TimerEvent;

    import flash.net.URLLoader;

    import flash.net.URLLoaderDataFormat;

    import flash.net.URLRequest;

    import flash.text.TextFieldAutoSize;

    import flash.utils.Timer;

    Import src.utils.TitleBlock;

    import com.greensock.easing.Back;

    import com.greensock.easing.Strong;

    import of CBC. Main;

    Import src.utils.HandleXml;

    /**

    * ...

    * @author Joshua King

    */

    SerializableAttribute public class extends MovieClip TwitterBox

    {

    private var _title:TitleBlock;

    private var _bg:Sprite

    private var _width:int;

    private var _height:int;

    private var _tweetholder:MovieClip;

    private var _txt:ContentTxt;

    private var _mask:Sprite;

    private var _user:String = "PPC_Creative";

    private var _tweetcount:int = 5;

    private var _tweets:Array = [];

    private var _times:Array = [];

    private var _gap:Number = 55;

    private var _tweetmove:int = 0;

    public void TwitterBox (_w:int, _h:int)

    {

    _width = _f;

    _height = _it;

    init();

    }

    private function init (): void

    {

    _bg = new Sprite();

    addChild (_bg);

    _bg. Graphics.LineStyle(1,0x00ccff);

    _bg. Graphics.beginFill (0xFFFFFF);

    _bg. Graphics.drawRect(0,0,_width,_height);

    _bg. Graphics.endFill ();

    _tweetholder = new MovieClip();

    _tweetholder.y = 55;

    _tweetholder.x = 5;

    addChild (_tweetholder);

    _MASK = new Sprite();

    _MASK. Graphics.beginFill (0xF09FFF);

    _MASK. Graphics.drawRect (0, _gap, _width, _height - _gap - 5);

    _MASK. Graphics.endFill ();

    addChild (_mask);

    _tweetholder. Mask = _mask;

    _txt = new ContentTxt();

    _txt.txt.text = ";

    _txt.Alpha = 0;

    _txt.txt.width = 537;

    _txt.txt.height = _height - _gap - 5;

    _tweetholder. AddChild (_txt);

    addContentboxes();

    }

    private function addContentboxes (): void

    {

    _title = new cartridge (Main._sitedata ['text'] [5] .we, 547);

    addChild (_title);

    addTweets();

    }

    public function addTweets (): void

    {                    /*

    var urlReq:URLRequest = new URLRequest (_url);

    var loader: URLLoader = new URLLoader();

    loader.addEventListener (Event.COMPLETE, getTweets);

    loader.addEventListener (IOErrorEvent.IO_ERROR, IOError);

    loader.addEventListener (SecurityErrorEvent.SECURITY_ERROR, SError);

    Loader.Load (urlReq);

    */

    var loader: URLLoader = new URLLoader();

    loader.dataFormat = URLLoaderDataFormat.TEXT;

    loader.addEventListener (Event.COMPLETE, getTweets);

    var url: String = " " https://API.Twitter.com/1/statuses/user_timeline.RSS?screen_name=PPC_Creative ";

    must use a proxy due to security sandbox issues if you call this twitter url directley to flash

    var req:URLRequest = new URLRequest ("rssProxy.php? rss =", CmsVars.PHP_ROOT + url)

    trace (CmsVars.PHP_ROOT + ' rssProxy.php? rss =' + url);

    Loader.Load (req)

    }

    private void getTweets(evt:Event):void

    {

    var twitterXML:XML = new XML (evt.target.data);

    var tweetList:XMLList = twitterXML.children ();

    var tweetItem:String;

    var timeItem:String;

    var _counter:int = 0;

    _tweetmove = 0;

    _tweets = [];

    for (var i: int = 0; i < tweetList.length (); i ++)

    {

    tweetItem = cheat [i]. *: title;

    trace (tweetItem);

    If (tweetItem! = "")

    {

    _tweets.push (tweetItem);

    _Counter ++

    If (_counter > = _tweetcount)

    {

    break;

    }

    }

    }

    moveTweet();

    }

    private function moveTweet (): void

    {

    _txt.Alpha = 0;

    TextTool.setText (_txt.txt, _tweets [_tweetmove], true);

    TweenMax.to (_txt, 1, {delay: 1, alpha: 1, replace: 0});

    TweenMax.to (_txt, 1, {delay: 12, alpha: 0, crush: 0, onComplete:moveTweet});})

    _tweetmove ++

    If (_tweetmove > = _tweets.length) _tweetmove = 0;

    }

    private void IOError(e:Event):void

    {

    trace ("io error!");

    }

    private void SError(e:Event):void

    {

    trace ("security error!");

    }

    }

    }

    First of all, your cheating XMLList length is only 1. I like to use E4X rating rather than the old children() as you're here, so I might suggest to change this:

    var tweetList:XMLList = twitterXML.children ();

    in your getTweets() method to:

    var tweetList:XMLList = twitterXML.channel.item;

    Then you have all your items. I liked so much out of each of them:

    for (var i: int = 0; i< tweetlist.length();="">

    {

    trace (tweetList [i] .title);

    }

    Also, I had no trouble calling Twitter directly from Flash using:

    var loader: URLLoader = new URLLoader();

    Loader.Load (new URLRequest ("https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=PPC_Creative"));

    loader.addEventListener (Event.COMPLETE, getTweets);

    However, there is a typing error in what you had posted - you had a space in the URL - after the C in C reactive...

  • Need help with drag and drop

    IM really new to this program as a

    day new hehe and I need help. im making a game quiz and your supposed

    ED to score in the hoop with a circle.  I have the

    codes for the drag and drop for the circle, but I need help with the collision between the Hoop and the ball, I want to go to the image next or gotoandPlay when the ball touches the ring. HELP PLEASE

    You should not attach code to objects.  and you can be able to happen by using a loop.

    Start by removing all the code the suggested by maqro (i.e. as3) and by removing all the code attached to objects.

    use:

    {yourobject.onPress = function ()}

    this.startDrag ();

    }

    {yourobject.onRelease = yourobject.onReleaseOutside = function ()}

    this.stopDrag ();

    {if (this.) HitTest (whatever))}

    do something

    }

    }

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • Need help with Windows 7 drivers for Radeon HD 7670 m on a preinstalled Windows Pavilion g6-2300sy 8

    Hey, I recently bought a HP Pavilion g6-2300sy with Windows preinstalled 8 and decided to install Windows 7 on it instead, as I'm rates more familiar with it. Now I seem to be running into issues with the Radeon HD 7670 m laptop graphics card, since I can't find a driver that works for her. I tried several generic drivers AMD HD 7000 series, but none of them is not working - Windows continues to give the error code 43.

    How can I fix without going back to Windows 8? Any help would be really appreciated.

    Hello:

    For the g6-2300sy, use the W7 x 64 drivers and software for this model:

    For the graphics, you install only the AMD graphics driver. Do NOT install the Intel driver.  The AMD driver has the graphics for two video cards.

    DO NOT USE ANY BIOS OR FIRMWARE FROM THIS LINK FILES

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?cc=us&DLC=en&LC=en&OS=4063&product=5278311&softw... =&

  • Need help with WRT54G2 and network at home

    OK, I got the WRT54G for a long time and recently updated for the WRT54G2 but now can't access the file sharing and running Windows Vista from Windows XP using wireless.

    Here is my set upward,

    Desktop running Windows Vista connected to the router (that's the computer with folders and printers)

    2 - Windows XP laptop computer connected wireless

    All 3 are defined on the same workgroup can be seen on Windows XP machine when you go to, favorite network, also all can get on the internet.

    Any ideas what the problem might be? I'm guessing a setting somewhere but I was not able to find it.

    After a lot of research and help from this forum, I finally got to work, it was a firewall issue

    Thanks for the replies.

  • Connect the TV (with sound) and monitor for Optiplex 390

    Here is my system info:

    OptiPlex 390 small footprint

    Windows 7 64 bit

    Intel Chipset H61

    Intel HD 2000 (with HDMI and VGA) graphics card

    Map of AMD Radeon 6350 512 MB video (with 2 DVI splitter)

    I need to connect 1) HD TV with the sound via HDMI and 2) monitor via VGA to this system (no sound).  I did a lot of research on the Internet but can't find a definitive answer if my system will support both views.  Can anyone confirm if one of the three options below does not work, or any other ideas?

    Option 1: remove AMD card, connect the HDMI TV, connect the VGA monitor.  I've seen conflicting information if the HDMI and VGA ports can be connected at the same time.

    Option 2: Connect TV: dispatcher--> DVI HDMI adapter DVI-->--> TV, monitor connect a HDMI cable: dispatcher DVI DVI VGA adapter--> monitor-->.  It should work, but if someone can confirm if the AMD Radeon 6350 supports audio through DVI to TV?

    3rd possibility: buy another video with HDMI and VGA card.  I'd rather not spend more money... I have six systems to connect!

    Thank you in advance for your help!

    Hi Ozone72,

    Intel HD Graphics 2000 which was shipped with OptiPlex 390 supports two independent screens. Which means that you can connect TV for VGA and HDMI monitor, so that AMD card must be removed from the computer.

    Please try it and return back if it worked.

  • Help with a custom calculation for rounding up/down in Adobe Pro

    Hello!  I've never written a custom calculation, so I'm lost; could someone help me please write one round to high-low a.50/.49 with this field name:

    CreditedTotalLocal + OtherHE

    For example, if the value of this field, which is the result of the function "value is the sum of the (+) of the following fields" on two fields named CreditedXXXXLocalHE and CreditedOtherHE - between 3.0 and 3.49, this field should be 3.0.  If the value is 3.50 to 3.99, the field should show 4.0.

    I'm sure it's very simple, but I've tried some things from this and other forums without success.  Help, please!

    Thanks in advance,

    Kim

    Instead of using the "field is the sum of the following fields:" or him simplified "Field Notation" you need a custom as a calculation script

    function myRound (n, d)
    {
    / * By d. P. story
    http://Math.uakron.edu/~dpstory/acrotex/elementary/rounding.PDF
    */
    n = String(n).replace(/^,$/g,""); "
    d =-1 * d
    var m = Math.pow(10,d);
    n * = m;
    n = Math.round (n);
    n / m =;
    d = ( d > 0 ) ? d: 0;
    n = n.toFixed (d);
    return n;
    }

    var nResult = this.getField("CreditedXXXXLocalHE").value + this.getField("CreditedOtherHE").value;
    Event.Value = myRound (nResult, 0);

    or

    function DoubleRound (nValue, nDec)
    {
    var nResult = Math.round (value * Math.pow (10, nDec + 1)) / Math.pow (10, nDec + 1);
    return Math.round (nResult * Math.pow (10, nDec)) / Math.pow (10, nDec);
    }

    var nResult = this.getField("CreditedXXXXLocalHE").value + this.getField("CreditedOtherHE").value;
    Event.Value = DoubleRound (nResult, 0);

    The above two functions to round the values decimal, myRound use - Dec for the decimal value to be rounded so that the DobuleRound use the positive value for the decimal number or powers of 10 as the 1,000 with the 3 myRound and -3 for DoubleRound.

  • Need help with SQL/PL/SQL for Dates

    Hi Experts - need help with a SQL query.

    I need to insert some date fields in a table called CALENDAR_PERIOD.

    Current data in CALENDAR_PERIOD table with their data types:

    STARTPERIOD (DATE) YEAR (NUMBER) PERIOD_LABEL (Varchar2 255)

    02/11/2014 2014 2014/02/11 SUN

    03/11/2014 2014 14/03/11 MON

    04/11/2014 2014 11/04/14 MAR

    I have to increment above values up to the year 2025. I don't know how to write SQL and increment of these values.

    Ex: My next value should insert: 05/11/2015 2014 11/05/14 WED like that I need to insert data until 12 31, 2025.

    Can you please help me with PL/SQL block?

    Really appreciate your help!

    DB version:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    PL/SQL Release 11.2.0.3.0 - Production

    CORE Production 11.2.0.3.0

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production

    NLSRTL Version 11.2.0.3.0 - Production

    Thank you
    Sandy

    Hello Sandy,

    Maybe something like

    INSERT INTO calendar_period (startperiod, year, period_label)

    SELECT DATE '' 2014-11-04 + LEVEL

    , TO_NUMBER (TO_CHAR (DATE '' 2014-11-04 + LEVEL, "YYYY"))

    , TO_CHAR (DATE '' 2014-11-04 + LEVEL, "MM/DD/YY DY")

    OF the double

    CONNECT BY LEVEL<= date="" '2025-12-314="" -="" date="">

    ;

    ((mais je ne comprends pas pourquoi nous créons une telle table "année" et "period_label" peuvent être calculé à partir de startperiod))

    Best regards

    Bruno Vroman.

Maybe you are looking for

  • projector does not not on Sierra

    After opdating to Sierra Spotlight does not work. On the first there is a little life, but now it is completely dead.

  • How can I synchronize Safari bookmarks with those in Firefox?

    I have a PC running Firefix and Firefox Sync OK. I have an ipad 2 with Firefox Home installed and connected fine to my FF sync account. I was expecting FF home to synchronize bookmarks on ipad Safari with those on the desktop. Apparently not so much.

  • HP Pavilion DV6500: TV laptop computer connection

    Hello I just installed Windows 7 and am trying to connect my laptop to my TV. However, when I go to control Panel\Appearance and Personalization\Connect to an external monitor, I don't see the second monitor. (Have used an HDMI cable to connect to th

  • Manage my Apple ID

    My nighbor lost his Apple ID password. When you attempt to reset the password / manage the Apple ID, authentication email has been sent to an e-mail address that it cannot access. How can he solve the problem? Thank you.

  • WHAT DO THE POINTS GREEN AND ORANGE BY A FOLDER?

    What do the Green and orange points by a folder?  that is the photo folder