Record Navigation Problem

Hi All!
I have a Master-Detail Form, when I execute query using F8 key then query executed successfully. So, now I want to make change in Detail Block, when I make change in Detail Block and then I move to first block and want to navigate to next record using "Next_Record;" built-in procedure behind a button then this message raise.
"Do you want to save the changes you have made?
How can I stop this? I do not want to show this built-in message.
Thanks,
Waqas,

If Name_In( 'System.Cursor_Block' ) = Name_In( 'Global.Master_Block' ) Then
Go_Block( Name_In( 'Global.Master_Block' ));
If Name_In( 'System.Last_Record' ) = 'TRUE' Then
     Pro_Scroll;
Else
     Pro_Current_Attribute( 'RED_MESSAGE_BAR', 'GREEN_MESSAGE_BAR' );
     Next_Record;
     Pro_Scroll;
End If;
End If;
I use just this simple code behind a button.
So, tell be what to prob in this code, In "pro_scroll" and "Pro_Current_Attribute" I do not use any clear code.
Thanks, Waqas

Similar Messages

  • Navigation Problem in Next/Previous Record

    Hi,
    I have a Master (have 20 fields) and Four its Detail block visible on same screen but each block have its own Canvas and Window. Now master table have 1700 records with its detail tables. So after Query when I press the Next_Record button it will no response some time I have to press it twice or thrice then it will respond and some time on fist click it gives the response.
    So I want to navigate through Next Records or Previous Record buttons on single click.??????????
    Kindly send me the solution of this problem on urgently basis.
    Best Regard,

    Hi,
    It's very difficult to suggest something by readingyour post. There are many reasones for navigation problem. Validation is one of them. Be sure that validation triggers written on any level are working properly. What code you have written on the buttons that you are using for navigation. In which blocks you have put your buttons. It is recommended that you put all your non-database items in a non-database block. Check this also.......

  • Still having navigation problems and need help with how to debug

    Hi,
    I've been porting over a servlet project to JSF and I'm still having navigation problems. I thought the problem might have been because the original project used HTML frames and so the "from-view-id" JSP defined the frame/framesets and the specific JSP that does the submit (and so is named in the "from-view-id" is never defined in a "to-view-id" attribute). I've now switched to using an IFRAME, and that resolves that problem. So now the JSP is defined in a "to-view-id" attribute and it includes an named IFRAME that can be used as a target. I press the submit button and I get not the JSP expected butinstead the same JSP displayed inside its own IFRAME.
    Here is the code for the submit. I've simplified it as much as possible with a static action (originally it was a call to a method) just to try and get things to work. This is the current version:
    <h:commandButton value="View Alias" action="foo" styleClass="select" type="submit" />Here is the navigation rule in faces-config.xml. Again, the problem is that SelectManager get redisplayed in the IFRAME instead of display.jsp.
    <navigation-rule>
       <from-view-id>/SelectManager.jsp</from-view-id>
       <navigation-case>
          <from-outcome>foo</from-outcome>
          <to-view-id>/display.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>I have also tried it without the "from-outcome-value" which I presume means that the "to-view-id" gets displayed unconditionally and it still fails. Any ideas on how I can debug this? (I'm using GlassFish if that's important to know)
    Rob Tanner
    Linfield College

    Raymond, The real trick is avoid doing technical things when coming down with the flu (I should also add that I'm a JSF newbie). Reading your original message this time I see what you're suggesting and found a conversion error although I don't understand it. Here's the code (including the <h:message/>):
                <h:selectOneMenu value="#{members.dcodes}"
                  style="color: #7f0000" id="selector">
                  <f:selectItems value="#{members.departmentList}" />
                </h:selectOneMenu> 
                <h:message for="selector" style="color:white"/>And here's a snippet of the generated HTML:
    <select id="j_id_id26:selector" name="j_id_id26:selector" size="1" style="color: #7f0000">
             <option value="aad" selected="selected">Academic Advising</option>
         <option value="aaf">Academic Affairs</option>
         <option value="adm">Admission</option>
         <option value="up">Upward Bound</option>
    </select>If I select "Admission" for example, the error I get is:
    Conversion Error setting value 'adm' for 'null Converter'.Since everything is a String value, I don't get the error. Could someone please enlighten me.
    Thanks.

  • Navigation Problem in OBIEE

    Hi,
    I have a strange navigation problem. I have the navigation setup from the 1st page of my dashboard to go to the second. When I first bring up the first page, and then click , nothing happens. Now if I refresh this page and then click again, I am able to navigate to the second page. I would to hear if anyone has seen similar issue. Any help is appreciated.
    Thanks,
    Bharat

    Still haven't found a solution to this problem.
    Even if I remove the form1.setTarget( null or other framename/windowname)
    I tried changing to using the onclick="from1.target='mywin';" and also onclick="form1.target='_self'; on the button. Does not work/ have the desired effect of controlling where the page is opened: in same window or in another frame or window.
    For some reason navigation also totally breaks, after a search, with a similar sql as in this message, and I get no error when I debug and step through the code.
    After doing one search, navigation seems to stop working and only the search.jsp page is the target.
    If I do a view first navigation works to new page/servlet output but still not in a new window/frame.
    This simple stuff in a normal simle html page, should not be so hard to accive with SJSC perhaps someone of you in the community or the developers at sun can give us insight into this simple problem.
    It must be fairly common that one likes to control where a page is opened, in the existing window/page/frame or in a new window/frame.
    Anybody else had any problems with navigation not working with similar code ??
    If I remove the do_search() call it works, the navigation continues to function, but still have no control of the destination window/frame.
    Kind Regards
    Roger

  • RoadMap UI Navigation Problem

    I'm facing a navigation problem using the roadmap UI in WD4A.
    Let's say we have 5 views. The roadmap view is the default view, the other views will be embedded into a view container UI element on the roadmap view. The roadmap UI has 4 steps, one for each view.
    V_ROADMAP
    V_STEP_1
    V_STEP_2
    V_STEP_3
    V_STEP_4
    Now, I need to add navigation buttons (previous & next) to navigate between the roadmap steps.
    My question is where should I placed these navigation buttons? On each view or only on the roadmap view.
    Personnaly and it think it would make more sense to place them only on the roadmap view.
    My problem using this approach is has follow: When you are on v_roadmap on step 1 (V_STEP_1), you click on Next to go to the next view (V_STEP_2), actually the action is trigger in V_ROADMAP so I am not able to validate user input field or obligatory field in V_STEP_1. I would have to call an action from V_STEP_1 in V_ROADMAP so the event handler method WDDOBEFOREACTION will be called. I don't think it's possible. The problem here, is you can click on next and you can go to the next view without filling the obligatory fields.
    If I placed my navigation buttons on each view. The advantage is that before triggering an action, I can validate user input field, obligatory field in the method WDDOBEFOREACTION before going to the next step.
    The desadvantage is that I have to recreate them on each of my view.
    thanks
    Alex

    Just to close this thread, I will summarize the different possible options:
    Navigation buttons on each view: This is the easiest way to validate obligatory fields but for component reuse it's not good idea to have navigation buttons on individual views.
    Navigation buttons on main views: If we placed the navigation buttons on our main view, the validation is kind of painful, before firing an outbound plug from the main view and a corresponding inbound plug on the individual view, we will have to manually verify our obligatory fields from the context of the componenent controller or using cross-component data sharing.
    Navigation using GAF (Guided Activity Floorplan): I think this option is the way to go! The problem here is that's very difficult to find documentation on that subject, also, the tools from SP 15 is not as user friendly then the one that's coming in NW EhP1.
    Alex

  • Table Record Navigation - Struts

    I have a button called "List" when I click that button it activates an Struts Action, which returns me a ArrayList of JavaBeans (User Records)
    When I use this list directly in my tableData everything works fine. Now I wanted to include record Navigation.
    Here is my event Hanlder
      public static EventResult doGotoEvent(BajaContext bc, Page page,
                                            PageEvent event)
        // if this is a "goto" event, then we need to get the "value" parameter to
        // figure out what our start index is. If this is not a "goto" event, then
        // we want to start at index "1"
        System.out.println("Testing from UIX Provider");
        String valueParam = ((event!=null) &&
                             UIConstants.GOTO_EVENT.equals(event.getName()))
                          ? event.getParameter(UIConstants.VALUE_PARAM)
                            : "1";
        // the "value" parameter starts at "1"; however, our data is zero based,
        // so adjust the offset
        int value = Integer.parseInt(valueParam)-1;
    //getting the List of Users(ArrayList) from session  
    List userList = (ArrayList)bc.getServletRequest().getSession().getAttribute(IConstants.USER_LIST_SUCCESS);
        Vector myVec = new Vector(userList);
        ListDataObjectList LDOL = new ListDataObjectList(myVec);
        DataObjectList tableData = new PagedDataObjectList(LDOL,
            _BLOCK_SIZE.intValue(),
            value); //start index
        // in a more efficient implementation, we would not use DictionaryData;
        // instead, we would implement our own DataObject
        DictionaryData data = new DictionaryData();
        // we need to add one here, since our data is zero based, but the table
        // start index must start at 1
        data.put("value", new Integer(value+1));
        data.put("size", _BLOCK_SIZE);
        data.put("maxValue", new Integer(LDOL.getLength()));
        data.put("current", tableData);
        EventResult result = new EventResult(page);
        result.setProperty("tableData", data);
        return result;
      }My Table declaration looks like this
    <table name="userListTable"
                                 data:tableData="current@tableData@ctrl:eventResult"
                                   width="300" nameTransformed="false"
                                   data:blockSize="size@tableData@ctrl:eventResult"
                                   data:maxValue="maxValue@tableData@ctrl:eventResult"
                                   data:value="value@tableData@ctrl:eventResult"
                                   minValue="1">Event registration for Goto Looks like
        <event name="goto">
          <method class="UIXProvider" method="doGotoEvent"/>
        </event>However the event is not getting fired when I click the "List" button. I am sure the Struts action is returning the list but the goto event is not being triggered the first so that the tableData is set into the event results?
    Any work around for this issue?

    Just little more Information that I am using UIX 2.1.7 and not 2.2.
    When I click the List Button I am calling a struts action which sets an ArrayList to session.
    In my UIX page how can get it to work for Record Navigation, becuase the Struts action is going to call "success" action forward and the event "goto" will not be fired the first time and the tableData is not set in the eventResult. How can I over comes.
    Please help me...

  • Mouse navigations problem with Sun Java 1.5.0_*

    Hello gurus,
    We need to move from JInitiator to Sun Java Plugin; according to the Forms10g Client Platform Support (http://www.oracle.com/technology/products/forms/htdocs/10gR2/clientsod_forms10gR2.html) one of the certified version for Forms 10.1.2.0.2 of the the Sun Java Plugin is 1.5.0_06 and Internet Explorer 6.0, we have tested also SJPI 1.5.0_09 and we get the same mouse navigation problem reported in the following Oracle Forum threads.
    Mouse navigation don't work with Java Plugin.
    Mouse navigation don't work with Java Plugin.
    Forms 10gR2, Sun Java 1.5.0_06 gives mouse problems
    Forms 10gR2, Sun Java 1.5.0_06 gives mouse problems
    Does anybody know a solution to this problem?
    Any help will be really appreciated.
    Regards,
    Victor.

    You need to use 1.5.0_12 or newer. The client SOD is not up-to-date on this specific point. A lot of navigation problems was fixed in this very release.
    The Management team should change this in the client SOD, wonder why they still refer to 1.5.0_06. For Applications, the first 1.5.0 to be certified was _12.
    Also make sure, that you are using the latest Patch 3 for 10.1.2 (10.1.2.3). This patch also contains fixes for a lot of these wellknown issues.
    Hope this helps,
    Jacob

  • Need help: Flex  record webcam problem, how to setting Brightness,Contrast,Saturation and Sharpness

    Hello, dear all
    Please help me!
    Flex  record webcam problem, how to setting Brightness,Contrast,Saturation and Sharpness?
    nsOutGoing=new NetStream(nc);
    nsOutGoing.attachCamera(m_camera);
    nsOutGoing.publish(filename, "record");
    I want to control the Brightness,Contrast,Saturation and Sharpness for the recorded flv file.
    At present, I only can control the videodisplay object, but I can not able to control Camera.
    Thanks very much!!
    kimi
    MSN: [email protected]

    Can I change a Video object to to Camera object, If yes, How do??
    nsOutGoing.attachCamera(video as Camera);// it does not work rightly
    thanks

  • JavaScript error and CATW record locking problem

    Hello,
    We're having two problems with ESS (CATW and Personal Information (PZM3)) in EP 6. We have an ITS-R/3 landscape.
    The JavaScript problem appears intermittently within Personal Data services (Address, Emergency Contact, ...). The actual error reads "object required" and originates from ITS. A user may be able to click through all the ESS services once fine, but on a second click receive the error. Sometimes they can't use the services at all.
    The record locking problem happens in Time Sheet (CATW). Even though a user Saves and Releases the Time Sheet, it remains locked and cannot be approved. Alternatively, some users are experiencing locked records when they try to complete their own time sheets.
    I'm not sure if these are related.
    Has anyone here seen these problems? Any suggestions are most welcome!
    Cheers,
    Colleen

    The best way to nail down the javascript error would be to use the firefox JavaScript debugger extension plugin and put the breakpoints where the problem occurs.
    This will exactly tell you which object it is looking for which is not found. Moreover you might be able to find that when it is working fine as you said. So give that a try and I am sure you will be able to figure out the problem.
    To me this mostly looks like at time some .js file is not coming through to the browser... but this is just a wild guess based on the symptoms.

  • Last Record Navigation

    Hi
    When we use the last record navigation buton the system goes to max number of document, for example in sales order.
    is possible that the last record buton goes to the last document of the period indicator active?
    regards
    VS

    The functionality of the First, Prev, Next, Last buttongs are build into the core code of SBO and pressing last will always does to the highest number for that document.
    If you are on Add mode, like Gordon says..pressing the Prev button would take you to the number before the current one.
    Suda

  • Installing ios8.2 does not resolve Google map navigation problem or gps tracking!

    Installing ios 8.2 does not resolve Google map navigation problem.

    I have tried to install both of them lots of times but in each case I receive the same in my XE.bat file:
    Instance created.
    DIM-00019: create service error
    O/S-Error: (OS 1387) Unable to add or remove a member from the local group because this member does not exist.
    Have checked OS 1387 error at Microsoft Support and as possible cause of the problem they give as follows:
    This issue can occur if the environment has a disjointed namespace (i.e. the domain has different NetBIOS and DNS names). For example, assume that the domain has a NetBIOS name of "domain.com" and a DNS name of "domain-old.com." When users are added in the Windows UI, they are displayed in the format of domain\ComputerName. However, you notice in the error log that there was an attempt to add a computer account in the format of domain-old\ComputerName. (System Center 2012 R2 Data Protection Manager install fails and generates ID: 4323: "A member could not be added")
    Tried to find out my DNS name, but it is impossible because I don't have any domain installed and my machine is not connected to it. Some other blog (Install Oracle 11gR2 on Windows) advices to work with adding my computer account to some non-real windows domain (just for the purpose of resolving the network) as well and reinstall the database then. If I undestand it right I need minimum 2 machines for this. But I own just one, where the server is based and thought that is enough to run the database... no idea ..

  • Problem Multiple record navigation in oracle forms

    I retrieve multiple records using cursor fetch command in the select query i have given condition to retrieve details of employee no.
    For example if we are giving an input as empno:100 then it retrieves two records of same emp no(100).It displays 2/3 records in the task bar when i navigate using push buttons it displays an empty record in the interface provided.(ie 3/3 records).How to avoid third unknown record displaying in the interface.

    most likely the problem is during the population of the block using the query.
    i assume that you are creating one additional record after the last record from your query..
    so this must be either with the CREATE_RECORD or NEXT_RECORD problem in the loop.so you should check in the loop first if the record exists, then do CREATE_RECORD or NEXT_RECORD.

  • Navigation Problem in forms 10.1.2.0.2 !!!

    Hi All,
    when we create relation between master and child block then getting problem in navigation.
    i assume that you have form with two block with relation and data then execute query then
    start following step
    0) make sure you set required = true for first navigation item of child block
    1) you are in child block make some change on any item and make your cursor must not be on first navigation item.
    3) commit the form
    2) then click on master block and here make sure you are clicking on non current record.
    From
    Chirag Patel
    From
    Chirag Patel

    Thanks Frank,
    Yes Frank please follow the steps.
    this is error explanation :
    I have debug many times !!!
    actually it is not error but funny behaviour !!
    when you click on parent block on diffrent record then validataion trigger of first item of child block will fire. I do not why it is happening !!!
    I removed the validation trigger and did required=true for first navaigation item of child block then also it's behaving funny.
    This are the steps.
    1) create form with parent and child block and make relation ship
    2) insure that you put 2 record in parent and 2-2 recors in child for each parent record.
    3) insure that your first navigation item of child block has required property = true
    4) run your form fresh
    5) from parent bloc execute query ( I hope child block is populate some records)
    6) click on any record of child block and make changes
    7) then commit your form.
    now fun will start
    8) click on parent block on any record which has child records and non current record.
    9) then form should populate details for child instead of it behaves different as follows
    you will find FRM-40202 : Field must be entered
    your cussor will remian in child block;
    your record will not change in parent block.
    and child block will remail blank.
    by debugging I found that problem is coming from this code of <Clear_All_Master_Details> procedure
    -- Put cursor back where it started
    IF :System.Cursor_Item <> startitm THEN
    Go_Item(startitm);
    Check_Package_Failure;
    END IF;
    when I remove this line
    Go_Item(startitm);
    then my problem is solved
    But I do not know what is the other impact can be possible by removing this.
    Hello Frank
    I hope you will catch this error by this example.
    From
    Chirag Patel

  • Database navigation problems

    I have a problem with displaying records from my database where I wish to navigate through the records.
    I use a framset where I gather the search data in a form on the left side of the page and display the database results in a frame on the right hand side of the page.
    The website I have displays 1 record at a time in a table format. There's no problem getting records from the database - if I try to display 1 record on the page its Ok, if I disply X records on the page its fine - the problem comes where I display 1 record and then use hyperlinks to move to the next record in data set.
    The code is set so the navigation links only appear where there is more than 1 matching record so I know I'm not trying to call records that do not exist.
    The error only appears when I try to navigate through the records to display te 2nd record returned by any search, it appears to be something to do with the RecordCount.
    Any help appreciated.
    For Reference the next/prev record is adapated from here - http://tutorial20.easycfm.com/#
    The error is:
    [quote]
    Element RECORDCOUNT is undefined in GETDATABASESEARCHRESULT.
    The error occurred in *****/testquery.cfm: line 36
    34 : 
    35 : <CFSET end=Start + disp>
    36 : <CFIF start + disp GREATER THAN GetDatabaseSearchResult.RecordCount>
    37 :      <CFSET end=999>
    38 : <CFELSE>
    [/quote]
    The website code is:
    [quote]
    <!--- Start is the default starting row for the output.
          Disp determines how many records to display at a time --->
    <!--- Start displaying with record 1 if not specified via url --->
    <CFPARAM name="start" default="1" />
             <!--- Number of records to display on a page --->
    <CFPARAM name="disp" default="1" />
    <!--- Holds variables passed from form on prev page when this page is called.--->
    <CFPARAM Name="Form.Forename" Default="">
    <CFPARAM Name="Form.Surname" Default="">
    <CFPARAM Name="Form.Battalion" Default="">
    <HTML>
    <HEAD>
    </HEAD>
    <BODY>
    <!--- query the database table. Cache the result set for 15 minutes. --->
    <CFIF #Form.Battalion# IS "Sixth" >
    <CFQUERY NAME="GetDatabaseSearchResult" DATASOURCE="durhamli_durhamli"
             CACHEDWITHIN="#CreateTimeSpan(0,0,15,0)#">
        SELECT Surname,Forename, Pre1917ServiceNumber, Post1917ServiceNumber, Battalion, YearOfBirth, DateEnlisted, PlaceEnlisted,     DateOverseas, Notes
        FROM SixthDLI
    WHERE Forename LIKE '%#Form.Forename#%' AND Surname LIKE '%#Form.Surname#%'
    </CFQUERY>
    </CFIF>
    <CFSET end=Start + disp>
    <CFIF start + disp GREATER THAN GetDatabaseSearchResult.RecordCount>
         <CFSET end=999>
    <CFELSE>
        <CFSET end=disp>
    </CFIF>
    <!--- Output the range of records displayed on the page as well as the total
          number of records in the result set --->
    <CFOUTPUT query="GetDatabaseSearchResult" startrow="#start#" maxrows="#end#">
    <table border="2" cellpadding="5" cellspacing="2" width="90%" cols="5">
    <th>Surname</th>
    <th>Forename</th>
    <th>Pre1917 No.</th>
    <th>Post1917 No.</th>
    <th>Battalion</th>
    <tr>
    <td>
    #GetDatabaseSearchResult.Surname#
    </td>
    <td>
    #GetDatabaseSearchResult.Forename#
    </td>
    <td>
    #GetDatabaseSearchResult.Pre1917ServiceNumber#
    </td>
    <td>
    #GetDatabaseSearchResult.Post1917ServiceNumber#
    </td>
    <td>
    #GetDatabaseSearchResult.Battalion#   Battalion
    </td>
    </tr>
    <th>Year Born</th>
    <th>Date Enlisted</th>
    <th colspan="2">Place</th>
    <th>Posted Overseas</th>
    <tr>
    <td>
    #GetDatabaseSearchResult.YearOfBirth#
    </td>
    <td>
    #GetDatabaseSearchResult.DateEnlisted#
    </td>
    <td colspan="2">
    #GetDatabaseSearchResult.PlaceEnlisted#
    </td>
    <td>
    #GetDatabaseSearchResult.DateOverseas#
    </td>
    </tr>
    <th colspan="5" align="left">Notes</th>
    <tr>
    <td colspan="5">
    #GetDatabaseSearchResult.Notes#
    </td>
    <tr>
    </table>
    Record Number   :      #CurrentRow#   of   #GetDatabaseSearchResult.RecordCount#
    </CFOUTPUT>
    <!--- displays the navigation hyperlinks for the required recordset --->
    <CFOUTPUT>
        <table border="0" cellpadding="10">
            <tr>
                <!--- Display prev link --->
                    <CFIF start NOT EQUAL 1>
                        <CFIF start GTE disp>
                            <CFSET prev=disp />
                            <CFSET prevrec=start - disp />
                        <CFELSE>
                            <CFSET prev=start - 1 />
                            <CFSET prevrec=1 />
                        </CFIF>
                        <!--- only displays link if more than 1 record returned--->
                        <CFIF #GetDatabaseSearchResult.RecordCount# GT 1>
                        <td><font face="wingdings">ç</font> <a href="testquery.cfm?start=#prevrec#"> Previous #prev# record</a></td>
                        <CFELSE>
                        </CFIF>
                    </CFIF>
                    <!--- Display next link --->
                    <CFIF end LT GetDatabaseSearchResult.RecordCount>
                        <CFIF start + disp * 2 GTE GetDatabaseSearchResult.RecordCount>
                            <CFSET next=GetDatabaseSearchResult.RecordCount - start - disp + 1 />
                        <CFELSE>
                            <CFSET next=disp />
                        </CFIF>
                        <!--- only displays link if more than 1 record returned--->
                        <CFIF #GetDatabaseSearchResult.RecordCount# GT 1>
                        <a href="testquery.cfm?start=#Evaluate("start + disp")#">Next record</a> <font face="wingdings"></td>
                        <CFELSE>
                        </CFIF>
                   </cfif>
               </tr>
           </table>
        </CFOUTPUT>
    </BODY>
    </HTML>
    [/quote]

    Thanks, you've nailed it.
    I hadn't set a default parameter for form.battalion (although I presumed it would retain the parameter passed from the form to the query when I initially create the datbase query) and it now seems to work for now. It must clear the form variables every tim the page refreshes as it changes record.
    I'm not sure how it'll work when I add the 4 extra tables - 'Fifth', 'Seventh', 'Eigth' and 'Ninth' if it clears the value passed from the form each time the page refreshes I suspect it's going to default to the value set on the CFPARAM tag each time but I'll deal with that at the time.

  • Tab Page Navigation Problem???

    Hi All:
    I am facing problem with tab page. when I save some record at the last tab then it moves towards its previous tab page. May be navigation becomes wrong.Record is saved. What would be the solution? Can anyody tell me. Thanks
    Ali

    Just two wonders...:
    1) Are the blocks ordered in the Object Navigator ... as they appear in the tabs of your tab canvas...????
    2) Is there in the 'save trigger' or in other place (which take place in the save process) a "go_item(<itemname_of_the_previous_tab>)" or "go_block(<block_resides_in_the_previous_tab>)"...????
    Greetings....
    Sim

