Can't get form items

Hello everyone,
I have a form that I loaded from a xml file created on Screen Painter.
In my Item Event FORM_LOAD, I need to get it's items. I get the form with success, but the items count is always 0.
Does anynoe has an idea why this is happening?

When You load a form from XML all items are added after FORM_LOAD. That's why You don't have items frm.Items collection.
You should acces to item just after vApp.Forms.AddEx(... YourNewFormCreationParameters ...).
      Dim fcp As SAPbouiCOM.FormCreationParams = vApp.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
      fcp.XmlData = My.Computer.FileSystem.ReadAllText("myNEwForm.srf"))
      Dim nFrm As SAPbouiCOM.Form = vApp.Forms.AddEx(fcp)
      nFrm.Items.Item("YourNewItemUID"). .....
If You want to acces to items after Form_load You can use GOT_FOCUS Event (only if You have at least one editable item on this Form). BeforeAction should be False
  Public catchGF As Boolean = False
  Private Sub vApp_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles vApp.ItemEvent
      If pVal.FormTypeEx = "myNewFormUID" Then
        If pval.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD And pval.BeforeAction Then
          catchGF = True
        End If
        If pval.EventType = SAPbouiCOM.BoEventTypes.et_GOT_FOCUS And catchGF And Not pval.BeforeAction Then
          'Now You can acces to your Item
          catchGF = False
        End If
      End If

