Declaring constant data in a list box - Dialog programming

i need to declarare some constant data 1...4 in list box in dialog programming i have done some coding its not working here is the code, can you plz tell me whats wrong in the code non of the values are displaying in drop downbox.
type-pools vrm.
DATA: name TYPE vrm_id,
list TYPE vrm_values,
value LIKE LINE OF list.
clear list.
REFRESH LIST.
value-key = '1'.
value-text = 'Sales & Distribution'.
append value to list.
value-key = '2'.
value-text = 'Material Management'.
append value to list.
value-key = '3'.
value-text = 'Finance & Controlling'.
append value to list.
CALL FUNCTION 'VRM_SET_VALUES'
  EXPORTING
    id                    = 'LISTBOX1'
    values                = list
EXCEPTIONS
  ID_ILLEGAL_NAME       = 1
  OTHERS                = 2
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

I think your code is correct onlybut the problem may be where
you are passing the internal table to the FM 'VRM_SET_VALUES' ...
Try to use the  following code..
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = 'LISTBOX1'
values = list[]

Similar Messages

  • Adding data in a list box

    Hi all,
    I created a list-box on the selection-screen using
    PARAMETERS p_mtart type mtart AS LISTBOX VISIBLE LENGTH 20
    But, I don't find a way to add data to this list-box.
    Please help me.
    Regards,
    Saurabh Buksh.

    Hi,
    Sorry to bother you.
    I solved it.
    Regards,
    Saurabh Buksh.

  • Dropdown list in dialog programming

    Moved to correct forum by moderator.  Subject amended.  Please use meaningful subjects in future
    Hi Experts,
    How to get a drop down list in Dialog Programming. I need a drop down list for a field called country. Should it be done in Layout Editor or in the coding part. If at coding part can you please help me out with some pointers?
    TIA
    Edited by: Matt on Nov 16, 2008 4:11 PM

    SELECTION-SCREEN BEGIN OF SCREEN 111 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(11) text-012 FOR FIELD p_step1 MODIF ID st1.
    PARAMETER: p_step1 TYPE c AS LISTBOX VISIBLE LENGTH 20
                       USER-COMMAND step1 OBLIGATORY MODIF ID st1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF SCREEN 111.
    DATA:  name1 TYPE vrm_id,
           list1 TYPE vrm_values,
           value1 LIKE LINE OF list1.
    IF list1[] IS INITIAL.
        name1 = P_STEP1.
        value1-key = 1.
        value1-text = your text which you want to display in the list.
        APPEND value1 TO list1.
        value1-key = 2.
        value1-text = your text which you want to display in the list.
        APPEND value1 TO list1.
        CALL FUNCTION 'VRM_SET_VALUES'
          EXPORTING
            id              = name1
            values          = list1
          EXCEPTIONS
            id_illegal_name = 1
            OTHERS          = 2.
      ENDIF.

  • How to add data into a List box

    CS3 SDk:Windows<br /><br />Hi all,<br />I am trying to add  data into a basic List box in CS3??<br /><br />// .fr<br />GenericPanelWidget<br />     (<br />     // CControlView properties<br />     kInvalidWidgetID, // widget ID<br />     kPMRsrcID_None, // PMRsrc ID<br />     kBindNone, // frame binding<br />     Frame(0,0,250,90) // left, top, right, bottom<br />     kTrue, // visible<br />     kTrue, // enabled<br />     // GroupPanelAttributes properties<br />     "", // header widget ID<br />     { <br />     <br />     WidgetListBoxWidgetN<br />     (<br />     kWFPListBoxWidgetID, kSysListBoxPMRsrcId, // WidgetId,RsrcId<br />     kBindAll, // Frame binding<br />     Frame(0,0,250,90) // Frame<br />     kTrue, kTrue, // Visible, Enabled<br />     1,0, // List dimensions<br />     19, // Cell height<br />     1, // Border width<br />     kFalse,kTrue, // Has scroll bar (h,v)<br />     kTrue, // Multiselection<br />     kTrue, // List items can be reordered<br />     kTrue, // Draggable to new/delete buttons<br />     kFalse, // Drag/Dropable to other windows<br />     kTrue, // An item always has to be selected<br />     kFalse,// Don't notify on reselect<br />     kFalse, <br />     {               <br />     }     <br />                    <br />),<br />},<br />),<br /><br />//-------ID.h--------<br />DECLARE_PMID(kWidgetIDSpace, kWFPListBoxWidgetID, kWFPPrefix + 2)<br /><br />//observer.cpp-----------WFPDialogObserver::Update<br /><br />//get currently selected/active widget <br />WidgetID theSelectedWidget = controlView->GetWidgetID();<br /><br />// ist it the text edit field? <br />if (theSelectedWidget == kWFPInsertButtonWidgetID && theChange == kTrueStateMessage) <br />{ <br /><br />IControlView* listBox = panelControlData->FindWidget(kWFPListBoxWidgetID);<br /><br />InterfacePtr<IListControlData> listControlData(listBox, UseDefaultIID()); <br /><br />//Insert the string into listbox <br />PMString strText = dialogCtrl->GetTextControlData(kWFPTextEditBoxWidgetID); <br /><br />// obviously there can't be a translation for text entered by user <br />strText.SetTranslatable(kFalse);<br />listControlData->Add(strText,kWFPTextEditBoxWidgetID); <br />dialogCtrl->SetTextControlData(kWFPTextEditBoxWidgetID, ""); <br />break;      <br /><br />I am not able to Add items into list box.<br /><br />I tried based on Discussion <br />http://www.adobeforums.com/webx/.3bc43877<br /><br />but not able to locate  SDKListBoxHelper file .it is not available in SDK.<br /><br />Please ,<br />Tell me Where I am going wrong.<br /><br />Thanks,<br />Adil

    resource VSPDialogWidget (kSDKDefDialogResourceID + index_enUS)
         __FILE__,
         __LINE__,
         kVSPDialogWidgetID, // WidgetID
         kPMRsrcID_None, // RsrcID
         kBindNone, // Binding
         Frame(5,0,491,266) // Frame (l,t,r,b)
         kTrue,
         kTrue, // Visible, Enabled
         kVSPDialogTitleKey, // Dialog name
              DefaultButtonWidget
                   kOKButtonWidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(9,234,89,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefOKButtonApplicationKey,  // Button text
              CancelButtonWidget
                   kCancelButton_WidgetID, // WidgetID
                   kSysButtonPMRsrcId, // RsrcID
                   kBindNone, // Binding
                   Frame(394,234,474,254) // Frame (l,t,r,b)
                   kTrue,
                   kTrue, // Visible, Enabled
                   kSDKDefCancelButtonApplicationKey, // Button name
                   kTrue,  // Change to Reset on option-click.
              WLBCmpListBox   //Tree view
                   kWLBCmpListBoxWidgetID, kPMRsrcID_None,     // WidgetId, RsrcId
                   kBindAll,                                                       // Frame binding
                   Frame(299,49,475,170)           // Frame
                   kTrue, kTrue,                                             // Visible, Enabled
                   kTrue,                               // EraseBeforeDraw
                   kInterfacePaletteFill,           // InterfaceColor
                   kHideRootNode | kDrawEndLine,     // Options. Display root node
                   kFalse,          // Use H Scroll bar
                   kTrue,          // Use V scroll bar
                   20,               // fVScrollButtonIncrement
                   20,               // fVThumbScrollIncrement
                   0,               // fHScrollButtonIncrement
                   0,               // fHThumbScrollIncrement
                   2,               // Items selectable, 0 = No Selection, 1 = Single Selection, 2 = Multiple Selection
                   kFalse,          // Allow children from multiple parents to be selected
                   kTrue,          // Allow discontiguous selection
                        //The tree view is dynamically created.          
    // added to support the list elements in the list box
    resource LocaleIndex (kWLBCmpListElementRsrcID)
         kViewRsrcType,
              kWildFS, k_Wild, kWLBCmpListElementRsrcID + index_enUS
    resource WLBCmpNodeWidget (kWLBCmpListElementRsrcID + index_enUS)
         __FILE__, __LINE__,
         kWLBCmpListParentWidgetId, kPMRsrcID_None,     // WidgetId, RsrcId
         kBindLeft | kBindRight,               // Frame binding
         Frame(0, 0, 194, 20),               // Frame
         kTrue, kTrue,                         // Visible, Enabled
         "",                                        // Panel name
                   // Just a info-static text widget with about-box text view to get white bg.
              WLBCmpTextWidget
                   kWLBCmpTextWidgetID, kPMRsrcID_None,          // WidgetId, RsrcId
                   kBindLeft | kBindRight,                                        // Frame binding
                   Frame(45,1,194,18)                                             // Frame
                   kTrue, kTrue, kAlignLeft,kEllipsizeEnd                    // Visible, Enabled, Ellipsize style
                   "",                                                                 // Initial text
                   0,                                                                 // Associated widget for focus
                   kPaletteWindowSystemScriptFontId,                         // default font
                   kPaletteWindowSystemScriptHiliteFontId,                    // for highlight state.
    If you still got problems, post you email here - I'll send you the complete project/code then.
    -Marc

  • How to put add formated data in multicolumn list box

    hello
    i am beginer of labview .
    my front panel is communicating with my hardware via serial port
    i am also getting a data also.
    i have fromated the answer also
    now i have to put in the multicolumn list box.
    e.g.
    my serial port string is  :001 01 20 23 45 45 00 05 06 00 00
    Formated string  01 20:23:45/45:00:05 06 00 00
    now above formated string i have to add in the multicolum listbox
    1st column 01  
    2nd column 20:23:45/45:00:05
    3rd column 06
    4th column 00
    5th column 00
    i hope you people help me
    thanks
    Lokesh

    A couple of mistakes.
    You initialize an array of 5 records with 10 elements instead of vice versa.
    Dennis is right, use "spreadsheet string to array" instead. Here's a quick draft (note that the delimiter is set to \'codes, it's a space constant)
    Is this loop interactive, i.e. does it need to update the records as the arrive with each iteration? If this is not the case, you should update the ItemNames only once after the loop has finished. For example as follows.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    AddRecords.png ‏8 KB
    addrecords2.png ‏7 KB

  • Please help !!!! How to get data into dropdown list box

    Hi all,
    I want to display data from ResultSet object to drop down
    list box in my JSP form.
    How should I proceed ?
    Please help me what should I do ?
    Thanks for any help in advance.
    savdeep.

    dear hermione
    it depends on the compexity of the application
    i could also have suggested to use a JSP custom tag
    that can populate the values stored in a table. I
    guess u must have used that approach too.
    But why to make the things complicated when they can
    be done in an easier manner.
    The author seems to be a beginner and telling him to
    call Helper classes just to make a drop down is not
    at all feasible.
    what do u say?I believe it is best to start with a proper approach than finding quick solutions. Of course, JSTL sql tags allow you to execute queries within the JSP but they look cleaner in code.
    Certainly, if the OP is a beginner in JSP (presuming that he has some background of core Java and OOP), I don't see any reason why there should not be a separate class with a well-defined responsibility. This will help the OP develop a thinking towards designing a good solution rather than simply patching in bits of procedural code to get the job done. There is a difference in doing something and doing in properly. :)
    I suppose I am a little wary since I have been working too long maintaining code developed by others. A simple change in the requirement needs a lot of impact on several components.

  • Using LDAP data to populate list box

    Hi All,
    I have set up my authentication scheme reading the company LDAP using the dn string etc.
    I have created a table which holds all the staff details ( email etc ) but would like to have this data read directly from LDAP at login time or when required. The data ( username, email address, phone number and known-as credentials ) should be able to be used to populate list boxes.
    Any ideas ?
    Thanks - Robert @ london gov

    Hi Robert,
    The following thread might help give you a few ideas -
    Re: Cookie And LDAP
    I use that method to query my LDAP server and also use a materialized view (with timed refreshes) to be able to query information quicker than querying the LDAP server each time.

  • List Box Dialog Object VB CS4 or CS2

    It appears that the InDesign Dialog object doesn't allow you to place list boxes. Does anyone know a work around for this. I need to match up the items for two lists that can contain 40 - 50 items each. Any thoughts?

    They have something called a drop down list:
    var aStringArray = new Array;
    aStringArray.push("Hello");
    aStringArray.push("World!");
    var myDialog = app.dialogs.add ({name:"My First Dialog",canCancel:true});
    with (myDialog)
    with (dialogColumns.add())
      with (dialogRows.add())
       staticTexts.add ({staticLabel:"My List"});
        dropdowns.add ({stringList:aStringArray, selectedIndex:0});
    I guess 'real' Windows Listboxes are not supported -- can't find them in the newer (CS3) ScriptUI as well.
    >..match up the items for two lists..
    How were you planning to 'match up' two listboxes? Perhaps you can place two dropdown lists side by side?

  • Remaining Information after populating data in a list box

    Hi Guys,
    I have a small problem. Actually  I thought everything works perfect but as i saved or sent the form and opened it again the populated information was gone. I was shocked.
    I give you short function of my form.
    I type in texfield "Type" "a" or "b" a dropdown list with A, B, C appears. If I select A ,B or C or all of them then this information appears in a list box. that's perfect so far, but when I save this pdf file or send it to someone and open it, then the selected information is gone. this is horrible!
    Does anyone know what's going on wrong??
    I think the information should remain otherwise the function doesnt make sense.
    I appreciate it a lot if someone can help me to solve this problem!
    Thanks in advance!
    Diana

    You can assign the xfa.event.newText to a variable then you can reuse the var as required and you can set each of the listboxes according. The code would look something like this:
    var ListBoxSelection = xfa.event.newText;
    Com.addItem(ListBoxSelection);
    Com1.addItem(ListBoxSelection);
    Or I have completly misunderstood why you cannot set both ListBoxes.
    paul

  • Listbox and data read in dialog program

    Hi Experts
                 I want to display the data as listbox in the dialog program, the data has to be read from the database as we see some standard transactions.
              How to display the data into listbox, whether we need to write coding or can we set the property of the field.
               Pls advise me.
    Regards
    Rajaram

    i am giving here sample code for list box.hope it helps.thank you.
    TYPES : BEGIN OF ty_code,
             code TYPE zcomp_ys-comp_code,
             END OF ty_code.
    TYPES : BEGIN OF ty_comp,
             code TYPE zcomp_ys-comp_code,
             language TYPE zcomp_ys-language,
             comp_name TYPE zcomp_ys-comp_name,
             country TYPE zcomp_ys-country,
             END OF ty_comp.
    DATA : it_code TYPE STANDARD TABLE OF ty_code  WITH HEADER LINE,
            it_comp TYPE STANDARD TABLE OF ty_comp WITH HEADER LINE.
                             SELECTION SREEEN
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER : p_code LIKE it_code-code AS LISTBOX VISIBLE LENGTH 10.
    SELECTION-SCREEN : END OF BLOCK b1.
                             AT SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_code.
       SELECT comp_code FROM zcomp_ys INTO TABLE it_code.
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
         EXPORTING
       DDIC_STRUCTURE         = ' '
           retfield               = 'CODE'
       PVALKEY                = ' '
       DYNPPROG               = ' '
       DYNPNR                 = ' '
       DYNPROFIELD            = ' '
       STEPL                  = 0
       WINDOW_TITLE           =
       VALUE                  = ' '
          value_org              = 'S'
       MULTIPLE_CHOICE        = ' '
       DISPLAY                = ' '
          callback_program       = 'ZAL_REPT_LISTBOX_YS'
       CALLBACK_FORM          = ' '
       MARK_TAB               =
    IMPORTING
       USER_RESET             =
         TABLES
           value_tab              = it_code
       FIELD_TAB              =
       RETURN_TAB             =
       DYNPFLD_MAPPING        =
    EXCEPTIONS
       PARAMETER_ERROR        = 1
       NO_VALUES_FOUND        = 2
       OTHERS                 = 3
       IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
                             START-OF-SELECTION
    START-OF-SELECTION.
      SELECT comp_code  language comp_name country FROM zcomp_ys INTO TABLE
      it_comp WHERE comp_code EQ p_code.
       LOOP AT it_comp.
         WRITE : / it_comp-code,
                   IT_COMP-COMP_NAME,
                   IT_COMP-LANGUAGE,
                   IT_COMP-COUNTRY.
       ENDLOOP.

  • IS there a way to fix the issue with text list boxes where they shift (empty space is smaller than the text size) when two text lsit boxes are side by side?

    Currently I have a webpage I designed for a company where I have multiple text list boxes side by side for the purpose of displaying data in each one based on a category in the database. So a text list box for the primary key, name, serial number, etc. I have to use Firefox as it typically works best for printing and functionality for the page. The single issue we are having is that in Firefox if the field is null as far as text the text are shrinks meaning all the data in that list box shifts up and is no longer in line with its congruent data in the other text list boxes. In other browsers that's not a problem and everything stays lined up regardless of whether there's text in the box or not.
    Unfortunately I cannot provide a link but if contacted I will provide screen shots.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • How can we use list box on selection screen

    hi, howe can we use list box on selection screen and how can we populate the dat ainto the list box and how can we retrive data based on list box from ther database.
    thanks in advance
    raju

    Use the VRM_SET_VALUES function module.
    DATA: list              TYPE vrm_values,
          value             LIKE LINE OF list.
               AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      name = 'P_OBJECT'.
      CLEAR list.
      REFRESH list.
      CLEAR value.
      value-key = '1'.
      value-text = 'Development Class'.
      APPEND value TO list.
      CLEAR value.
      value-key = '2'.
      value-text = 'Program'.
      APPEND value TO list.
      CLEAR value.
      value-key = '3'.
      value-text = 'Function Module'.
      APPEND value TO list.
      CLEAR value.
      value-key = '4'.
      value-text = 'Database Table'.
      APPEND value TO list.
      CLEAR value.
      value-key = '5'.
      value-text = 'Structure'.
      APPEND value TO list.
      CLEAR value.
      value-key = '6'.
      value-text = 'View'.
      APPEND value TO list.
      CLEAR value.
      value-key = '7'.
      value-text = 'Data Element'.
      APPEND value TO list.
      CLEAR value.
      value-key = '8'.
      value-text = 'Table Type'.
      APPEND value TO list.
      CLEAR value.
      value-key = '9'.
      value-text = 'Class / Interface'.
      APPEND value TO list.
      CLEAR value.
      value-key = '10'.
      value-text = 'Type Group'.
      APPEND value TO list.
      CLEAR value.
      value-key = '11'.
      value-text = 'Domain'.
      APPEND value TO list.
      CLEAR value.
      value-key = '12'.
      value-text = 'Search Help'.
      APPEND value TO list.
      CLEAR value.
      value-key = '13'.
      value-text = 'Lock Object'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = name
          values          = list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

  • List box in table

    Hi...
    I have a table with 3 list box. Based on selection in one list box another listbox must be populated.
    i have written event for that list box... that event is working fine for first row alone.. if i select second row & get the data from the list box its reading first row only...
    How to specify the index... Since there is no lead selction...
    Any idea or example program...
    Thanks in advance.
    Kalpanashri Rajendran.

    Hello,
    I think you can follow this,
    calling these methods from the respective classes.
    GET_STATIC_ATTRIBUTES from IF_WD_CONTEXT_ELEMENT
    GET_SELECTED_ELEMENTS from IF_WD_CONTEXT_NODE
    You can achieve the required behaviour.
    If you want to specify the index,
    SET_LEAD_SELECTION_INDEX(Set Element of Lead Selection with Index) from interface:IF_WD_CONTEXT_NODE.
    Before setting the index, get the data from node and put it in to internal table.
    Loop at that internal table.
    populate lv-tabix.(sy-tabix)
          CALL METHOD lo_nd_roles_users->set_lead_selection_index
            EXPORTING
              index = lv_tabix.
    endloop.
    This is not exact code but hope will give u some idea....!
    Cheers,
    Bharath

  • Reg: Dialog Programming

    Dear All,
    I'm new to this group.
    Now i'm learning ABAp.
    I need a small Help.
    I want to insert/Update the data into master tables using Dialog Programming.
    How can i do that.
    I'm using RF(Radio frequency)devices,which can access the SAP Screens in Character Based Format and from those devices i want to update/recieve the Data in the database.
    Please send me the procedure/Code.
    Thanks  & Regards,
    Adi.

    Hai Sateesh,
    Thanks for your reply.
    I'm using RF Hand Held Devices & Barcode Technology for stores Automation.
    I want the dialog programming as when ever the user scan the barcode of the particular material,the system will automatically check the Databse and need to show the details of that Particular Material.
    For issuing & reciveing & for stock verification i want the dialog programming.
    In this How to use BDC's /BAPI's. what isa the advantage of using BDC's/BAPI's?
    i don't know much about BAPI Programming.
    I devloped one small Dialog Program...
    The code look like this.
      Delaration of Tables.
      Internal table Declaration.
      In the PAI Event.
      Case sy-ucomm.
      when 'save'.
      insert mara.
      when 'disp'.
      select * from mara where matnr = itab-matnr.
      endselect.
      when 'exit'.
       leave program.
      endcase.
      in the PBI Event
      Move-correspondin itab to mara.
      with this code i'm able to get the values what ever i entered,and i'm able to save.
    What is use of BAPI's & what is the Advantage?
    Please Reply me.
    Regards,
    Adinarayana.B

  • Data in List Box

    I am currently creating a list box on a selection screen.  I have created the box, but I am unable to populate it with data.  After looking through many resources and several threads through this forum I am still unable to populate it.  I have followed syntax posted on this forum and others, yet my list box still remains empty.  I am using the call function 'VRM_SET_VALUES' and doing the proper exports, I have used TYPE-POOL: TRM, and have created the data declaration.  Yet the box remains empty.  Anything I should look for to correct this problem?

    Hi,
    Here is the simple Program
    REPORT ZLIST.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST.
    PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'PS_PARM'.
    VALUE-KEY = '1'.
    VALUE-TEXT = 'LINE 1'.
    APPEND VALUE TO LIST. VALUE-KEY = '2'.
    VALUE-TEXT = 'LINE 2'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    START-OF-SELECTION.
    WRITE: / 'PARAMETER:', PS_PARM.
    Regards
    Sudheer

Maybe you are looking for

  • Can't sync Desktop calendar with T5

    I decided to switch from Outlook to Palm Desktop as main PIM after a configuration change at office which prevented from syncing with Outlook. First global HotSync froze on Calendar, so I restarted without Calendar. Everything else was sync'd between

  • NEED HELP BADLY! USING IMAC G5 AND CAN NOT INSTALL

    I'm not too great with computers but I know how to install programs easily and I've installed Flash in the past. Today it seemed for no reason my flashplayer just stopped working. So I went to reinstall it It succesfully installed but still didnt wor

  • Compatibility when uploading to a school submission

    I am running a MacBook Pro 13" (Mavericks) with Boot Camp and Windows 7 Professional. I have had more issues with uploading for school. Formating has gotten messed up when downloading my original mac file from their file storage site back to my compu

  • HT1329 Moving movies and tv shows to new computer.

    If I move my iTunes library to another computer using my iPod in disk mode, will it move my movies and tv shows as well? Any help would be appreciated.

  • Payment Method customer

    Hello together, how I can fix a Payment Method to a customer no.? We have some different Payment Method and we would fixed this, on the sales are data. Thanks for your help. Best regards Petra Schober