List position help

Ok, I am needing to pull bullet items to the left so that
they align vertically with the paragraph text above them on the
left side. How do I accomplish this?? I know this is not normal LI
position alignment, but nothing is normal in eLearning development
world. My list objects are indenting underneath the text above it.
The attached code is what I am needing to use.
respectfully,
Anthony Jackman
eLearning Application Developer
SI International - okc

I understood that. I was going through my list of questions that I had asked over the last three years and atleast marking them "answered".  That way those ?s are not just hanging out and someone thinking that I was still looking for an answer.  Of all the problems that I asked the forum that did not get answered, I eventually figured out or stumbled onto my solution through trial n error.  If a problem is kicking my butt and no one answers or asks for further info, I usually ask again.
But today I was just doing a little house cleaning.  Thanks for checking though.
Tony
Date: Tue, 28 Jun 2011 18:47:41 -0600
From: [email protected]
To: [email protected]
Subject: List position help

Similar Messages

  • HT201269 In Iphone5 while Mail is reviewed and transfered to folder, for next mail folder list position changes. How to fix this error

    In Iphone5 while Mail is reviewed and transfered to folder, for next mail folder list position changes. How to fix this error

    In Iphone5 while Mail is reviewed and transfered to folder, for next mail folder list position changes. How to fix this error

  • I am trying to use East West Quantum Leap Symphonic Orchestra with Garageband '11 and East West isn't showing up on the Audio Unit Modules List. Help?

    I am trying to use East West Quantum Leap Symphonic Orchestra with Garageband '11 and East West isn't showing up on the Audio Unit Modules List. Help?

    Not sure what to say. Have the free version, installed it and GB found it. Perhaps contact East West support if you have a paid version...

  • What is a user parameter list in iMovie? I am trying to sent the movie from imovie to idvd and I keep getting an error with the user parameter list. Help?

    What is a user parameter list in iMovie? I am trying to sent the movie from imovie to idvd and I keep getting an error with the user parameter list. Help?

    Can you give more details?   What exactly is the entire error message text?  there should be an error number too.   Are you trying to finalize this to an external disk?

  • Hi all i from mongolia but i cant buy ipad apps becouse my country not itunes mastercard list pleace help me

    hi apple company i from mongolia my english language not good sorry.help me i cant buy ipad apps, becouse my country name is not mastercard country list. please help me

    The terms of use of the stores state (for example USA App Store) :
    The Services are available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the Services from outside these locations. Apple may use technologies to verify your compliance.
    As far as I am aware all country's stores will have similar statements

  • Linked lists problem -- help needed

    Hello again. I've got yet another problem in my C++ course that stems from my use of a Mac instead of Windows. I'm going to install Parallels so I can get Windows on my MacBook and install Visual Studio this week so that I don't have to deal with these discrepancies anymore, but in the meanwhile, I'm having a problem here that I don't know how to resolve. To be clear, I've spent a lot of time trying to work this out myself, so I'm not just throwing this up here to have you guys do the work for me -- I'm really stuck here, and am coming here as a last resort, so I'll be very, very appreciative for any help that anyone can offer.
    In my C++ course, we are on a chapter about linked lists, and the professor has given us a template to make the linked lists work. It comes in three files (a header, a source file, and a main source file). I've made some adjustments -- the original files the professor provided brought up 36 errors and a handful of warnings, but I altered the #include directives and got it down to 2 errors. The problematic part of the code (the part that contains the two errors) is in one of the function definitions, print_list(), in the source file. That function definition is shown below, and I've marked the two statements that have the errors using comments that say exactly what the errors say in my Xcode window under those two statements. If you want to see the entire template, I've pasted the full code from all three files at the bottom of this post, but for now, here is the function definition (in the source file) that contains the part of the code with the errors:
    void LinkedList::printlist( )
    // good for only a few nodes in a list
    if(isEmpty() == 1)
    cout << "No nodes to display" << endl;
    return;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->name; } cout << endl; // error: 'setw' was not declared in this scope
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->test_grade; } cout << endl; // error: 'setw' was not declared in this scope
    As you can see, the problem is with the two statements that contain the 'setw' function. Can anyone help me figure out how to get this template working and get by these two errors? I don't know enough about linked lists to know what I can and can't mess with here to get it working. The professor recommended that I try using 'printf' instead of 'cout' for those two statements, but I don't know how to achieve the same effect (how to do whatever 'setw' does) using 'printf'. Can anyone please help me get this template working? Thank you very, very much.
    For reference, here is the full code from all three files that make up the template:
    linkedlist.h (header file):
    #ifndef LINKED_LINKED_H
    #define LINKED_LINKED_H
    struct NODE
    string name;
    int test_grade;
    NODE * link;
    class Linked_List
    public:
    Linked_List();
    void insert(string n, int score);
    void remove(string target);
    void print_list();
    private:
    bool isEmpty();
    NODE *FRONT_ptr, *REAR_ptr, *CURSOR, *INSERT, *PREVIOUS_ptr;
    #endif
    linkedlist.cpp (source file):
    #include <iostream>
    using namespace std;
    #include "linkedlist.h"
    LinkedList::LinkedList()
    FRONT_ptr = NULL;
    REAR_ptr = NULL;
    PREVIOUS_ptr = NULL;
    CURSOR = NULL;
    void Linked_List::insert(string n, int score)
    INSERT = new NODE;
    if(isEmpty()) // first item in List
    // collect information into INSERT NODE
    INSERT-> name = n;
    // must use strcpy to assign strings
    INSERT -> test_grade = score;
    INSERT -> link = NULL;
    FRONT_ptr = INSERT;
    REAR_ptr = INSERT;
    else // else what?? When would this happen??
    // collect information into INSERT NODE
    INSERT-> name = n; // must use strcpy to assign strings
    INSERT -> test_grade = score;
    REAR_ptr -> link = INSERT;
    INSERT -> link = NULL;
    REAR_ptr = INSERT;
    void LinkedList::printlist( )
    // good for only a few nodes in a list
    if(isEmpty() == 1)
    cout << "No nodes to display" << endl;
    return;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->name; } cout << endl; // error: 'setw' was not declared in this scope
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->test_grade; } cout << endl; // error: 'setw' was not declared in this scope
    void Linked_List::remove(string target)
    // 3 possible places that NODES can be removed from in the Linked List
    // FRONT
    // MIDDLE
    // REAR
    // all 3 condition need to be covered and coded
    // use Trasversing to find TARGET
    PREVIOUS_ptr = NULL;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    if(CURSOR->name == target) // match
    { break; } // function will still continue, CURSOR will
    // mark NODE to be removed
    else
    { PREVIOUS_ptr = CURSOR; } // PREVIOUS marks what NODE CURSOR is marking
    // JUST before CURSOR is about to move to the next NODE
    if(CURSOR == NULL) // never found a match
    { return; }
    else
    // check each condition FRONT, REAR and MIDDLE
    if(CURSOR == FRONT_ptr)
    // TARGET node was the first in the list
    FRONT_ptr = FRONT_ptr -> link; // moves FRONT_ptr up one node
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    }// why no need for PREVIOUS??
    else if (CURSOR == REAR_ptr) // TARGET node was the last in the list
    { // will need PREVIOUS for this one
    PREVIOUS_ptr -> link = NULL; // since this node will become the last in the list
    REAR_ptr = PREVIOUS_ptr; // = REAR_ptr; // moves REAR_ptr into correct position in list
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    else // TARGET node was the middle of the list
    { // will need PREVIOUS also for this one
    PREVIOUS_ptr -> link = CURSOR-> link; // moves PREV nodes' link to point where CURSOR nodes' points
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    bool Linked_List::isEmpty()
    if ((FRONT_ptr == NULL) && (REAR_ptr == NULL))
    { return true; }
    else
    { return false;}
    llmain.cpp (main source file):
    #include <iostream>
    #include <string>
    #include <iomanip>
    using namespace std;
    #include "linkedlist.h"
    int main()
    Linked_List one;
    one.insert("Angela", 261);
    one.insert("Jack", 20);
    one.insert("Peter", 120);
    one.insert("Chris", 270);
    one.print_list();
    one.remove("Jack");
    one.print_list();
    one.remove("Angela");
    one.print_list();
    one.remove("Chris");
    one.print_list();
    return 0;

    setw is the equivalent of the field width value in printf. In your code, the printf version would look like:
    printf("%8s", CURSOR->name.c_str());
    I much prefer printf over any I/O formatting in C++. See the printf man page for more information. I recommend using Bwana: http://www.bruji.com/bwana/
    I do think it is a good idea to verify your code on the platform it will be tested against. That means Visual Studio. However, you don't want to use Visual Studio. As you have found out, it gets people into too many bad habits. Linux is much the same way. Both development platforms are designed to build anything, whether or not it is syntactically correct. Both GNU and Microsoft have a long history of changing the language standards just to suit themselves.
    I don't know what level you are in the class, but I have a few tips for you. I'll phrase them so that they answers are a good exercise for the student
    * Look into const-correctness.
    * You don't need to compare a bool to 1. You can just use bool. Plus, any integer or pointer type has an implicit cast to bool.
    * Don't reuse your CURSOR pointer as a temporary index. Create a new pointer inside the for loop.
    * In C++, a struct is the same thing as a class, with all of its members public by default. You can create constructors and member functions in a struct.
    * Optimize your function arguments. Pass by const reference instead of by copy. You will need to use pass by copy at a later date, but don't worry about that now.
    * Look into initializer lists.
    * In C++ NULL and 0 are always the same.
    * Return the result of an expression instead of true or false. Technically this isn't officially Return Value Optimization, but it is a good habit.
    Of course, get it running first, then make it fancy.

  • Pop up window asking if I want the password remembered won't pop up why I'm not in private browsing and the site is not on the exception list please help

    I can not get the firefox window to ask me if I want my password remembered. I am not in private browsing. The site is not on the exception list in the security box where all the other passwords sites are stored.

    See also;
    *http://kb.mozillazine.org/User_name_and_password_not_remembered
    If disabling autocomplete=off doesn't help then start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • EA4500 Router Device not showing up in device list - Please Help

    Hi all
    I have an EA4500 and am using Cisco Connect Cloud software. Its working mostly fine except that I have one device on the network that will not show up in the device list. This is not an issue in itself and normally I would ignore (although it used to show up when I forst got the router) however.......
    The device is a WDTVLive media unit and required access to windows shares on a media server. Now the WDTVLive device is server an ip address by the router and is available from everywhere on my network but every couple of days it loses the capacity to search windows shares.
    I know what you are thinking and I initially thought the same, this is an issue with the WDTVLive box. However one day I spent a few hours trying to resolve (Am an IT Consultant and know a little about networks) and found that I could not fix the issue. I then rebooted the router and it started working. I have since confirmed that every time it breaks I have to reboot the router.
    So I kind of think the two issues are linked.
    Sorry for the ramble. Can anyone help please.
    Thanks in advance
    Alan

    Further to this issue which I ignored as it did not really cause any issues, I recently clicked a samsung tv device which thinks that is three different devices. It has three lan addresses listed. One of the addresses listed is the original device that will not show up so I suspect that this is why it does not show up.
    It seems that I have a conflict but I can find nothing anywhere to allow me to resolve.
    I cannot even delete the Samsung TV device as its x button is not editable.
    Should I just try removing the cloud connect software. I must admit that I am starting to think that I made a bad decision with this router.
    Any help would be greatly appreciated

  • IWeb - Fixed position - help!

    Hello,
    I have the problem with menu on my site. Trying to make it flow but nothing is working for me and I don't know why.
    Can anyone help me?
    Thanks

    Nothing wrong with your code.
    Since the code is displayed in a HTML snippet the fixed attribute of the div has no meaning.
    What needs to be fixed on the page is the HTML snippet itself.
    This page comes close to what you want :
    http://www.wyodor.net/_Demo/FloatingMenu/Fixed.html
    It was a first attempt to add custom menus to any part of the page.
    The menu you see there is not an HTML snippet, but a text box.
    It contains a word, which I find with a JavaScript and then replace the content of the texbox with the menu code.
    This is the HTML snippet. Look at the source :
    http://www.wyodor.net/_Demo/FloatingMenu/Fixed_files/widget1_markup.html
    And this is the javascript that makes it work.
    http://www.wyodor.net/_Demo/duckmenu/FloatingMenu.js
    It's what they call obsolete, because since then I have figured out a more convenient way to add menus.
    See the Maaskant en Roodhout pages.
    These menus are more manegable because you can add/delete menus and menu items without iWeb.
    Your menu would fit. The only thing to do is to separate the HTML menu code and the <style>.
    To fix the menu to the page, use the code in the Fixed menu page :
    elem.style.position='fixed';
    Practice.

  • ASP VBScript and ADDT Dynamic List Wizard HELP

    Using ADDT I've created a dynamic list in a membership area. How do I get that dynamic list to populate only the data for that particular member that is logged in. Any help would be so much appreciated as I have been trying to figure this out for days now.
    <br />
    <br /><%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <br />
    <!--#include file="../Connections/rentalpaypro.asp" -->
    <br />
    <!--#include file="../includes/common/KT_common.asp" -->
    <br />
    <!--#include file="../includes/tNG/tNG.inc.asp" -->
    <br /><%<br />'Start log out user<br />  Set logout = new tNG_Logout<br />  logout.setLogoutType "link"<br />  logout.setPageRedirect "../index.html"<br />  logout.Execute<br />'End log out user<br />%>
    <br />
    <!--#include file="../includes/tfi/TFI.asp" -->
    <br />
    <!--#include file="../includes/tso/TSO.asp" -->
    <br />
    <!--#include file="../includes/nav/NAV.asp" -->
    <br /><%<br />'Start Restrict Access to Page<br />  Dim restrict: Set restrict  = new tNG_RestrictAccess<br />  restrict.Init MM_rentalpaypro_STRING, "../"<br />'Grand Levels: Any<br />  restrict.Execute<br />'End Restrict Access to Page<br />%>
    <br /><%<br />' Filter<br />  Dim tfi_listLandlord_Property1: Set tfi_listLandlord_Property1 = new TFI_TableFilter<br />  tfi_listLandlord_Property1.Init MM_rentalpaypro_STRING, "tfi_listLandlord_Property1"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.ContactInfoID", "NUMERIC_TYPE", "ContactInfoID", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.RegistrationID", "NUMERIC_TYPE", "RegistrationID", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.StreetNumber", "NUMERIC_TYPE", "StreetNumber", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.StreetName", "STRING_TYPE", "StreetName", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.AptNumber", "NUMERIC_TYPE", "AptNumber", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.City", "STRING_TYPE", "City", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.State", "STRING_TYPE", "State", "%"<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.ZipCode", "NUMERIC_TYPE", "ZipCode", "="<br />  tfi_listLandlord_Property1.addColumn "Landlord_Property.MonthlyRent", "NUMERIC_TYPE", "MonthlyRent", "="<br />  tfi_listLandlord_Property1.Execute()<br /><br />' Sorter<br />  Dim tso_listLandlord_Property1: Set tso_listLandlord_Property1 = new TSO_TableSorter<br />  tso_listLandlord_Property1.Init "rslistLandlord_Property1", "tso_listLandlord_Property1"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.ContactInfoID"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.RegistrationID"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.StreetNumber"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.StreetName"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.AptNumber"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.City"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.State"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.ZipCode"<br />  tso_listLandlord_Property1.addColumn "Landlord_Property.MonthlyRent"<br />  tso_listLandlord_Property1.setDefault "Landlord_Property.ContactInfoID"<br />  tso_listLandlord_Property1.Execute()<br /><br />' Navigation<br />  Dim nav_listLandlord_Property1: Set nav_listLandlord_Property1 = new NAV_Regular<br />  nav_listLandlord_Property1.Init "nav_listLandlord_Property1", "rsLandlord_Property1", "../", Request.ServerVariables("URL"), 10<br />%>
    <br /><%<br />Dim qry_contactinfo__MMColParam<br />qry_contactinfo__MMColParam = "1"<br />If (Session("kt_login_id") <> "") Then <br />  qry_contactinfo__MMColParam = Session("kt_login_id")<br />End If<br />%>
    <br />

    Use the session variable from the log in method (MM_Username as I recall) to create a recordset that you then use in the dynamic list versus using the whole table.

  • Is running slow, was slightly faster in safemode not listed steps helped

    Firefox is running extremely slow. It was slightly faster in safe-mode but still very sluggish to load every page. I have tried every listed step in the help menu with no success. Safari is running at an acceptable speed.

    See if the solutions given in this article help: [[Firefox is slow]].

  • Reservation list query help

    Hi All
    I am trying to put together a SAP query in quickviewer that will give me visability of all open reservations with plant material information.
    The tables I am using in the query are:
    TABLE             FIELD
    RESB - RSNUM - reses number
    RESB - RSPOS - item
    RESB - BDTER - req date
    RESB - MATNR - material number
    RESB - BDMNG -

    Hi
    I hadnt completed my initial question when the thread was posted!
    I am trying to create a 'pick list' so that the warehouse can 'pick' available stock to an open reservation. We had a bespoke interface that sat on top of SAP that did all of the SAP transactions at a push of a button. However, due to the size of our data, any generic search for open reservations caused the SAP server to max out at 100% and slow the system to a halt.
    So, I am trying to replicate the 'pick list' in a simple query. I am using Quick Viewer to do this. However, whne I link the tables, I get no data. I need help in linking the tables in a logical manner to get the info displayed.
    The tables and fields I have been using are:
    RESB - RSNUM
    RESB - RSPOS
    RESB - BDTER
    RESB - MATNR
    RESB - BDMNG
    RESB - MEINS
    RESB - WERKS
    RESB - LGORT
    RESB - ENMNG
    RESB - SORTF
    RKPF - PS_PSP_PNR (only table and field I could find the WBS element data)
    RKPF - WEMPF
    MKPF - BKTXT (we use this field in system to display the WBS and Sort string together)
    MARA - MATNR
    MARD - LGPBE
    LQUA - VERME
    I am missing additional bin info if stock is held in more that 1 location (we use the default bin as a putaway info)
    I also have a problem with data repeating 4 times. We have 4 storage locations per plant (we have 3 plants that have warehouses) but even when I enter the storage location I still get the data repeating 4 times. Is this because the table is in the wrong place (not linked to right table)
    I would hope that once the data is displayed, it can be printed via SAP. I do not really want to export to excel and print from there.
    Regards
    Darren

  • ABAP List Viewer help

    Hi.
    I have a abap list viewer, when I do a filter by the first name with 'XXXX' the program doesn't find any data, but if no filter as been done the XXXX appears. How can I solve this?

    Hi,
    I guess that the data that you are getting is in caps ( XXXX ) and you must be using small letters ( xxxx ) while putting a filter on the field.
    This filter is case-sensitive. Try using the filtering the data in the same manner as you get from the database table. Give it a try may be it works..
    Hope this helps you.
    Regards,
    Tarun

  • Pdf watermark, positioning help

    I've recently been playing around with the idea of automatically updating pdf's that are submitted to our website with our web address. Idealy the text would be a clickable link that is centered and positioned at the very top of the page (although im not quite sure if the clickable link part is even possible with cfpdf or itext).  I've been able to add watermarks using both cfpdf and itext, but the watermarks always seem to be pushed down almost an inch from the top of the page and i need the watermark to be at the very top of the page so that it doesn't interfere with the other text (even though the watermark has an opacity of 85%).  I'm looking for suggestions on how i can:
    A. position the text/watermark at the very top of the page.
    B. make the text a clickable link.
    Any help is greatly appreciated!
    Thanks!

    jcdev01 wrote:
    but the watermarks always seem to be pushed down almost an inch from the top of the page
    It sounds like your positioning is off.  Can you post the code you are using to position the watermark?
    Regarding hyperlinks, you can use an Anchor object to add a hyperlink to an existing pdf.
    http://itextdocs.lowagie.com/tutorial/objects/anchors/index.php

  • Picking List Bin help

    I am using transaction code MB26 to use a picking list and when I go to List-> print, I see the list. But I dont see the Storage Bin displayed there unless I enter a storage location.
    How can I correct this problem? I want the Storage Bin to be displayed regardless of me entering the storage location or not
    Thanks and appreciate the help

    Vivek,
    I assume that you are looking at the materail document which was created for GI and communicating that indicator is set, you looked at the right place.
    But the resolution now is set this indicator directly in the order "Component overview" screen. You can see this indicator on the right side of the component record.
    Hope this helps....
    Regards,
    Prasobh

Maybe you are looking for

  • Ipad 3 sends and receives email but can no longer connect to the Internet with Safari.

    Other Ipads in house (Ipad 3 and Ipad 2) work fine. Iphones, Imac also work fine. I have rebooted the Ipad, renewed the lease, closed and reopened Safari, turned airplane mode on/off, etc. etc. Ipad also won't connect to Itunes. Basically, I have run

  • Hp Mini 110-1127NR EPIC FAIL HP

    I bought my HP mini when my old computer finally died. I'm a student, and use my comptuer for both work and school. So, when my motherboard died for the first time <3months after purchase, suffice to say I was mad. After dealing with a tech support t

  • XBOX 360, MacBook Pro, PC and Airport Express don't all connect

    Just got the new XBOX360 with built in wi-fi for Christmas! Also have a MacBook Pro and a PC connected wirelessly to my Airport Express. Prior to the XBOX 360 the ApE worked flawlessly with the MbP and PC. Now, depending on the day, either the PC or

  • Video app usage issues since ios 8 update

    I use my iPad Air (as well as iPad mini, iPhone 5 and iPhone 6) to watch videos I have purchased through iTunes, streaming them. They used to download onto the device as I watched them so I could delete them. Since the update, I am able to watch thes

  • Installing and/or producing an output with mPCIE VGA Card; possible?

    I have a mPCIE card and I have mounted the drivers of the card in the Windows IoT V2 image (offline). I have then installed the board in my Galileo V2. I can't get any video output either at Boot, nor at runtime.  How can I know if the drivers were s