Similar Messages

  • How can I get an item that has the broadcast icon next to it into MP3 format so I can put it on my ipod nano?

    Question: how can I get an item in my itunes library, on my mac os 10.6.7 that has a broadcast icon next to it into MP3 format so I can play it on my ipod? right now it won't let me, and it's very frustrating!!!! thanks

    I might have misunderstood what you mean by the "broadcast icon," but if you are talking about an audio stream, then there is just no way you can convert a stream to MP3. What this would involve is either recording the stream, and then you would just be replaying the recorded audio on your iPod (is this what you are trying to achieve?), or reading the stream directly on your iPod, which an iPod nano does not support (it would need wireless connectivity).
    Hope this helps

  • How can i get my items to stay in place and not cross over each other when readjusting the browser s

    How can i get my items to stay in place and not cross over each other when readjusting the browser size.
    Basically on my site when i go from a small screen to a big screen everything doesn't adjust to the screen size. I don't know what im missing
    Here's the link to the page all the pages & they all do it
    http://theatricalworkslive.com/
    Thanks in advance

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem.  Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • My phone froze and deleted two items in my reminders. How can I get those items back?

    I was writing some notes in my reminders and my phone froze for a second. When it unfroze I notice it had deleted two of the items I wrote in my reminders. How can I get those items back?

    They are only where you put them, if you did not download them on the computer or transfer them from the iDevice, there is no logical expectation for them to be on the computer.
    Downloading past purchases from iTunes

  • HT1766 I purchased an iPad air and chose a backup from my iPhone 5s.  The only issue is only 30 of my photos downloaded to my iPad and none of the music.  How can I get all items on the iPad?

    I purchased an iPad air and chose a backup from my iPhone 5s.  The only issue is only 30 of my photos downloaded to my iPad and none of the music.  How can I get all items on the iPad?

    you are using I tunes as the middle man for this back up, right?
    When you plug in the pad to i tunes, give it a unique name, like my pad.  I tune may be thinking it is talking to your phone.  It will keep track of what you what on each device.  Then plug your phone back in, and make sure your photos are uploaded to the computer - in i photo if you are using a mac, or in whatever photo program you are using on a windows device.  You also want to make sure you have uploaded to the computer all of your music.
    Once you get all that stuff there, plug the pad back in, and go through each of the tabs - selecting the music, photos etal that you want on the pad, then resync.

  • Can't get menu items to be displayed

    Hello,
    The answer to my problem is probably quite simple but I can't see it and its driving me crazy, basically I can't get my menu items to be displayed like file, create and search. But what ever I add to the file menu items like open or save isn't displayed and I don't know why I think it may have to do with the action listeners but I'm not sure how or why or it could be because of where it is placed in the code, but again I'm not sure. Any help will be appreciated thanks!
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.GeneralPath;
    import java.awt.geom.*;
    import java.awt.image.*;
    class CharacterEditor2 extends JFrame implements ActionListener
      private Container pane;
      public JPanel sidebar = new JPanel();
    public JPanel library;
      public JPanel interface1 = new JPanel();
      private JPanel interface2 = new JPanel();
      public JPanel cards = new JPanel();
      public CardLayout layout = new CardLayout();
      public JButton headb = new JButton ("Head");
      public JButton bodyb = new JButton ("Body");
      private JButton legsb = new JButton ("Legs");
      private JButton handsb = new JButton ("Hands");
      private JButton freeHandb = new JButton ("Free Hand");
      private JButton eyesb = new JButton ("Eyes");
      private JButton mouthb = new JButton ("Mouth");
      private JButton earsb = new JButton ("Ears");
      private JButton noseb = new JButton ("Nose");
      private JButton hairb = new JButton ("Hair");
      public CharacterEditor2()
        addWindowListener(new WindowAdapter(){
          public void windowClosing(WindowEvent e){
            System.exit(0);}});
        pane = getContentPane();
        setTitle("JHH");
        library = new library();
        interface2.setBackground(Color.red);
        interface1.setBackground(Color.green);
        Panel p1 = new Panel();
        p1.setLayout(new GridLayout(2,0));
        sidebar.setLayout(new GridLayout(3,0));
        addButton(sidebar, headb);
        addButton(sidebar, bodyb);
        addButton(sidebar, legsb);
        addButton(sidebar, handsb);
        addButton(sidebar, freeHandb);
        addButton(sidebar, eyesb);
        addButton(sidebar, mouthb);
        addButton(sidebar, earsb);
        addButton(sidebar, noseb);
        addButton(sidebar, hairb);
        JMenuBar menuBar = new JMenuBar();
        this.setJMenuBar(menuBar);
        JMenu fileMenu = new JMenu("File");
        menuBar.add(fileMenu);
        JMenuItem openMI = new JMenuItem("Open");
        openMI.addActionListener(this);
        fileMenu.add(openMI);
        JMenuItem saveMI = new JMenuItem("Save");
        saveMI.addActionListener(this);
        fileMenu.add(saveMI);
        JMenuItem closeMI = new JMenuItem("Close");
        closeMI.addActionListener(this);
        fileMenu.add(closeMI);
        fileMenu.addSeparator();
        JMenuItem exitMI = new JMenuItem("Exit");
        exitMI.addActionListener(this);
        fileMenu.add(exitMI);
        JMenu createMenu = new JMenu("Create");
        menuBar.add(createMenu);
        JMenuItem entryMI = new JMenuItem("Entry");
        entryMI.addActionListener(this);
        createMenu.add(entryMI);
        JMenu searchMenu = new JMenu("Search");
        menuBar.add(searchMenu);
        JMenuItem searchCharacterMI = new JMenuItem("Search by Character");
        searchCharacterMI.addActionListener(this);
        searchMenu.add(searchCharacterMI);
        JMenuItem searchBackgroundMI = new JMenuItem("Search by Background");
        searchBackgroundMI.addActionListener(this);
        searchMenu.add(searchBackgroundMI);
        JMenuItem searchMovieMI = new JMenuItem("Search by Movie.");
        searchMovieMI.addActionListener(this);
        searchMenu.add(searchMovieMI);
        p1.add(sidebar);
        p1.add(interface1);
        p1.add(interface2);
        p1.add(library);
       //add scroller to library
       JScrollPane scroller =
             new JScrollPane(library,    
                       JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
                       JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
         scroller.setPreferredSize(new Dimension(100,100));
         p1.add(scroller, library);
        pane.add(p1, BorderLayout.CENTER);
      private void addButton (Container c, JButton b)
        b.addActionListener(this);
        c.add(b);
      public void actionPerformed(java.awt.event.ActionEvent evt)
    ((CardLayout)library.getLayout()).show(library, evt.getActionCommand());
      public static void main(String[] args)
        CharacterEditor2 window = new CharacterEditor2();
        window.setTitle("Character Editor");
        window.setSize(900, 700);
        window.setVisible(true);
    }

    It's because you are mixing Swing components and AWT components. The menu items are actually displayed, but they are hidden behind the panel with all the buttons. Things will work fine if you change the following line:
    Panel p1 = new Panel();  // This is an AWT panel. Use this instead:
    JPanel p1 = new JPanel();Read more about it here:
    http://java.sun.com/products/jfc/tsc/articles/mixing/

  • InDesign CS4 Library- can't get library items on to pages

    I'm fairly new to InDesign CS4.
    A book I'm reading has a tutorial telling me to drag library items from the library to a page.
    This is a library that the book author created that came with the book.
    However, I can't get material from the library to any of the pages.
    Anytime I try dragging any of the images or other items from the library to my page in InDesign CS4, I get a small "No" symbol (a circle with a slash through it).
    So I clicked on the image in the library that I wanted to add to the page, and using both the content menu (and later, the library panel's menu) to select "Place Item," nothing happened.
    How do I get content in a library on to a page?
    Dragging and using "Place Item" are not working for me.

    Hello, Lee Sarah, and thanks for answering.
    If I understand you correctly, this is what I did:
    I "right" clicked on the Library file icon on my hard drive, called "Healthy Pets CS4."
    This brought up a context menu.
    From there, I went to "Properties."
    Under "Properties" > "Attributes," "Read only" is not checked off, nor is "hidden" checked off.
    In the "Healthy Pets CS4 Properties" dialog box, I then clicked on the the "Security" tab, which brought up all sorts of stuff about permissions, read /write,  etc.
    I guess I should mention at this point that I'm on a computer running Windows Vista, since this might be pertinent to my issue (?)
    Although it's my computer, it has me on here as two different people (I'm on as Administrator and under my first name, which let's just say is "Graphics Cuddly Bear.")
    On the "Security" tab page of the dialog box is a heading called "Group or user names," and from there, depending on which name you pick from the user names, different options get high lighted in the ""Permissions for Authenticated Users" box below it.
    So, under "Permissions for Authenticated Users" (when the users "Autheticated Users" and "Admins" are selected) the following are checked off with a check mark,
    (as if to say, "These are the things you have permissions to do with this file"):
    Modify
    Read and Execute
    Read
    Write
    The only things I do not have permissions for when I check off  "Administrator" on that list is "Special Permissions."
    When AU (Autheticated Users) is checked it says I do not have "Full Control" or "Special Permissions."
    However, when I clicked on my name (GCB - "Graphics Cuddly Bear") under the heading of "Group of user names," these two things are the only ones checked off:
    Read and Execute
    Read
    So I went in to another area of this box and gave my account ("GCB") the "Write" ability.
    When I went back to the box, a check mark next to "Write" then appeared. So it appears to be telling me that under GCB, I can now write to that file.
    So when I opened and closed out of InDesign and re-opened it, it still will not allow me to drag the files/text/images from the library.
    I still get the little "No" symbol.
    It also still will not let me use the "place" command, either.
    I've gone ahead and worked thorugh this chapter without being able to use the author's library items, but it makes working on her tutorials very difficult.
    And it's rather pointless, since the entire chapter is about how to use the software's library.  
    I got a response from the book's publisher (Delmar / Cengage) to ask them for help, if they would provide me with working copies of the files, or some other work around, and they were NOT the least bit helpful.
    A representative from Delmar/ Cengage e-mailed me to say that because I purchased the book at Amazon's site (rather than from them directly) that they would not help me, which I thought was cruddy and not classy.
    I don't see that it entirely matters where I bought the book from; they're the ones who made it.

  • User can not get work item

    I created a demo workflow template with 2 userdecisions. The agent of the 1st is myself, and the agent of the other is another user USR001. Their possible agents are set general. I executed the workflow and found I could get the workitem in my inbox and approved, but USR001 can not get his workitem then. I checked the workflow log and found the agent USR001 get the item in the AGENTS icon. But in the grahical log, I found the status of the 2nd userdecision is 'READY' and (NO AGENT). Both of the two user (me and USR001) have SAP_ALL authorization. Then I logged on by another user and found the same problem: the user can only get the workitem of himself . And there is no error in the STEP HISTORY in technical details.
    So I have the following questions:
    1 Are there any configuration missed in the system?
    2 I want to know whether there are some documents about the basic configuration of workflow, such as  assignment of  the USER ROLE, necessary confuguration for development and use of workflow.
    Thanks!~

    Hello,
    You say:
    "I checked the workflow log and found the agent USR001 get the item in the AGENTS icon. But in the grahical log, I found the status of the 2nd userdecision is 'READY' and (NO AGENT). "
    READY and NO AGENT just means that no agent has executed the step yet. Click on the Agents icon to see which agents it has been sent to.
    regards
    Rick Bakker
    Hanabi Technology

  • Can't Get Form to E-Mail

    Hi again, everyone.
    I've been trying to set up a registration form with a
    "mailto:" Submit so that I can have the registration information
    sent to me. I've checked several books and followed the
    instructions on three or four Web sites, and still can't get it to
    work.
    I've set up the "mailto:" option in the form code, and
    clicking on the Submit button opens a new message with the "To:"
    and "Subject:" fields filled in properly, but the form is not
    attached and an empty message gets sent.
    I don't know if it matters, but I'm using Firefox for mail.
    Thanks in advance for your help!
    Keith

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2 is the preferred method, since it eliminates the
    problems of method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2, then start by asking your host what
    they provide for
    form
    processing.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "MagicSpeller" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi again, everyone.
    >
    > I've been trying to set up a registration form with a
    "mailto:" Submit so
    > that
    > I can have the registration information sent to me. I've
    checked several
    > books
    > and followed the instructions on three or four Web
    sites, and still can't
    > get
    > it to work.
    >
    > I've set up the "mailto:" option in the form code, and
    clicking on the
    > Submit
    > button opens a new message with the "To:" and "Subject:"
    fields filled in
    > properly, but the form is not attached and an empty
    message gets sent.
    >
    > I don't know if it matters, but I'm using Firefox for
    mail.
    >
    > Thanks in advance for your help!
    >
    > --
    > Keith
    >

  • How can I get the items gride of MIRO trx?

    Hi everyone,
    I have a requirement where I need to get the items grid of MIRO trx. Is there a function module to do this?
    Thanks in advance!
    Regards.
    Leo.

    Hi Leo,
    try to use the BadI MRM_HEADER_CHECK.
    The parameter TI_DRSEG contais the values of the grid.
    FC

  • I have the Watchtime app on my iPad (1) and after an iPad restore my purchased items in the watch time app will not restore, however the items appear for purchase. how can i get the items to restore.

    Puchased items in my watchtime app will not restore to my ipad (1) after an ipad restore. The items appear ready for purchase. how can i restore the items.

    Following ultimately helped me : Make sure that you are logged in at the App Store App or iTunes App with your apple ID and password with a US account. Turn your iPad off and on and than you should see the Radio button again. It won't work if you are logged on with a foreign account. If you are not logged in at all, it worked, too.

  • Can we get the item data in smart form

    i have a header table with 3 records and item with 10 records.. i am passing both of them to the function module ( fm_name) and then in the smartform i have to get 3 pages output. but right now i am getting only one page..
    to display the header data i am using secondary windows and for displaying the item data i am using tables node in the main window ( in the data tab of the tables node i am giving it as loop it_item1 into wa_item1 ). before the header row of that table node i have created a table node and in that i am prearing the item table it_item..as
    describe table i_hdr line h_lines.
    if h_idx LE h_lines.
    READ TABLE i_hdr into wa_hdr index h_idx.
    if sy-subrc eq o.
    loop at it_item into wa_item where belnr = wa_item-belnr.
    move wa_item to wa_item1.
    append wa_item1 to i_item1.
    clear wa_item1.
    endloop.
    endif.
    this is what i am doing it right now.. and at the last row in the footer of table node i have created a command node and in that i have selected the option go to page : first page.
    please correct me if my approach is wrong
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Dec 29, 2009 12:03 PM

    Hi,
    You try ur logic in
    do                      ---endo.
    after describing the table .
    Do the loop for the number of records available.
    i.e. as per your logic.
    describe table i_hdr line h_lines.
    do h_lines times.
    put your above code and enddo.
    Hope this will work.

  • How can I get an item and it's attachments from the current list using SP's JavaScript Client Object Model on newform.aspx?

    I only recently learned/read about SharePoint's JavaScript Client Object Model. I'm reading online trying to figure this out but not having much luck.
    On newform.aspx (and dispform.aspx) I want to get the
    current list,
    the last item created, and it's attachments. I now the CAML query I need to get the last item created, but first I have to get the current list and I am not sure how to do that.
    I tried this but it returns null:
    SP.ListOperation.Selection.getSelectedList()

    Hi,
    For your issue, you can get the list name from the new form url and retrieve the list last created item :
    https://social.msdn.microsoft.com/Forums/office/en-US/b90a64f8-2255-41b0-9d91-78335dd4a4cf/get-list-name-from-list-url-through-javascript?forum=sharepointdevelopmentprevious
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How can I get the items I was refunded for in iTunes?

    Stedman1 maybe you can answer this question rather than remove it. Let me know how I can get my own account details. I need to find out the items I was refunded for. If mentioning your name is against Apple's rules of posting here, remove the post and I'll post again without your name. Thank you.

    Everybody who posts on here, including Stedman1, are just fellow users, none of us have the ability to remove any posts - only the site moderators can do that. If you've had posts removed then I assume that they broke the forum's terms of use in some way (and you should have received an email explaining why).
    If you've had refunds then did you not receive any email from Apple listing what they were for, or can you not tell based on what you asked for refunds for and the amount(s) that you received ? If not then probably only Apple can give you that information.

  • Can't get form to work

    Ok, I contacted the host, www.west.net, and got the form
    script from them,
    but i tried to use it, and this is what i have so far:
    www.sbyf.org/Templates/registration_page.htm is the
    registration page that
    i'm trying to get to workwhen i submit the form I get the
    message"
    Server Error
    The server has encountered an internal error or
    misconfiguration and was
    unable to complete your request.
    Please contact the maintainer of the script and inform them
    of the time
    the error occurred, and anything you might have done that may
    have
    caused the error.
    To find out the maintainer of the script, just look at the
    URL of the
    page above. If the URL contains the word "cgiwrap", then
    please e-mail
    the name between the '/'.
    For example, if the URL contained:
    http://www.west.net/cgi-bin/cgiwrap/johndoe/mycards.pl,
    you would e-mail
    [email protected]
    If you do not see the word "cgiwrap" in the URL, then please
    e-mail
    [email protected], and report the problem.
    the code for my control page is
    responsepage
    http://www.sbyf.org/registrants/registered.htm
    mailsubject Registration
    mailform [email protected]
    mailsubject Thanks for registering!
    mailfile useformvalues registration.txt {email}
    It's saved both in a .htm and .asp format, in my .sbcform
    file.
    you can see west.net's instrustions at
    http://www.siliconbeachwestnet.com/support.phtml?isp=west.net&user=&domain=west.net&i=41&d =1
    I'd appreciate any assistance you can offer.

    I'm not that familiar with troubleshooting form problems -
    Alans' the expert
    for that :-)
    But I notice that yur registration page seems to be saved in
    your Templates
    folder. This is not correct. You *should not have* anything
    inside that
    folder apart from the DW Template (dwt) file.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    CSS Tutorials for Dreamweaver:
    http://www.adobe.com/devnet/dreamweaver/css.html
    "willie" <[email protected]> wrote in message
    news:[email protected]...
    > Ok, I contacted the host, www.west.net, and got the form
    script from them,
    > but i tried to use it, and this is what i have so far:
    > www.sbyf.org/Templates/registration_page.htm is the
    registration page that
    > i'm trying to get to workwhen i submit the form I get
    the message"
    >
    >
    > Server Error
    >
    > The server has encountered an internal error or
    misconfiguration and was
    > unable to complete your request.
    >
    > Please contact the maintainer of the script and inform
    them of the time
    > the error occurred, and anything you might have done
    that may have
    > caused the error.
    >
    > To find out the maintainer of the script, just look at
    the URL of the
    > page above. If the URL contains the word "cgiwrap", then
    please e-mail
    > the name between the '/'.
    >
    > For example, if the URL contained:
    >
    http://www.west.net/cgi-bin/cgiwrap/johndoe/mycards.pl,
    you would e-mail
    > [email protected].
    >
    > If you do not see the word "cgiwrap" in the URL, then
    please e-mail
    > [email protected], and report the problem.
    >
    > "
    >
    > the code for my control page is
    >
    > "
    > responsepage
    http://www.sbyf.org/registrants/registered.htm
    > mailsubject Registration
    > mailform [email protected]
    > mailsubject Thanks for registering!
    > mailfile useformvalues registration.txt {email}
    >
    > "
    > It's saved both in a .htm and .asp format, in my
    .sbcform file.
    > you can see west.net's instrustions at
    >
    http://www.siliconbeachwestnet.com/support.phtml?isp=west.net&user=&domain=west.net&i=41&d =1
    > I'd appreciate any assistance you can offer.
    >
    >

Maybe you are looking for

  • RV180 not showing up in traceroute

    Hello all, I have a RV180 router that is not showing up in a traceroute. I have multiple VLANs configured where the clients are on one VLAN and the servers are on another. Inter-VLAN routing is enabled and I can ping back and forth and everything wor

  • Selecting records based on formula fields

    Post Author: Mike Kennedy CA Forum: Formula I have created a field (called "Shortage") that is the result of subtracting two running totals and have inserted all three fields into the group footer.  I only want to select those records that have a neg

  • Time Machine backup wired ethernet - why so slow?

    I have a new (Unibody/2008) Macbook Pro connected via wired ethernet to a new Time Capsule. As both are gigabit ethernet, I would have expected fairly quick backup speed but I'm only get about 10MB/s at most. Surely this should be quicker - can anyon

  • Trial download asks for CD to install

    I've downloaded the Dreamweaver Trial. When I'm installing, it asks to me to insert the Adobe CS3 Master Collection D1 to continue the installation. Why is that?

  • Mainstage folder and spotlight.

    Hi everyone. I can't find channel strips settings (for example 01 Acoustic Pianos) in the spotlight search. I wanted to know the file three to find this channel strips settings. I have repair disk permission feature and make a reindexation. Thanks fo