Maybe you are looking for

  • Replacement iphone(hardly one month old phone) is a new one or refurbished ?

    Replacement iphone(hardly one month old phone) is a new one or refurbished ? I am facing lot of issues with my iphone 3gs.Please i request you guys dont buy any apple products here.its waste.I bought my iphone one moth back when i use GPRS(internet )

  • Adobe Reader 8.1.1 will not download

    I am using Vista 32bit. Following is the message I receive: This program cannot display the web page Most likely causes: You are not connected to the Internet. The web site is encountering problems. There might be a typing error in the address. What

  • Needed steps for installing oracle 10R2 on windows server 2003

    Hi to All, Can anybody give me steps for how to install oracle 10R2 on windows 2003 server in production environment and what is the preinstallation task and postinstallation task. Thanks and Regards Mohd Khaja

  • A question regarding using Myriad Pro as a web font...

    Okay so this is a pretty straight forward question (I think)... I've been using sIFR to replace many of the typical web fonts on the sites I build since much like everyone else I'm sick of being restricted to using only certain fonts. Myriad Pro is o

  • Aperture Newbee - Just a few random questions.

    I'm thinking about buying a new macbook pro 17" and Aperture. I've played around with it at an apple store and its awsome in my opinion. My questions are, will a Canon S1 IS work with Aperture? My second question is can I import my iPhoto library in