Layout items in ListView

Hello,
I want to use a ListView as a scrollable gallery to view several large resizable nodes. I would like my ListView to fit its items to its width, similar to the behavior known from ScrollPane.setFitToWidth(true).
How do i do this?
If there is no simple solution that I may have overlooked, I assume that I have to set a custom CellFactory and bind some properties. But i am not sure which ones, since nothing i tried so far was successful.
Many thanks,
l2p

Not sure if I'm missing something in your requirements, but this basically seems to do what you're looking for. Obviously your nodes are more complex, but this might provide a starting point.
import java.text.NumberFormat;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
import javafx.util.Callback;
public class ListViewLayoutTest extends Application {
  private static final NumberFormat currencyFormat = NumberFormat.getCurrencyInstance();
  @Override
  public void start(Stage primaryStage) {
    ListView<Fruit> fruitList = new ListView<Fruit>();
    fruitList.setItems(FXCollections.observableArrayList(
        new Fruit("Apple",1.99),
        new Fruit("Orange", 2.49),
        new Fruit("Banana", 2.99),
        new Fruit("Mango", 3.99)
    fruitList.setCellFactory(new Callback<ListView<Fruit>, ListCell<Fruit>>() {
      @Override
      public ListCell<Fruit> call(ListView<Fruit> listView) {
        return new ListCell<Fruit>() {
          @Override
          public void updateItem(Fruit item, boolean empty) {
            super.updateItem(item, empty);
            setText(null);
            final AnchorPane pane = new AnchorPane();
            setGraphic(pane);
            if (!empty) {
              final Label nameLabel = new Label(item.getName());
              final Label priceLabel = new Label(currencyFormat.format(item.getPrice()));
              AnchorPane.setLeftAnchor(nameLabel, 5.0);
              AnchorPane.setRightAnchor(priceLabel, 5.0);
              pane.getChildren().addAll(nameLabel, priceLabel);
    BorderPane root = new BorderPane();
    root.setCenter(fruitList);
    primaryStage.setScene(new Scene(root, 400, 600));
    primaryStage.show();
  public static void main(String[] args) {
    launch(args);
  public static class Fruit {
    private final String name;
    private final double price;
    public Fruit(String name, double price) {
      this.name = name;
      this.price = price;
    public String getName() {
      return name;
    public double getPrice() {
      return price;
}

Similar Messages

  • APEX 4.2 aligning issue of Stop and Start Grid Layout item

    My APEX application application is in the process of moving from 4.0 to 4.2.  I am experiencing an issue with aligning (left margin justified) of Stop and Start Grid Layout items that have a border around them.  Earlier I had an issue with the border itself not showing up in the 4.2 application.  I was able to resolve that with a workaround by adding inline code in the CSS section of the page: #P23_OFFICE_START_TBL {width:682; border:1px solid #369; margin:5px;}. This created the border which I needed, but there are 2 Stop and Start Grid Layout items that are indented and not aligning with the border of the previous line.  I have tried a number of different things but none of them have worked.  This seems like a very simple issue to fix but I am having a tough time resolving it.
    I tried to put the item in question in a different grid, which corrected the indention but then I lost the border around the item.  It seems that the above CSS code does not work on the new grid.  I also tried to put attributes such as margin-left:5px; float: left; clear: left; float: left, in the CSS code but that did not work, too.
    Any suggestions?
    Thanks
    Ajay K

    I deleted and added back the Stop and Start Grid Layout items not aligning properly.  This worked.  Apparently, the 4.0 to 4.2 upgrade did not handle/convert these items properly.  Deleting and adding them back resolved the issue.

  • How to select multiple items in ListView?

    Is it possible to select multiple items (rows) in ListView? I'm able
    to select only one item at a time.
    I'm running Forte 30F2 on Windows NT 4.0.
    Thanks in advance,
    Ramarao
    Get Your Private, Free Email at http://www.hotmail.com

    Ramarao,
    I talked to Forte support about this recently and they had nothing but
    bad news.
    They said that you cannot select multiple rows in a listview, and that
    this is a
    feature that will be in the next release ( release 4 ).
    I then asked if it was possible for me to highlight a row manually ( and
    do the multiple
    select myself ), and they said that also wasn't possible. This is due
    to the fact that
    there are no displaynode properties that effect display attributes (
    like font or color ).
    They suggested that I try changing the smallicon to show rows that have
    been 'selected'.
    In other words, when you ctrl-click on any particular row, you could put
    an icon at the
    beginning of a row that shows that this row has been clicked on.
    I'm still working on this myself, so I will keep you posted.
    Jeff Pickett
    From: Ramarao P[SMTP:[email protected]]
    Reply To: Ramarao P
    Sent: Tuesday, March 24, 1998 6:22 PM
    To: [email protected]
    Subject: How to select multiple items in ListView?
    Is it possible to select multiple items (rows) in ListView? I'm able
    to select only one item at a time.
    I'm running Forte 30F2 on Windows NT 4.0.
    Thanks in advance,
    Ramarao
    Get Your Private, Free Email at http://www.hotmail.com

  • Retrieving data from database into tabular layout item

    Hi..
    If the number of product_id is 1; I can retrieve data from the database into tabular layout item.However, if the number of product_id is more than 1 error message is shown.
    Here is my code:
    select product_id
    into : PRODUCTS. ID --Tabular layout item
    from products
    where customer_id=5;
    Any suggestions????

    It's simpler to do so:
    insert that code in a post-query trigger at block level (block where is multi-item)
    You will see after execute-query, your item will be populated.
    I wrote post-query trigger no post-quert
    Message was edited by:
    RV

  • Layout items dissapeared and many items in head section

    Hi all, in one of my sites, most of my pages no longer show anything in the layout view. If I preview the page, it looks as it should but when I go back to the layout tab there's nothing there.
    Also there are now heaps of things in the head section of the affected pages. What have a done to cause this and how can I fix it?
    Screen shot below.
    Thanks a lot, Sam.

    Thanks guys, here's a bit more info.
    This is what the layout view of the home page looks like:
    And this is the layout view of one of the pages that isn't working properly looks like: Notice the difference in head items and the fact that there is nothing to see/change in the layout section.
    A few days ago they were all working properly and I haven't changed anything to make this happen so no sure whats happening? 3 out of the 4 pages are all doing the same thing, not showing anything in the layout section and having tons of items in the head section.
    They all work perfectly online, it's just I cant see any layout items in Golive.
    How can I fix this so that I can edit the affected pages again?
    Cheers, Sam.

  • Transaction ME21N Screen layout Item Details TAB settings

    Hi,
    ME21N transaction some of item details TABS are invicible. Like "Delivery address tab" is invicible. I want to make it visible/changeble to enter address for ship to.
    Right now I am looking into SPRO on screen layout settings and transaction SHD0 for screen layout variant.
    But I could not able to activate/visible of this particular tab.
    Help needed to make "Item detail delivery address tab" visible/change.
    Thanks,
    Deepak.
    Edited by: KDeepak on Apr 12, 2010 2:29 PM

    Hi Deepak,
    The path is SPRO -- Materials Management- PurchasingPurchase order- Define screen layout at Document level-field selection -ME21N-Reference item data
    In field selection screen for ME21N i.e.maintain table T162 -Field selection groups .Under this on the tab of Reference data ,item you have to mainatin as an optional entry for Delivery Address.With this delivery address tab will be visible for you under ME21N trancsction.
    Regards,
    Nitin Amritkar

  • Disable selection of certain items in ListView

    I have a ListView with different items.
    For most items I like the default multiple selection but for some items I would like to disable selection completely.
    I tried disabling the cell while it displays a non selectable item, but this only disables selection from direct events on the cell. I can still select it by clicking on an item above an then shift-clicking on an item below.
    I also tried to set the cell as empty when displaying a non selectable item. This fixes the issue with shift selection described above, but i can still select the cell by selecting an item next to it and pressing the respective arrow key.
    Does anybody have an idea?
    Thanks
    l2p

    How about this?
             final ListView<Node> fileList = new ListView<Node>();
            fileList.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {
                @Override
                public void changed(ObservableValue<? extends Number> observableValue, Number oldv, Number newv) {
                    if (newv.intValue() == 4) {
                        fileList.getSelectionModel().select(oldv.intValue());
            });

  • Frm 10.1.2.0.2 screen layout item x-y positions not matching property value

    Hi,
    We're having an ongoing problem here.
    When we open up older existing forms and look at the layout editor and place the cursor at the left edge of a screen item and note the x/y values.
    We then open the property palette for the same item and the physical x-position and y-position are always larger (by some 30%).
    If we add a new item and match it to other items in the block, the new item's prop palette x/y values do not match the layout editor position.
    This is happenning on more than 1 pc.
    Currently running forms 10.1.2.0.2 (32 bit) on win7 ultimate 64 bit, but this was also happenning under winXP.
    Just as a side note, creating a new form from scratch does not show this issue; both the layout editor and the property palette x/y values match.
    Anyone else had this problem?
    Thanks in advance
    BryanB

    I'm assuming the answer has to be yes (same settings), as we don't change the defaults when we install forms onto new PCs. You might want to confirm this rather than assume. We require all new forms to start from a TEMPLATE.fmb so we know that all forms have the same basic defaults (coordinate system, inherited triggers, required objects, etc).
    I can't say for certain that is the cause - but it is work checking the forms you are having trouble with to make sure they match forms that work OK.
    I honestly can't think of what to look at next. If it creates a problem in your runtime, you might want to consider opening a Service Request (SR) with Oracle Support.
    Sorry I couldn't be more helpful.
    Craig...

  • Layout Items Linking to ToC Page Number

    Does anyone know if there is way to link layout elements to page numbers in a Table of Contents?
    For instance, I have a layout full of ads. If I was to move an ad to another page I want the ToC to update the new page number automatically. Is there any way to do this?
    Thanks

    TOC sees only paragraph styles.
    I explained a way of doing this using non-printing tags that are grouped with ads, however, in the June/July 2009 issue of InDesign Magazine. The method allows automated sorting by category and advertiser.

  • C#: when adding listview items the screen flashes and only single listview column loads?

    When adding listview items, the listview1 items flash and only the first listview column loads (there are 5 columns in all)?
    Background...
    I was having cross-threading issues on 3 form components which I was able to resolve (see
    code here). Now I think the soluiton which involves creating a delegate and performing an "InvokeRequired" check (see
    what I used), I'm having an issue passing 5 values for each column. Below is the code involved calling this invoking check for each and their methods.
    Before having the cross-thread issue the "listview1.Items.Add(values.text) add the comma separated string values to the appropriate columns, but that doesn't happen through the cross-thread fix required.
    The "Loading()" method is handled through and async/await method causing the initial cross-thread issue.
    private void Loading()
    int t = 1;
    foreach (string line in scripts)
    string[] listValues = line.Split(',');
    ListViewItem values = new ListViewItem(listValues);
    if (t == 1)
    AddColumn("Script Name", 200); // Creates column headings
    AddColumn("Date and Time", 150);
    AddColumn("SID", 75);
    AddColumn("Environment", 75);
    AddColumn("Client", 75);
    t++;
    else
    if ((values.Text != "") && (values.Text != "Script Name"))
    //listView1.Items.Add(values);
    AddItem(values.Text);
    if (!dictScript.Contains(values.Text))
    dictScript.Add(values.Text);
    //cbxScriptList.Items.Add(values.Text);
    AddScript(values.Text);
    private void AddItem(object o)
    if (this.listView1.InvokeRequired)
    AddItemCallback d = new AddItemCallback(AddItem);
    this.Invoke(d, new object[] { o });
    else
    { // code that adds item to listView (in this case $o)
    listView1.Items.Add(o.ToString());
    private void AddScript(object o)
    if (this.listView1.InvokeRequired)
    AddCBXCallback d = new AddCBXCallback(AddScript);
    this.Invoke(d, new object[] { o });
    else
    { // code that adds item to listView (in this case $o)
    cbxScriptList.Items.Add(o.ToString());
    private void AddColumn(object o1, object o2)
    if (this.listView1.InvokeRequired)
    AddColCallback d = new AddColCallback(AddColumn);
    this.Invoke(d, new object[] { o1, o2 });
    else
    { // code that adds item to listView (in this case $o)
    listView1.Columns.Add(o1.ToString(), (int)o2); // Creates column headings
    SV

    Ok, I still have the flickering issue, I could use some guidance on that. And I should note that before I had the code-threading issue, I never had any flickering, it all appeared simultaneously.
    However, I was able to populate all columns (5 in all).  I had two corrections to make.
    1) My method should not have been passing the parameter as text but as the object ListViewItem:
    // Not This...
    AddItem(values.text)
    // This is Correct...
    AddItem(values)
    2) Then I needed to cast my object as a ListViewItem in my method call:
    private void AddItem(object o)
    if (this.listView.InvokeRequired)
    AddItemCallback d = new AddItemCallback(AddItem);
    this.Invoke(d, new object[] { (ListViewItem)o });
    else { // code that adds item to listView (in this case $o)
    listView1.Items.Add((ListViewItem)o);
    SV

  • How to display a listView vertically with multi columns?

    Hi,
    Refer to the sample HTML
    ListView item templates sample. If I want to display the listView (in scenario1.html) in three columns with vertical scroll bar, what should  I do?
    I try to change 'layout' property of listView from 'GridLayout' to 'ListLayout' in scenario1.html, like this:
    <div id="listView"
    class="win-selectionstylefilled"
    data-win-control="WinJS.UI.ListView"
    data-win-options="{
    itemDataSource: myData.dataSource,
    itemTemplate: regularListIconTextTemplate,
    selectionMode: 'none',
    tapBehavior: 'none',
    swipeBehavior: 'none',
    layout: { type: WinJS.UI.ListLayout }
    }">
    </div>
    The listView will be vertical but with only one column. 

    You should modify your Template to something like:
    <table >
    <tbody>
    <tr data-win-control="WinJS.Binding.Template" id="regularListIconTextTemplate" >
    <td data-win-bind="textContent:a"></td>
    <td data-win-bind="textContent:b"></td>
    <td data-win-bind="textContent:c"></td>
    </tr>
    </tbody>
    </table>
    And position that Table where you want the items to appear. I put some binding examples (attributes a,b and c) but you use whatever attributes and content you need in each column.
    For a working example I used the following HTML on an empty "default.html":
    <div id="listView" class="win-selectionstylefilled" data-win-control="WinJS.UI.ListView" data-win-options="{ layout: { type: WinJS.UI.ListLayout } }">
    </div>
    <table >
    <tbody>
    <tr data-win-control="WinJS.Binding.Template" id="regularListIconTextTemplate" >
    <td data-win-bind="textContent:a"></td>
    <td data-win-bind="textContent:b"></td>
    <td data-win-bind="textContent:c"></td>
    </tr>
    </tbody>
    </table>
    Then on the default.js I used:
    app.onactivated = function (args) {
    if (args.detail.kind === activation.ActivationKind.launch) {
    if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
    // TODO: This application has been newly launched. Initialize
    // your application here.
    } else {
    // TODO: This application has been reactivated from suspension.
    // Restore application state here.
    args.setPromise(WinJS.UI.processAll());
    var chartlines = new Array();
    chartlines.push({a: '1-1', b: '1-2', c: '1-3' });
    chartlines.push({ a: '2-1', b: '2-2', c: '2-3' });
    chartlines.push({a: '3-1', b: '3-2', c: '3-3' });
    chartlines.push({a: '4-1', b: '4-2', c: '4-3' });
    var listView = document.getElementById("listView").winControl;
    listView.itemTemplate = document.getElementById("regularListIconTextTemplate");
    listView.itemDataSource = (new WinJS.Binding.List(chartlines)).dataSource;
    Hi,
    Essentially, this method creates an one-column listView, too. My purpose is to create a vertical listView with three items in each row.
    If I add a rotation style to the listView in 'scenario1.html' of the  sample HTML
    ListView item templates sample, like this:
    <div style ="transform:rotate(90deg)" id="listView"
    class="win-selectionstylefilled"
    data-win-control="WinJS.UI.ListView"
    data-win-options="{
    itemDataSource: myData.dataSource,
    itemTemplate: regularListIconTextTemplate,
    selectionMode: 'none',
    tapBehavior: 'none',
    swipeBehavior: 'none',
    layout: { type: WinJS.UI.GridLayout }
    }">
    </div>
    The listView seems to 'vertical', and is like what I want. But, I do not change the listView essentially. The listView I want is that which layouts vertically and has three separated items in each row. 

  • JDeveloper 12.c ListView issue when elements are repeated.

    Hi
    Using the ListView, and choosing the panel grid layout, if my view object has repeated rows, then the styles are not applied for those rows messing up the row (it doesn't display correctly, no height - width styles whatsoever). I have checked the source code generated and this is what I've found - This is for each element of my list. The ones that repeat (0 and 3) are the one with the issues. They should be treated as different records.
    <div id="r2:0:lv1:0:li1" class="xvl" data-afrrk="0">
    <div id="r2:0:lv1:0:li1" class="xvl" data-afrrk="0">
    <div id="r2:0:lv1:1:li1" class="xvl" data-afrrk="1">
    <div id="r2:0:lv1:2:li1" class="xvl" data-afrrk="2">
    <div id="r2:0:lv1:3:li1" class="xvl" data-afrrk="3">
    <div id="r2:0:lv1:3:li1" class="xvl" data-afrrk="3">
    If I explore "data-afrrk="0"" element, just one have style applied. And the same for data-afrrk="3".
    This is what I see:
    Well I couldn't insert an image. It is disabled.
    Regards

    Hi. I just used the drag and drop. It works fine when using panel group instead the panel grid layout.
    <af:listView value="#{bindings.UserPersonalInfo3.collectionModel}" var="item"
                     emptyText="#{bindings.UserPersonalInfo3.viewable ? 'No data to display.' : 'Access Denied.'}"
                     fetchSize="#{bindings.UserPersonalInfo3.rangeSize}" id="lv1" selection="single"
                     selectionListener="#{bindings.UserPersonalInfo3.treeModel.makeCurrent}">
          <af:listItem id="li1">
            <af:panelGridLayout id="pgl8">
              <af:gridRow marginTop="5px" height="auto" marginBottom="5px" id="gr1">
                <af:gridCell marginStart="5px" width="15%" id="gc1">
                  <af:panelGroupLayout id="pgl2" layout="horizontal">
                    <af:outputFormatted value="#{item.bindings.UserName.inputValue != null ? item.bindings.UserName.inputValue : 'NONE'}"
                                        id="of1"/>
                  </af:panelGroupLayout>
                </af:gridCell>
                <af:gridCell marginStart="5px" width="60%" id="gc2">
                  <af:panelGroupLayout id="pgl7" layout="horizontal">
                    <af:panelGroupLayout id="pgl3" layout="vertical" halign="left">
                      <af:panelGroupLayout id="pgl4">
                        <af:outputFormatted value="#{item.bindings.FirstName.inputValue}" id="of2"
                                            inlineStyle="font-size:medium;"/>
                        <af:spacer width="10" height="10" id="s1"/>
                        <af:outputFormatted value="#{item.bindings.LastName.inputValue}" id="of3"
                                            inlineStyle="font-size:medium;"/>
                      </af:panelGroupLayout>
                      <af:panelGroupLayout id="pgl5">
                        <af:outputFormatted value="#{item.bindings.JobName.inputValue}" id="of4"
                                            inlineStyle="font-size:small;"/>
                      </af:panelGroupLayout>
                    </af:panelGroupLayout>
                  </af:panelGroupLayout>
                </af:gridCell>
                <af:gridCell marginStart="5px" width="25%" marginEnd="5px" id="gc3">
                  <af:panelGroupLayout id="pgl6">
                    <af:outputFormatted value="#{item.bindings.OrganizationName.inputValue}" id="of5"/>
                  </af:panelGroupLayout>
                </af:gridCell>
              </af:gridRow>
            </af:panelGridLayout>
          </af:listItem>
        </af:listView>

  • How can I link a web app item to another via Next link

    I would like to add a next link and previous link on a web app detail layout. Then people can scroll through the detail layout items without going back to the list view.
    I'm creating a portfolio with a description of the project details and links to external websites. There is no tag for that purpose.
    Any suggestions? I'm a bit new at custom web apps and editing the layouts with css.

    Hi,
    you would have to create 2 additional custom fields as text (string) field types and name them something like, "next item url" and "prev item url". Then you would have to enter the next and previous item url manually for each individual web app item. You can include the new tags in the detail view, something like <a href="{tag_prev item url}">Prev</a> and <a href="{tag_next item url}">Next</a>.
    Hope that helps.
    Nicole - BC Gurus

  • Position  change of function buttons in Layout sheet

    Hi Experts,
    In my planning layout, the planning function buttons like copy and delete push buttons are close to each other.So if i want to arrange them logically related close to each other, how i can do that ?
    Thanks.

    Hi,
    This is in BI WAD template I assume? If you are looking for rearraging multiple buttons you have created using Button Group Item, you can do that in the properties of the button group item (arrows to move button up and down). The buttons in one button group item always appear close by to each other so if you are looking at more space or arranging them on the page, use multiple button group items and arrange them using container layout item(s).

  • Drag and Drop images between two listviews

    I need a help for listview drag n drop opretion on winform. where  listview1 hold the images and i want to drag images from listview1 to listview2
    and then when i click any button i want all paths of Images which is in the listview2. and also i want to set the image size on listview2. Please help me.

    Hi Ajay Kumar,
    According to your description, you'd like to drag and drop listviewitems between two listviews.
    Here is my example for dropping items between listviews. You could add one imageList control to your form.
    public Form1()
    InitializeComponent();
    this.listView2.AllowDrop = true;
    this.listView1.AllowDrop = true;
    this.listView2.View = System.Windows.Forms.View.LargeIcon;
    this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.OnDragDrop);
    this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.OnDragEnter);
    this.listView1.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.OnItemDrag);
    private void Form1_Load(object sender, EventArgs e)
    DirectoryInfo dir = new DirectoryInfo(@"D:\Material\Emoticons");
    foreach (FileInfo file in dir.GetFiles())
    try
    this.imageList1.Images.Add(Image.FromFile(file.FullName));
    catch
    Console.WriteLine("This is not an image file");
    this.listView1.View = View.LargeIcon;
    this.imageList1.ImageSize = new Size(32, 32);
    this.listView1.LargeImageList = this.imageList1;
    this.listView2.LargeImageList = this.imageList1;
    //or
    //this.listView1.View = View.SmallIcon;
    //this.listView1.SmallImageList = this.imageList1;
    for (int j = 0; j < this.imageList1.Images.Count; j++)
    ListViewItem item = new ListViewItem();
    item.ImageIndex = j;
    this.listView1.Items.Add(item);
    private void OnItemDrag(object sender, System.Windows.Forms.ItemDragEventArgs e)
    DoDragDrop(e.Item, DragDropEffects.Move);
    private void OnDragEnter(object sender,
    System.Windows.Forms.DragEventArgs e)
    if (!e.Data.GetDataPresent(typeof(ListViewItem)))
    e.Effect = DragDropEffects.None;
    return;
    var items = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
    if (items == null)
    e.Effect = DragDropEffects.None;
    else
    e.Effect = DragDropEffects.Move;
    private void OnDragDrop(object sender, System.Windows.Forms.DragEventArgs e)
    ListViewItem items = (ListViewItem)e.Data.GetData(typeof(ListViewItem));
    if (items != null)
    this.listView2.Items.Add((ListViewItem)items.Clone());
    Results:
    If you have any other concern regarding this issue, please feel free to let me know.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • How to set up new MBP to use D-Link print server

    New to Mac.  MBP found 2 of my 3 printers right away.  Tried manually configuring the 3rd which is an older HP Laserjet 1320 connected via USB to a D-Link print server.  In Win you config using the IP address and port name.  Configuration appeared to

  • Cross reference + GREP + excluding text

    I would like to know if anyone has a solution to the following problem. I have a paragraph style which I use to label tables within my document. In the paragraph style I have set up numbering (under Bullets and Numbering) so that each heading appears

  • ITunes won't let me drag and drop files onto my iPod.

    i recently had my mac repaired and the hard drive was set back to its original settings. I had my itunes music that i had purchased restored and i have begun to download new songs to add to my ipod. itunes will not allow me drag new songs onto my ipo

  • Getting Error When I click on Data -- Load XML Data (XMLP Desktop 5.6.2)

    Hi All, I'm getting an error "Compile error in hidden module: Module_registry" when i click on Data -->Load XML Data on MSword. I have installed XMLP Desktop 5.6.2 successfuly. Can anybody help me..? Regards, Aanta

  • Fresh Install of Oraclve VM Manager?  Not enough disk space?

    Hi, I am very new at this. I have installed Oracle VM from the ISO and took all of the defaults. Next, I have mounted the Oracle VM Manager ISO and when I run sh ./runIntstaller.sh, it starts to work, but when I choose the option to install a XE data