To access the nodes to copy the names to a list

I try to copy the names on the list at the top of this page in a BCC list below with the action of a button. However knowing the correct access to the loop variable 'i' node becomes very difficult if not impossible. Any suggestions? Thank you.

https://workspaces.Acrobat.com/?d=BfzTUdfSbgoGQjOsZUaj9Q

Good code for the button is:

Number of lines

var lines = resolveNodes ("form1. Page1.document.OnethruTen.OneThruFour.four [*] ");" count lines

var = rows.length nRows - 1; assign the number of rows to variable

Create table to contain the data sorted array [] [] []...

Var NomTableau = new Array ();

To loop through the number of instances of subform #4 get values for each textfield

for (i = 0; i<= nrows;="">

{

Fill the table with the values in subform #4

nameArray [(i*2)] = xfa.resolveNode ("form1. ("Page1.document.OnethruTen.OneThruFour.four [" ' + i + ' "] '). Owner.rawValue;

nameArray [((i*2) + 1)] = xfa.resolveNode ("form1. ("Page1.document.OnethruTen.OneThruFour.four [" ' + i + ' "] '). DF.rawValue;

}

Console.println (NameArray);

To loop through the values in the table and place them in the BCC list

for (i = 1; i<= nrows+1;="">

{

If (i<= nrows="">

{

this.resolveNode('form1.) Page1.ActionOwner.Table1._name [0]') .addInstance (1);

If (xfa.host.version< 8)="">

XFA. Form.Recalculate (1);

}

}

Form1. Page1.ActionOwner.Table1.resolveNode ("name [" + i +"]"). TextField1.rawValue = nameArray [((i*2)-2)];

Form1. Page1.ActionOwner.Table1.resolveNode ("name [" + i +"]"). TextField2.rawValue nameArray = [((i*2)-1)];

}

Tags: Adobe LiveCycle

Similar Questions

  • Cannot access the name \\computer 0 error code x 80070035 using 2 machines Win 7 Professional x 64

    Makes me crazy!

    State of the computer 1: Norton 360 on. Wired Ethernet for Linksys router. This Computer Configuration initially homegroup. User name and password on both machines. 2 computer can see this machine as expected - sweet!

    State of the computer 2: uninstalled Norton 360. Windows Firewall is off. Wired Ethernet for Linksys router. User name and password on both machines. This computer cannot be seen by computer 1 grrrrr!

    I left home group on both machines several times without success. Several reboots. Convenience stores are worthless. I tried a lot of things posted on this forum and others. My Win 7 machines see my XP machines without problem. All computers in the same workgroup. I can ping computer 2 1 computer and vice versa.

    Earlier this week, it's the opposite problem. 2 computer could not see Computer1. Even old 'advanced sharing' has failed. After 3 days of forums and try things, I reinstalled Win 7 on both computers and everything was fine. Very painful and I am reluctant to reinstall all my software until this problem is fixed permanently.

    Does anyone have a short solution to reinstall Win 7?

    Any ideas why it continues to be? I set up a wireless network first network printer, and then wired, then to the USB. I uninstalled all the software of printer, but that did not help.

    Hi Jack_W,

    Since you are able to see and access computer 2 1 computer and unable to see the computer from computer 1 2. I suggest you first with the computer to check if network discovery is enabled on the computer.

    To turn on network discovery

    1. Open advanced sharing settings by clicking the Start button, then Control Panel. In the search box, type network, click network and sharing Center, and then in the left pane, click change advanced sharing settings.

    2. click on the chevron to expand the current network profile.

    3. If network discovery is off, under the Discovery Network, click turn on network discovery, and then click save changes. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    Also, you can access the link and follow the steps and check if it helps to see the computer 2.
    http://Windows.Microsoft.com/en-us/Windows7/why-can-t-I-connect-to-other-computers

    You can also check if you can access computer computer 2 1 by opening with the command run and typing in the IP address of computer 2.

    To do this, follow the steps in the computer 1.

    1. Click Start
    2. In the start menu search box type computer 2 \\ipaddress\ and press on enter for example: \\192.168.0.2\

    Check if it opens and connects to the computer 2 in the network.

    Also, you can try to start the computer in safe mode with network and see if they can see each other.  To boot to the desktop in safe mode with network keep tapping key F8 during restart. Once you see the option to start it in safe mode with select network and press ENTER.

    Access the link to learn more about how to start the computer in safe mode:
    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    I hope this helps. Let us know the results.

    Thank you and best regards,

    Srinivas R Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • To access the names of the fields in the ArrayCollection collection

    Hello, this can seem like a n00b question, but, I have a collection of table that looks to the below:

    public var topFive:ArrayCollection = new ArrayCollection([)
    {Month: "GAME_Redemptions"},
    {Month: "TALLINK_Redemptions"},
    {Month: "YvesRocher_Redemptions"},
    {Month: "ETAM_Redemptions"}
    ]);

    With a loop, for example, if I want to access the value, I would type, topFive [i] .month. However, if I want to access domain name, what would be the code. IM assuming that it would be something like [i] topFive - but it does not return the desired result.

    Does anyone know how to do this? I wanted to avoid having to put the table in a datagrid control and then extract values from there.

    Help, please!

    Craig

    Your ArrayCollection collection contains five dynamic objects. If the expression 'topFive [i]' will give you the object at index 'i', rather than the Month of this object property. If you do not know the names of the properties of these objects then you need in order to access their properties a second loop:


    <>
    "xmlns:MX ="http://www.adobe.com/2006/mxml"
    Layout = "vertical" >
       
       
            Import mx.collections.ArrayCollection;
               
    private var topFive:ArrayCollection = new ArrayCollection([)
    {Month: "GAME_Redemptions"},
    {Month: "TALLINK_Redemptions"},
    {Month: "YvesRocher_Redemptions"},
    {Month: "ETAM_Redemptions"}
    ]);
               
    private void doLoop(): void
    {

    Loop through the objects in the collection
    for each (var item: object in topFive)
    {

    Loop in the properties of the current object.
    for (var property: String in object)
    {

    Display the name of the current property and the value it contains
    output. Text += property + ":"+ object [property] + '\n'; '.
    }
    }
    }
               
    ]]>
       
       
        <>
    label = 'Do Loop'
    Click = "doLoop ()" / > "
           
        <>
    Width = "200".
    Height = "300".
    ID = "output" / >
       

  • Flex 3 - to access the names of objects label dynamically

    In Flex3 that it does not work, I guess because I do not know the equivalent for the _root

    for (var i: Number = 0; i < VehicleData.length; i ++) {}
    ["Mathilde" + i] cvsDispatch .text = VehicleData.getItemAt (i). VNAME;
    }

    I'm trying to access the labels named lblV0 etc that are on a Web cvsDispatch in the application.
    See you soon,.
    Rob

    I have it.
    Application ["lblV" + i]

  • How to remove the names on my list of bbc

    When I send emails and click on my list of BBC I have the name and address that appears twice, Hoe delete these additional email addresses?

    Follow these steps to delete the recorded data (form) in a drop-down list:

    1. Click on the (empty) input field on the web page to open the drop-down list
    2. Select an entry in the drop-down list
    3. Press the DELETE key (on a Mac: shift + delete) to remove it.
  • Using #WORKSPACE_IMAGES # with the names of dynamic list of Image, not to hardcode

    I hope someone can help me with this request.

    I am developing an Apex application but I am learning as I go along by examples of Google search and read the tutorials, etc.  I am trying to create a slideshow based on a dynamic list of Image names. First, I created an apex_collection in a header containing the names of the image process, I need (view/column APEX_COLLECTIONS. C001) I then created a Page called P81_IMAGE_NAME element. I'm trying to loop through the collection and display the pictures in a slide show.   I have a HTML Page with the following code in the Source of the region (found the code in an example online)... Please can someone tell me where I can add the following PL/SQL code so that #WORKSPACE_IMAGES # nom_image may contain the names of images dynamically recoveries rather then hard-coded image names as in the < div Section of the Source region - Code I want to add somewhere, don't know where it add or even if it will work

    Declare cursor c1 is

    Select c001

    of apex_collections

    where collection_name = "CO_IMAGES";

    Start

    A1 to c1 loop

    : P81_IMAGE_NAME: = c1. C001;

    < img src = "#WORKSPACE_IMAGES & P81_IMAGE_NAME" alt = "Slideshow Image" / >

    end loop;

    end;

    -End

    -The code which displays images, I found (Harcoded in the < div section)

    < script type = "text/javascript" >

    function slideSwitch() {}

    var $active = $("#slideshow IMG.active");

    If ($active.length == 0) $active = $("#slideshow IMG:last");

    This allows to take images in their order of appearance in the tag

    var $next = $active.next () .length? $active.next)

    : $('#slideshow IMG:first');

    Uncomment the 3 lines below to shoot images in random order

    var $sibs = $active.siblings ();

    var rndNum = Math.floor (Math.random () * $sibs.length);

    var $next = $($sibs [rndNum]);

    $active.addClass('last-active');

    $next.css ({opacity: 0.0})

    .addClass ('active')

    . Animate ({opacity: 1.0}, 3000, function() {})

    $active.removeClass ('active last active');

    });

    }

    {$(function()}

    setInterval ('slideSwitch()', 3000);

    });

    < /script >

    < style type = "text/css" >

    / * the value width and height to match your images * /.

    {#slideshow}

    position: relative;

    height: 400px;

    }

    #slideshow IMG {}

    position: absolute;

    top: 0;

    Left: 0;

    z index: 8;

    opacity: 0.0;

    }

    {IMG.active #slideshow

    z-index: 10;

    opacity: 1.0;

    }

    {IMG.last - active #slideshow

    z index: 9;

    }

    < / style >

    < div id = "slideshow" >

    < img src = "" #WORKSPACE_IMAGES #Logo.png "alt =" slideshow Image 2 "/ >" "

    < img src = "" #WORKSPACE_IMAGES #Logo1.png "alt =" slideshow Image 1 "/ >" "

    < img src = "' #WORKSPACE_IMAGES #2_Burg - 1.png" alt = "Slideshow Image 2" / > "

    < img src = "" #WORKSPACE_IMAGES #Car11.jpg "alt =" slideshow Image 3 "/ >" "

    < img src = "" #WORKSPACE_IMAGES #Screen1.png "alt =" slideshow Image 4 "/ >" "

    < / div >

    < / div >

    user8016921 wrote:

    Please update your profile of the forum with a recognizable user name: Video tutorial how to change username available

    Always include the information described in these guidelines when you post a question: How to get the answers from the forum

    I am developing an Apex application but I am learning as I go along by examples of Google search and read the tutorials, etc.  I am trying to create a slideshow based on a dynamic list of Image names. First, I created an apex_collection in a header containing the names of the image process, I need (view/column APEX_COLLECTIONS. C001) I then created a Page called P81_IMAGE_NAME element. I'm trying to loop through the collection and display the pictures in a slide show.  I have a HTML Page with the following code in the Source of the region (found the code in an example online)... Please can someone tell me where I can add the following PL/SQL code so that #WORKSPACE_IMAGES # nom_image may contain the names of images dynamically recoveries rather then hard-coded image names as in the

    Depends on the number of images. How are they involved?

    With a small number (e.g. 10-20), you can simply use a page element to register the handset img reference items and she as a substitution string in the region existing HTML. For more information, it would be preferable to use a report.

    On the approach of page element:

    1. create the point P81_IMAGES of the page as an element of the display only. The value of the Condition Never element so it is not included in the rendered page and the security attribute point escape special characters No.

    2. create a page process before header (sequenced to run once the collection created if that is done at this point in the process):

    begin
    
      :p81_images := null;
    
      for img in (
        select c001 src
        from apex_collections
        where collection_name = 'CO_IMAGES')
      loop
        :p81_images := :p81_images || 'Slideshow Image '
      end loop;
    
    end;
    

    3 refer to the value of the element in the HTML source of the region

    
    
    
    
    
    &P81_IMAGES.
  • How to access the checkbox in mx:list

    I'm trying to access check boxes in my list

    < mx:List itemRenderer = "mx.controls.CheckBox" x = "0" y = "153" id = "listVocab" height = "297" width = "313" > < / mx:List > "

    but I can't find a way. That's what I do

    for (var i: int = 0; i < listVocab.numChildren; i ++)
    {

    If (I want to access the box here to see if she checked and then create the below but I don't know how to access the boxes?)

    {

    This gives me access to the text, but

    var password: String = listVocab.dataProvider [i] m:System.NET.SocketAddress.ToString ();

    }
    }

    Problem is with dataProvider your assignment to dataGrid is of type array of strings, which is why its saying selected there is no property to the string.

    Code given above by will work me for collection arrayCollection whose objects are of the following type instead of simple strings:

    public class CustomClass
    {

    public var data:String; Here id, you can store
    label public var:String; here Word you can store
            public var selected: Boolean;
    }

    You can make the change to

    public class CustomVocabulary
    {
    public var sentence: String;
    public var type: String;
    public var dbId:String;
    public var words: ArrayCollection collection; This will contain objects of type CustomClass.
    }

  • To access the nested UIComponents

    The purpose of the script is to be able to access the component children and their children and their children, etc. by their index.

    I tried the following:

    script

    public function deployNesting (): void {}

    var container: canvas = new Canvas();
    var chldA:Canvas = new Canvas();
    var chldB:Canvas = new Canvas();
    var chldC:Canvas = new Canvas();

    this.addChild (this.container);
    this.container.addChild (chldA);
    this.container.addChild (chldB);
    this.container.addChild (chldC);
    return;
    }

    public function accessNesting (): void {}
    trace (this.childAt (0) .childAt (0)) / / error 1119 *
    trace (this.childAt (0) .numChildren) / / error 1119 *
    return;
    }

    * 1119: access to property may be undefined numChildren through a reference with static type flash.display:DisplayObject.


    I am aware that this nesting is generally not recommended, but in some cases, it is necessary, and I would be recognizing an opinion on this matter.

    a.Neko

    Well... It's time to assume the therapeutic values of this forum in my particular case :) once more, just after recurring in all ways possible to solve, and then post a topic here, I changed my approach and find the solution...

    In this case, it is necessary to cast the return of all the getChildAt() in nesting structure, except the last.

    You can access a nested child to add a new child to his list to display as follows:

    Canvas (this.getChildAt (0)). AddChild (chldC);

    Access the name property of the deeply nested child is as follows:

    Canvas ((Canvas (this.getChildAt (0))) .getChildAt (0)) .getChildAt (0) .name;

    etc...

    A bit complicated, but solve the problem of access nested children when, for example, the variables used to create disappeared, or to navigate freely through the nested lists display...

    (Checked with Flex 2.0 Builder mx.* components, but I guess that it also works for objects of flash.display. *.)

    a.Neko

  • With the help of a list in a clause Where Clause

    I try to use a dynamic list, in a where clause clause, not having much luck and we tried different ways.

    Here's the closest thing I can find, the only problem is that the output returns an error caused by comma in where criteria if the list contains several items.

    Any help would be greatly appreciated!

    SELECT is the name of my list by commas.

    < name cfquery = 'list' datasource = "#dbnm #" >
    SELECT *.
    Students
    When status = ' #x # ' and (id = #Listqualify(select,"") #)
    < / cfquery >

    When the use of lists in sql, you do not use an equal sign. You use the key word in. You must also put your list in parentheses.

  • How to remove names from my list "send to" when shipping or email?

    I have two unsolicited names that have appeared on my contacts when I try to send an E-Mail. They are NOT on my authorized contact listings, only appear when I try to send an E-Mail. When sending or transmitting by E-Mail, tHey have popped up at the bottom of my "send to the names", so I can't just click the box ALL when sending of e-mail to the names on my list because these two names appear.

    I suspect that they came on my computer after that I clicked on a familiar name, asking me to be friends with a person known on FACEBOOK.

    Windows Vista does not provide a source to delete to rid the names, a frustrating condition clean, typical of the Windows Vista program.

    BIA.

    E-mail address is removed from the privacy *.

    Hello

    It seems that it might be a virus or malware on the computer, I suggest you to run a full scan of the system on the computer by using the Microsoft Safety Scanner if the problem persists.

    You can download and run the Microsoft Safety Scanner from the following link.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    If the problem continues to get help with e-mail, I suggest you to ask your question in the Windows Live community. Please visit the following link to find a community that will provide the support you want.

    http://windowslivehelp.com/forums.aspx?ForumID=d3fda415-1e53-4007-8e0c-2a77180ffb1d

  • "Impossible to copy the name of the file: access is denied." Make sure that the disk is not full or write protected and that the file is not currently in use. »

    I move the data because a Trojan horse snuck in.  I killed the Trojan horse by setting the drive as external and scanning.  However, I could no longer connect to the formerly infected drive. It hangs at the Welcome screen.  So I load XP Pro on another drive and set the old drive as external. I now see data, but get the "Access denied" message that will let me copy the data.

    Or I have to be able to release the data to the new drive or access the old disk by booting to XP.  Now I can't do either.

    I tried to get XP on the old drive, but the Trojan horse seems to have changed the password admin. I then tried to erase the password using a Linux boot disk and it showed the account unlocked, but I always block to the Welcome screen.

    Ideas appreciated.  I can't move forward until I can get the data off. THX K.

    Karen Girrl
    Thanks for posting with us.  The article below describes taking possession of folders\files.  You may need to go through these steps, if malicious software has modified the permissions on your old drive.
    http://support.Microsoft.com/kb/308421

    Let us know the results. Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I'd appreciate it really any assitance on this, I can't save my favorites due to a failure of the system. I can access the drive crashed trhe data. Do my resident Favorites in a file that I can copy and then replace in a new installation, if so, where is

    Windows broke down and I need to reinstall Vista. So I can make a backup of my favorites, but I guess that there is a file somewhere on my crashed disk that bears this detail. If so, can I copy this file and replace in my new installation of firefox. If this file exists, I would like to know the name of the file that I need to copy and that I could find it in the directory.

    The anonymous gives path is for Vista not XP.

    The "places.sqlite" file is the file that contains your bookmarks and history. It is located in your profile folder.

    See:
    http://support.Mozilla.com/en-us/KB/profiles#How_to_find_your_profile
    Display the hidden files and folders

    In XP, the path is usually:
    C:\Documents and Settings\UserName\Application Data\Mozilla\Firefox\Profiles\xxxxxxxx.default
    ("xxxxxxxx" is a unique alphanumeric identifier)

    When you copy data from your OLD profile to your NEW profile, copy individual FILES (some require more than 1 FILE). DO NOT copy the entire OLD PROFILE folder; It will not work.

    See: recovery of data from an old profile

    Other topics: ~ ~ Red: you have installed the plug-ins with known security issues. You must update them immediately. ~ ~

    Java Update: version 1.4.2 (~ ~ Red: very old ~ ~); current version 1.6.0.20 (important update 15/04/2010)
    (Firefox 3.6 and above requires Java 1.6.0.10 and above; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    (Windows users: do the update manually, very easy.)
    Check your version here: http://www.mozilla.com/en-US/plugincheck/
    See: Java Update
    Do the update with Firefox closed.

    Install/update Adobe Flash Player for Firefox: your version 10.0 r45; current version 10.1 r53 (Security important update 2010-06-10)
    Check your version here: http://www.mozilla.com/en-US/plugincheck/
    See: Flash update
    -use Firefox to download and SAVE to your hard drive (save to the desktop for easy access)
    -the release of Firefox (file > exit)
    -Make sure that Firefox is completely closed (Ctrl + Alt + Delete, choose Task Manager, click the processes tab, if "firefox.exe" is on the list, made a "firefox.exe" right-click and choose end process, close the Task Manager window)
    -Double-click the Adobe Flash Installer, you just download to install/update Adobe Flash
    -When Flash is installed, start Firefox and test the installation of Flash here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507 & sliceId = 1

  • Dynamically manage the names of legend by using nodes of property

    I have to draw several temperature - time data on a XY Chart. Now traced works perfectly fine, but when I try to stup the legend name using property nodes, it gives error if I use something like in the first picture. It seems that the "ActPlot" property cannot access values greater than 1. Works perfectly although for two plots.

    I tried to use one for, as in fig. 2, it does not work. It blocks every time ActPlot hits 2.

    Suggestions or advice?

    Hey,.

    Please test the attached VI (registered to 8.2) to define the names of the plot, use it as a Subvi.

    BTW, in your second picture you have connected 3 to the connector of the loop for AND and autoindexed table with 3 elements.

    Christian

  • Why some items in 'Open an existing project' have just the name of the project and others have access to the entire file path?

    I have SP1 2012 LabVIEW and on the main screne of LabVIEW selecrt "show projects".

    Why some elements of 'Existing Open' (project) have just the name of the project and others have access to the entire file path?

    Examples of two lines in the list of projects.

    Ping.lvproj (with a path: C:\Users\mlevine\Documents\MPCE EQT\EQT Software\Ping.lvproj)

    C:\Users\mlevine\Documents\Common package Mission trainer (CMPT) \SUW Surface Warfare\Weapon permission Panel (WAP) \WAP LabVIEW Software\WAP fire authorization server 28 April 2015

    No chance, it's because I made a copy of this software and stored on a network drive power off and it went out of this network drive?

    So if LabVIEW sees two or more versions of the same software, he decides to use the name to differentiate between full path?

    I'd still rather it shows just the name of the project and if you hover over the name it shows the full path.

    Thank you

    Mark

    If you have opened a project of the same name from a different location, it is when it shows the full path both - in this case showing just the name of the project would not help because it would be the same thing!

  • Deliver the profile of the user - My Documents folder moved to C:\Documents and Settings\TEMP. I can't view or access this folder to copy My Documents back. Help?

    XP Home SP3 on my laptop (no not in network - independent).

    After an Adobe Reader 10 X installed, there is a reboot, and when I logged in the profile that appeared was not mine - it was as if it was a new installation. I looked for my personal documents under My Documents and did not find them. So, I looked for them on the C: drive, found (no not noted where), and copied My Documents to what seemed like the name /my Documents /. After that, I could access my documents by clicking Start-My Documents online. I did another reboot. Now, after login, my old profile is displayed, and the My Documents folder is empty except for the value by default my pictures, my music, my videos, and favorite - and these are all basically empty.

    I then ran a program Search and Recover to find my documents - they were found under C:\Documents and Settings\TEMP\. Unfortunately, I can't seem to see that to explore (I have it configured to display the hidden files and folders). Is it possible to go to this folder and the moving my Documents back to my profile?

    Thank you

    Ananth

    Hello

    You can view these methods:

    Method 1:

    Check to see if the problem exists in Safe Mode, if the computer works as expected in mode without failure, then we can solve the problem in the clean boot state.
    a. refer to the article below for the procedure safe mode in Windows XP
    A description of the options to start in Windows XP Mode
    http://support.Microsoft.com/kb/315222

    b. it is a possibility that there is a startup program that is launched with a command line and it appears.
    You need to perform a clean boot to find the program that is causing and then disable or remove.
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353/en-us
    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.

    Method 2:

    System Restore takes a "snapshot" of critical system files and some program files and the registry settings and stores this information as restore points. If your computer is not working properly, you can use these points to return Windows XP to a previous state when your computer was working properly restore. It can also change scripts, batch files, and other types of executable files on your computer.

    How to restore Windows XP to a previous state

    http://support.Microsoft.com/kb/306084

    I hope this helps.

  • Maybe you are looking for

    • Statement "Ariana Maxwell.

      Hello. I was talking to my buddy on Skype when he asked me who was Ariana Maxwell. Since none of us knew who she was, I warned him to be skeptical about him. I have a bunch of screenshots of my convo with my friend, Nick, I think that it will take ou

    • Is there a default value for NC_ATTRIB_BKD_PERIOD

      I got a project and the value of NC_ATTRIB_BKD_PERIOD has been set to 10. I changed this value to 1 (I guess that's milliseconds) and the software runs much faster save about 20 seconds on a second test period formerly 60. I have used NEITHER CAN bef

    • Drag and drop the image in 2d image

      Hi all I am trying to apply a little magic "MS paint" for dialogue of the customer. I want to be able to drag and drop into a 2d image control. Ideally, I wish I could it move and resize once it is there, but let's start with the first part - how to

    • Is there a number to call for assistance with problems?

      I am having some problems and can not find the answers on the pages 'help '.  Is it possible to talk to a real live person who can guide me through?

    • Can not see the left column with "Inbox, JUNK e-mail, deleted, sent.

      All of a sudden I can't see the left column of Windows Mail-"Inbox, drafts, SPAM, messages deleted" etc.  Top of the page of office can be reduced manually