Add button not saved binded data

The below code call when my forms Add button clicks.
The issue is it runs only procedure and not saved binded value to the table.Pls suggest me any alternative code to this
If pVal.ItemUID = "1" And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK) And pVal.BeforeAction = True And pVal.FormMode = 3 Then
                If Soft_Application.MessageBox("Is the GPP-GCP Confirmed ?", 1, "OK", "Cancel") = 1 Then
                        Call Card_Num
                        Call Createjournal
                End If
End if

Hi Dhanraj,
If objMain.objApplication.MessageBox("Advance Payment Not Recieved.Do you want to Proceed Further !!!", 1, "Continue", "Cancel")= "2" Then
                                            BubbleEvent = False
                                            Exit Sub
                                        End If
''''''write ur code here
Rgds
Micheal

Similar Messages

  • Problem: EO based VO not saving VO data in database

    Hi Experts!
    For a shocker and contradiction to the concepts and theory of OAF, something strange and wierd i came across. I got an EO based VO, which got some data (i've confirmed this by debugging) is not saving the data to database on "apply". By apply i mean .. getTransaction().commit();
    This is something which violates completely with the theories, so i've no clues about it. Can anyone suggest something !!
    I mean, how to trace the functionality and resolve the issue?
    Regards
    Ari :)

    Hi sushant!
    Yeah sure!!
    Here it follows: It is an AM method..
    /**Custom public method to define default cost
    * allocation based on the pre-defined formula
    * for cost allocation keeping parity with the
    * corresponding delivery freight details
    public void DefineDefaultCosts(String StrOrgId,String StrTransportationId) {
    OAViewObject vo = (OAViewObject)getAmritTransportationCreateVO1()
    ,vo1 = (OAViewObject)getAmritTransportationPaymentsVO1()
    ,vo2 = (OAViewObject)getAmritTransportDeliveryLinesVO1();
    OADBTransaction txn = getOADBTransaction();
    ArrayList debugMessage = new ArrayList();
    HashMap PartySet = new HashMap();
    Boolean PartyEntryValid = null;
    String TransportationNum = (String)vo.getCurrentRow().getAttribute("TransportationNum")
    ,CurrencyCode = (String)vo.getCurrentRow().getAttribute("CurrencyCode")
    ,EventType = "TRNSP DELIVERED",PeriodName = null;
    Date AccountingDate = (Date)vo.getCurrentRow().getAttribute("DateDelivered");
    Number Amount = (Number)vo.getCurrentRow().getAttribute("Amount")
    ,Rate = (Number)vo.getCurrentRow().getAttribute("Rate")
    ,TripId = (Number)vo.getCurrentRow().getAttribute("TripId")
    ,OrgId = null,TransportationId = null,CodeCombinationId = new Number(576773);
    int DlvryRowCount = vo2.getRowCount(),CostDistRowCount = vo1.getRowCount();
    if (CostDistRowCount == 0) {
    try {
    OrgId = new Number(StrOrgId);
    TransportationId = new Number(StrTransportationId);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("Inherited Values: "TransportationId" "TransportationNum" "CurrencyCode" "EventType" "AccountingDate" "Amount" "Rate" "+OrgId));
    try {
    Connection Conn = txn.getJdbcConnection();
    String v$Script = "Select gp.period_name period\n" +
    "From gl_periods gp\n" +
    "Where upper(gp.period_set_name) = 'AMRIT_CALENDAR'\n" +
    "And gp.adjustment_period_flag = 'N'\n" +
    "And trunc(:1) between nvl(gp.start_date,trunc(sysdate))\n" +
    " and nvl(gp.end_date,trunc(sysdate))\n";
    PreparedStatement PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setDate(1,new java.sql.Date(AccountingDate.dateValue().getTime()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PeriodName = QryOutputRS.getString("period");
    v$Script = "Select attl.vendor_id vendorid\n" +
    " ,asp.vendor_name vendor \n" +
    "From apps.amrit_transport_trips att\n" +
    " ,apps.amrit_transport_trip_lines attl\n" +
    " ,ap.ap_suppliers asp\n" +
    "Where att.org_id = :1\n" +
    "And att.trip_id = :2\n" +
    "And att.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(att.start_date_active,trunc(sysdate))\n" +
    " and nvl(att.end_date_active,trunc(sysdate))\n" +
    "And attl.org_id = att.org_id\n" +
    "And attl.trip_id = att.trip_id\n" +
    "And attl.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(attl.start_date_active,trunc(sysdate))\n" +
    " and nvl(attl.end_date_active,trunc(sysdate))\n" +
    "And attl.location_type = 'HZ'\n" +
    "And asp.enabled_flag = 'Y'\n" +
    "And asp.vendor_id = attl.vendor_id\n" +
    "And trunc(sysdate) between nvl(asp.start_date_active,trunc(sysdate))\n" +
    " and nvl(asp.end_date_active,trunc(sysdate))\n";
    PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setInt(1,Integer.parseInt(OrgId.toString()));
    PreExecuteQuery.setInt(2,Integer.parseInt(TripId.toString()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PartySet.put(QryOutputRS.getString("vendorid"),QryOutputRS.getString("vendor"));
    }catch (Exception e) {}
    /* vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    PartyEntryValid = PartySet.add((Number)vo2.getCurrentRow().getAttribute("VendorId"));
    //debugMessage.add(new OAException("Set VendorId: "+vo2.getCurrentRow().getAttribute("VendorId")));
    vo2.next();
    //debugMessage.add(new OAException("PartySet: "+PartySet.entrySet()));
    for (Iterator iter = PartySet.entrySet().iterator();iter.hasNext();) {
    Map.Entry entry = (Map.Entry)iter.next();
    String VendorName = (String)entry.getValue();
    Number Cost = null;
    int PartyId = Integer.parseInt(entry.getKey().toString());
    float Qty = 0;
    try {
    vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    //debugMessage.add(new OAException("VO VendorId: "vo2.getCurrentRow().getAttribute("VendorId")" Cancelled: "+vo2.getCurrentRow().getAttribute("CancelFlag")));
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    int VendorId = Integer.parseInt(vo2.getCurrentRow().getAttribute("VendorId").toString());
    float Quantity = Integer.parseInt(vo2.getCurrentRow().getAttribute("Quantity").toString());
    if (PartyId == VendorId) {
    Qty+= Quantity;
    //debugMessage.add(new OAException("Quantities: "Quantity" "+Qty));
    vo2.next();
    Qty*= Float.parseFloat(Rate.toString());
    Float totalQty = new Float(Qty);
    Cost = new Number(totalQty);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("PartyId: "PartyId" VendorName: "VendorName" Cost: "Cost" EntryKey: "entry.getKey()" EntryValue: "+entry.getValue()));
    Row row = vo1.createRow();
    row.setAttribute("OrgId",OrgId);
    row.setAttribute("TransportationId",TransportationId);
    row.setAttribute("TransportationNum",TransportationNum);
    row.setAttribute("EventType",EventType);
    row.setAttribute("AccountingDate",AccountingDate);
    row.setAttribute("PeriodName",PeriodName);
    row.setAttribute("CodeCombinationId",CodeCombinationId);
    row.setAttribute("PartyId",PartyId);
    row.setAttribute("VendorName",VendorName);
    row.setAttribute("CurrencyCode",CurrencyCode);
    row.setAttribute("Amount",Cost);
    row.setAttribute("TransportationAmount",Amount);
    vo1.last();
    vo1.next();
    vo1.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    vo1.first();
    vo2.first();
    OAException.raiseBundledOAException(debugMessage);
    Regards
    Ari :)

  • Not saving the data in two tables

    Hello,
    its my production problem, i have an update form where you can update the records and these
    records will sit in the temp tables until the final approval from the supervisor.
    In this update form i have two table where i am saving the data one is dup_emp to save the
    officer data and another is the dup_address to save the officer where he worked data.
    in this form address form is pop up screen where you can update and gets back to the original
    form where you can see all the other fields. my problem is if a user hit the cancel button on
    address form example the user doesnt want to update any information on that screen so user
    cancel that screen, and comes to the other screen where the user makes the changes to the
    appropriate fields and hits the SAVE button. in this case its saving only to the dup_emp table
    data not the address data from the address form to dup_address table for the same record.
    if the user cancels in both the screens cancel button it should delete the record from both the
    tables but cancel in form and saves in another form it should save the record in both the
    tables.
    here is my code from both cancel buttons from both the forms.
    this is code is from address form cancel button.
    delete from dup_address
    where address_id=:address_id
    and parent_table_name='emp';
    commit;
    CLEAR_BLOCK;
    go_block('DUP_EMP');
    This code is from dup form of the cancel button
    declare
    temp_address_id varchar2 (12);
    begin
    delete from dup_emp
    where secondemp_id =:dup_emp.secondemp_id;
    delete from dup_address
    where parent_t_id=:global.secondemp
    and parent_table_name='emp';
    commit;
    clear_block;
    go_block('secondaryemp');
    END;

    Hi,
    As Aravind mentioned, it's nothing related to workflow. You have to find a BADI in tcode PA30 that could be used after the infotype is updated. So, you can use FM SAVE_TEXT.
    Regards,

  • Data form not saving enter data after hit of submit

    Hi,
    Entered data on Data from not saving after hitting the submit button in smartview.
    A rules is attached to the same data from and its running on save, after retrieve it's not display enter data.
    it's urgent, please help.
    Regards

    You need to have the below updates done on the affected PC.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    if its windows 7 machine the same key has to be added under wow6432node under same path.
    once the changes are done reboot the machine and try launching the BR. Hope it works !!!
    Thanks
    Amith

  • What are the setting for Save button for saving plan data in WAD template

    Hi,
    i created SAVE button in Webtemplate for saving plan data.But this button is not
    active.is there any setting for this?
    thanks in advance
    chandu

    Hi Chandu,
    The settings to Configure the  Save function.
    Right click the Button Group Item ® Properties ®  * Button    ® 
    Type Caption  ‘Save’ ® Command    ® Select ‘All Commands’ Tab ® 
    De-select ‘Execute Planning Function’ and then select checkbox ‘Save
    Changed Data’ ® Double click on ‘Save Changed Data’ ® OK ® OK ® Save your template.
    *pls assign points,if info is useful*
    Regards
    CSM Reddy

  • Adobe Audition not saving Meta Data

    I'm trying to save file information within an mp3 or wav file for our broadcast software (AudioVault) to read it and the information does not save.
    We use versions 1.5 and Version 3 and they both exhibit the same behavior.
    I have followed the info below but it doesn't work.
    The File Info command opens a dialog box in which you can see and add metadata—descriptive information that a computer can process and search—about the open audio file. For example, metadata can include history, loop, and Broadcast Wave information.
    For audio files in WAV, mp3, or CEL format, you can use the File > XMP Info command to add XMP metadata. This extensive metadata can be shared across databases, file formats, and platforms. (See Add or edit XMP metadata.)
    1. In Edit View, choose File > File Info.
    2. Click the tabs at the top of the dialog box to navigate between different sets of properties.
    3. Set properties as desired, and click OK.
    To preserve file information when you save files, select Save Extra Non‑Audio Information in the Save dialog box.
    It is not saving the start and end date. Here's what I'm doing. Open mp3 file. File-File Info, toggle text field names to Radio Industry.
    Fill out Description, Advertiser, start date, end date, click ok. click file, save as (clicking save extra audio infomation)
    now close the file and reopen it and the start and end date are gone. Ideas?

    After talking with BE I discovered that the following procedure will save
    the
    meta data providing it is saved in a WAV format (mp3 doesn't work.)
    Open your mixdown in the waveform view.
    Hit ctrl P and the wave properties window will appear.
    Fill out title, artist. Cut number, category and date.
    When you save as make sure save extra non-audio info is checked
    Then in the dropdown save as type choose WAV windows pcm.
    Your completed file can now be dropped into an AV import folder that should
    transfer
    Into the system with all the information in their proper fields.

  • Printer Setup Utility Add Button NOT working

    Whenever I press the ADD button in the printer setup utility, nothing happens. The butten darkens as I press it but, no dialog box appears to add a new printer. The system console shows the following:
    2006-06-20 15:32:47.850 Printer Setup Utility[531] * -[FireWireBrowser startBrowsing]: selector not recognized [self = 0x594b0d0]
    Any ideas?
    Thanks in advance.

    Try downloading Pacifist http://www.macupdate.com/info.php/id/6812 and put in your Tiger Install DVD. Then click "Open Apple Install Packages" (which will only work if you put in the install DVD). Then search the folders for Printer Setup Utility and click Install. I believe it is in one of the top folders. You may have to go a little deep, but it isn't too hard to find. Good luck!
    PowerBook G4   Mac OS X (10.4.7)   Latest version (Double-Layer)

  • Form created with LiveCycle is not saving the data of a fillable form.

    I had posted this in another forum, which got moved over to this forum.  Forgive the double post, I wasn't sure if it was assumed that it was resolved.
    This document:  http://www.southark.edu/employment/application-v5.pdf  was created a couple of years ago in Acrobat and LiveCycle.
    I wanted visitors to have the ability to fill in the document and save their data.
    So, I opened it in Adobe Acrobat X and saved it using the Save As > Reader Extended PDF > Enable Additional Features.
    However, after filling in the document and saving, no data is saved.
    I was informed that since it was an XFA form created in LiveCycle Designer, that they have special considerations that don't apply to forms created in Acrobat.
    Still needing help in giving my visitors the ability to save their form data.
    Thanks,
    Charley

    Thanks so much for your reply.
    Employing your solution our website visitors can save the data using Acrobat Pro.
    They cannot save their data using Reader (most of them don't have Acrobat Pro).  See image below.
    Any other thoughts?
    Thanks very much for your time and interest. 
    Charley

  • HANA Studio: On "New Calculated Column" window Add Button Not Visible

    Hi Geeks,
    On HANA Studio, I'm trying to create a calculated column on Analytical view but "Calculated Column" window doesn't have "Okie" or "Add" buttons visible to save entered values on this applet. Could you please suggest me how to fix this. Thanks.
    Regards, Amit

    Hi Experts
    We have here right the same kind of problem :
    In the expression editor, I don't have any 'OK' button to validate my Input.
    I tried ENTER and TAB, as suggested by Kunal Arvind Gandhi, but with no clue of success.
    I am running on SAP HANA SPS07, with the SAP HANA studio version 1.0.7300 (Build id:  389160). My colleague running the studio version 1.80.x has the same problem, whereas some other guys with the same version do have 'OK' on the bottom right of their screen. (Same view, same expression !).
    Any suggestion is more than welcome !

  • Standard transaction CG02 is not saving the data through F4 help.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

  • Photoshop EPS not saving vector data?

    I have a Photoshop CS3 file with 2 layers that use vector masks. I saved the file as an .eps and checked "Include Vector Data." I placed the .eps in an InDesign document. On screen everything looks fine, but if I print to PDF the vector mask layers are missing; likewise if I open/rasterize the .eps file in Photoshop the vector mask layers are gone. It prints fine if I place the original .psd file in the InDesign doc. Any ideas why .eps doesn't appear to save the vector data? Thanks...

    I understand that eps doesn't support layers, and that vector data will be rasterized if I open the eps in photoshop. That's not the issue; the issue is the vector layer data is being *discarded* and is not making it through the workflow: eps placed into an InDesign document and distilled to PDF.
    Update: I merged all layers in the psd file except for 1 vector layer & saved as an eps. When I reopened the eps in photoshop, it tells me it's rasterizing eps data, but when the file opens the imagery from the vector layer is missing. Likewise, if I place the eps in InDesign and distill a pdf, the imagery from the vector layer is missing, even though it appears in the onscreen preview in InDesign. Maybe something is screwy with that mask?

  • Time is not saving with Date

    I have a created a report and form. Now I am trying to populate one of the columns with a date and time. The column will store the date. However, it will not save the time. I am fairly certain that my process to set the field is correct as I am able to save the date/time in a string and the time stores correct.
    The database column is of type Date.
    The column is setup as follows:
    Display As: Date Picker (YYYY-MM-DD HH24:MI)
    Source Type: Database Column
    Edit Mask: YYYY-MM-DD HH:MIPM
    Any help would be appreciated.
    Thanks,

    OK. I was able to figure it out. I had to fully qualify the date format when making the assignment. i.e. TO_CHAR(v_today, 'YYYY-MM-DD HH24:MI').
    Why is this?
    Thanks,
    Below is a subset of the code that I am using to assign the date field. My code is in the Process Point: On Submit - Before Computations and Validations
    DECLARE
    v_today estimate.row_updated%type;
    BEGIN
    select sysdate
    into v_today
    from dual;
    -- Saves current date without time.
    :P2_ROW_CREATED := v_today;
    -- This works. Saves the date and the time.
    :P2_ROW_UPDATED := TO_CHAR(v_today, 'YYYY-MM-DD HH24:MI');
    END ;

  • Loop add button not functioning correctly

    Hey all,
    I have been trying to get a for loop to produce buttons based
    on a value.
    My current code is:
    var xPosition:Number = 50;
    var yPosition:Number = 15;
    //problem one is that "rows" is a variable from the html page
    the swf is
    on, I have had it working on other flash programs, but unable
    to get it
    working on this, but for the purpose of this, I can replace
    it with a
    numeric value e.g. "3".
    //but this causes the main problem, if it is set to 3, the
    3rd button
    only appears, if set to 2 the 2nd button only appears.
    for(i=0;i<rows;i++){
    _root.attachMovie("button","btn"+i,_root.getNextHighestDepth());
    _root["btn"+i]._x = xPosition;
    _root["btn"+i]._y = yPosition;
    yPosition = yPosition + 25;
    //Does anyone have any idea's for this?
    Thanks in advance.
    Slpixe

    trace(btn0); ect
    i was tracing out the btn in the loop. because its only
    appearing once
    is resulting in only 1 button appearing at a time,
    I attempted having the resulting button componnents all
    returning
    different names, but that resulted in no buttons appearing
    (_root.attachMovie("button"+i,"btn"+i,) i tried
    OMG WOW
    100+i works! all the buttons are appearing now! =D
    Will do some testing
    Thanks loads guys
    VisionaryStudios wrote:
    > I learned not to trust .getNextHighestDepth a while ago
    and never went back to
    > it. Why not just replace that with 100+i. And see if
    that is the problem:
    >
    > _root.attachMovie("button","btn"+i, 100+i);
    >
    > Also, I have no idea what you are tracing out, can you
    post your trace command?
    >

  • PrE9 - Dvd scene buttons not saving image (from MPG)

    Hi All,
    New user to PrE9, I've used Premiere 6 pretty extensively in the past and just bought PrE9.
    Using PrE9 on Windows 7 Ultimate (64-bit).  All latests drivers/patches/etc. are installed.
    I've tried creating a Dvd made up of some videos I have laying around (generated using Premiere 6), mostly MPG.  When I'm in preview mode and I set the in-point for the scene button it works as expected; well, most of the time.
    After I burn the Dvd (or use one of the other sharing methods) a couple of the scene buttons are blank/black.  I've tried a number of templates including Comicbook and Road Trip with the same results.
    I see there are a couple other threads with similar issues, but I don't see any resolution.  Has anyone gotten this fixed or working consistently?
    It's really annoying to have everything work then end up burning a coaster.
    Thanks.
    Daniel

    Hi Bill,
    Thanks for the quick response.
    Yes, Premiere 6.x, the precursor to Premiere Pro.
    My burns so far have been using Memorex Lightscribe DVD+R discs.
    I 'burned to folder' as you suggested and then used the latest version of VLC (videolan.org) to play back the VIDEO_TS folder.  The scene selection showed two of the buttons blank/black (as described before).  Note: I'm still using the Comicbook template.
    To clarify:
    - I don't have the 'Motion menu button' option checked for the scene buttons in question; just trying to use a still from the video clip
    - Sometimes the 'Scene Menu' editing window shows the buttons in question with images, other times they are blank/black.  If I mess around with the 'In Point' (another whole post on how that is supposed to work) I can eventually get the image to show up.  That's when I tried burning but the output still has the issue.
    - I sometimes have the issue where the primary 'scrub' window doesn't show the video correctly; it's blank.  Sometimes it comes back but usually requires a restart of the app.
    My experience with PrE9 so far is disappointing.  I'm not doing anything complicated, just trying to throw some video clips together and burn a dvd.  If the app has trouble doing this what will it be like when I try and use all the features or do something more complicated?  I could write it off as issues with the videos, but they were generated from an earlier Adobe product so that's no excuse.
    Any other suggestions are appreciated.
    - Daniel
    Message was edited by: DCreeron to correct typo and 'Motion menu button' option name

  • App auto updates are not saving configuration data for these Apps.

    I use Junos Pulse to connect to my work office on my iphone and my ipad air.    I am having problems when this App does an Auto Update from the App Store, that I loose all of my configuration settings.   I have co-workers that do not have this problem.  I'm at a loss to understand what settings on my devices are causing this to happen.

    now. SEEMS to be working o.k. again. but for how long ?
    do iDevices need a pre-update update in order to be able to install and apply an iOS update ???

Maybe you are looking for

  • How to convert an ipod with Windows software installed to Mac operation

    I have a 20MB ipod which has windows software on it. It is very hard to load songs onto as I can only see the ICON on the desktop and not in itunes and this way they don't seem to properly mount! I have a 12" ibook that I connect it to. I can't seem

  • Lost my bookmarks about a week ago and can't get them back no matter what I try? They Just disappeared?

    Been using Yahoo toolbar for a long time. Suddenly my bookmarks have disappeared. How do I get them back. Notice other people seem to be having this issue as well.

  • Change hidden form field value

    hi everyone...i'm hoping someone can help me figure out how to change the value of a hidden field in a form. i have a page setup where users pay a website fee. since the fee is always the same, i have the amount setup in a hidden field in my form. my

  • Connecting MacBook Pro to Projector

    First - I am new to mac, so I think the answer to my question is probably a simple one, but I am just not sure where I can fix this. I want to connect my MBP to a projector, but when I do this, the only information displayed/sent to the projector is

  • My iBook needs help.

    I have a 2 years old 933 MHz iBook G4, and i will soon be upgrading to a MacBook Pro (yay). This iBook has troubled me a great deal. I will sell it a while after i get my MacBook. I have enjoyed it a great deal, even to the point that i play starwars