What the **** is the matter with this update?!

Since updating my 3G iPhone after the 4G came out my phone freezes, drops calls and only has 1-2 bars regarding the strenght of the phone - I'm ready to lose it.
Does anyone from Apple read this message board and can provide some suggestions?

Anna Marie Donaldson wrote:
Does anyone from Apple read this message board and can provide some suggestions?
As already mentioned, and part of the Terms of Use:
Apple Employee—Employees of Apple who are not Discussion Hosts may have an Apple Employee text link that appears when they post. These Apple employees volunteer their time to assist with products for which they are familiar. Since they are answering questions outside of their normal responsibilities, they may not always be available to respond to questions.
Did you try to restore "as new iphone" without using the backup to get your settings and other data back? You'll have to set up Mail, Network and other apps again manually, but this will probably speed up your phone again, it did for some users in this forum.

Similar Messages

  • Trying to set up a linksys router but the cd says it works with OSX 10.6 and later. I am currently running the newest version of mountain lion.... what is the matter with this OSX   update needed?

    trying to set up a linksys router but the cd says it works with OSX 10.6 and later. I am currently running the newest version of mountain lion.... what is the matter with this OSX   update needed?

    Your install disk must look like this
    and not like this.
    Those gray disks are machine specific and will only work with model of Mac that they shipped with.

  • New IMac is crashing randomly because of "Panic Kernel Error." Now IMac startup disk is not visible and will not mount. What the story with this machine. Running 10.6.7

    New IMac is crashing randomly because of "Panic Kernel Error." Now IMac startup disk is not visible and will not mount. What the story with this machine. Running 10.6.7

    Almost certainly, some sort of hardware problem on your logic board. 
    Make an appointment and take it to your local Apple Store: http://www.apple.com/retail/geniusbar/

  • Whats the problem with this page

    hi,
    i have problem with this page
    page
    it loading the video but not showing any content related to
    the video.
    i use
    [code]
    var netCon:NetConnection = new NetConnection();
    netCon.connect(null);
    var netStr:NetStream = new NetStream(netCon);
    netStr.addEventListener(AsyncErrorEvent.ASYNC_ERROR,
    getError);
    var video:Video = new Video();
    video.attachNetStream(netStr);
    addChild(video);
    video.x=201;
    video.y=125;
    function getError(e:AsyncErrorEvent) {
    play_btn.addEventListener(MouseEvent.MOUSE_DOWN, playVideo);
    function playVideo(e:MouseEvent) {
    netStr.resume();
    removeEventListener(KeyboardEvent.KEY_DOWN, keyPressHandler
    this.addEventListener(Event.ENTER_FRAME, fileLoaded);
    var loaderBar:Sprite = new Sprite();
    addChild(loaderBar);
    function fileLoaded(e:Event) {
    var percent:Number = (netStr.bytesLoaded * 100 ) /
    netStr.bytesTotal;
    loaderBar.graphics.clear();
    loaderBar.graphics.beginFill(0xDE2C18);
    loaderBar.graphics.drawRect(205,378,percent * 4.32,5);
    loaderBar.graphics.endFill();
    if (percent==100) {
    this.removeEventListener(Event.ENTER_FRAME, fileLoaded);
    [/code]

    here is the full code
    and i have an error saying:
    ArgumentError: Error #2004: One of the parameters is
    invalid.
    at flash.display::Graphics/drawRect()
    at VIDEOPLAYER_fla::MainTimeline/fileLoaded()
    [code]
    import flash.display.Sprite;
    import flash.net.NetConnection;
    import flash.display.SimpleButton;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.media.Video;
    import flash.events.MouseEvent;
    import flash.events.KeyboardEvent;
    import flash.events.Event;
    import flash.display.Graphics;
    import flash.text.*;
    var netCon:NetConnection = new NetConnection();
    netCon.connect(null);
    var netStr:NetStream = new NetStream(netCon);
    netStr.addEventListener(AsyncErrorEvent.ASYNC_ERROR,
    getError);
    var URL:String =
    "/hakans/videos/BEDUK_AUTOMATIK00.flv?start=";
    var offset:uint = 1048576;
    var tamURL:String = URL + offset;
    trace(tamURL);
    var video:Video = new Video();
    video.attachNetStream(netStr);
    video.x=201;
    video.y=125;
    netCon = new NetConnection();
    netCon.addEventListener(NetStatusEvent.NET_STATUS,
    netStatusHandler);
    netCon.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    securityErrorHandler);
    function netStatusHandler(event:NetStatusEvent):void {
    switch (event.info.code) {
    case "NetConnection.Connect.Success":
    connectStream();
    break;
    case "NetStream.Play.StreamNotFound":
    trace("Unable to locate video: " + tamURL);
    break;
    function connectStream():void {
    netStr.addEventListener(NetStatusEvent.NET_STATUS,
    netStatusHandler);
    netStr.addEventListener(AsyncErrorEvent.ASYNC_ERROR,
    asyncErrorHandler);
    netStr.play(tamURL);
    addChild(video);
    function securityErrorHandler(event:SecurityErrorEvent):void
    trace("securityErrorHandler: " + event);
    function asyncErrorHandler(event:AsyncErrorEvent):void {
    // ignore AsyncErrorEvent events.
    function getError(e:AsyncErrorEvent) {
    var myTextBox:TextField = new TextField();
    var myText:String = "Bytes loaded";
    function TextWithImage()
    addChild(myTextBox);
    myTextBox.text = myText+netStr.bytesLoaded;
    /*--------------< Videoyu Durdurma, Oynatma ve Başa
    Alma >------------------*/
    stage.addEventListener( KeyboardEvent.KEY_DOWN,
    keyPressHandler );
    function keyPressHandler( e:KeyboardEvent ):void {
    // if the spaceBar is pressed then toggle video play/pause
    if( e.charCode == 32 ) {
    netStr.togglePause();
    play_btn.addEventListener(MouseEvent.MOUSE_DOWN, playVideo);
    function playVideo(e:MouseEvent) {
    netStr.resume();
    removeEventListener(KeyboardEvent.KEY_DOWN, keyPressHandler
    pause_btn.addEventListener(MouseEvent.MOUSE_DOWN,
    pauseVideo);
    function pauseVideo(e:MouseEvent) {
    netStr.pause();
    stop_btn.addEventListener(MouseEvent.MOUSE_DOWN, stopVideo);
    function stopVideo(e:MouseEvent) {
    netStr.pause();
    netStr.seek(0);
    fastforward_btn.addEventListener(MouseEvent.MOUSE_DOWN,doForward);
    function doForward(e:MouseEvent):void {
    var f:int = 1; //you can schange the skipping time here
    netStr.pause();
    netStr.seek(netStr.time + f);
    netStr.resume();
    rewind_btn.addEventListener(MouseEvent.MOUSE_DOWN,doRewind);
    function doRewind(e:MouseEvent):void{
    var x:int = 2;
    netStr.pause();
    netStr.seek(netStr.time - x);
    netStr.resume();
    fullscreen_btn.addEventListener(MouseEvent.MOUSE_DOWN,doFull);
    function doFull(e:MouseEvent):void{
    stage.displayState = StageDisplayState.FULL_SCREEN;
    /*--------------< Videoyu Durdurma, Oynatma ve Başa
    Alma / >------------------*/
    /*--------------< Video İçin Yükleme Bilgi
    Çubuğu >------------------*/
    var loaderBg:Sprite = new Sprite();
    loaderBg.graphics.beginFill(0xc78f8e);
    loaderBg.graphics.drawRect(205 , 378 , 430 , 5);
    loaderBg.graphics.endFill();
    addChild(loaderBg);
    this.addEventListener(Event.ENTER_FRAME, fileLoaded);
    var loaderBar:Sprite = new Sprite();
    addChild(loaderBar);
    function fileLoaded(e:Event) {
    var percent:Number = (netStr.bytesLoaded * 100 ) /
    netStr.bytesTotal;
    loaderBar.graphics.clear();
    loaderBar.graphics.beginFill(0xDE2C18);
    loaderBar.graphics.drawRect(205 , 378 , percent * 4.32 , 5);
    loaderBar.graphics.endFill();
    if (percent==100) {
    this.removeEventListener(Event.ENTER_FRAME, fileLoaded);
    /*--------------< Video İçin Yükleme Bilgi
    Çubuğu / >------------------*/
    /*--------------< Video Meta Bilgileri
    >------------------*/
    var metaObject:Object = new Object();
    netStr.client = metaObject;
    metaObject.onMetaData = getMetaInformation;
    var lengthOfVideo:Number = 0;
    function getMetaInformation(e:Object):void {
    lengthOfVideo = e.duration;
    trace("Genişlik :" + e.width);
    trace("Yükseklik :" + e.height);
    /*--------------< Video Meta Bilgileri /
    >------------------*/
    /*--------------< Videonun Durum Çubuğu
    >------------------*/
    //may cause problem part
    var GraphicsExample :Sprite = new Sprite();
    var size:uint = 10;
    var bgColor:uint = 0x999999;
    var borderColor:uint = 0x999999;
    var borderSize:uint = 0;
    var cornerRadius:uint = 9;
    var gutter:uint = 5;
    var dragBar:Sprite = new Sprite();
    var halfSize:uint = Math.round(size / 2);
    dragBar.graphics.beginFill(bgColor);
    dragBar.graphics.lineStyle(borderSize, borderColor);
    dragBar.graphics.drawCircle(halfSize, halfSize, halfSize);
    dragBar.graphics.endFill();
    dragBar.x=201;
    dragBar.y=376;
    addChild(dragBar);
    var drag:Boolean = false;
    this.addEventListener(Event.ENTER_FRAME, setDragBar);
    function setDragBar(e:Event) {
    if (!drag) {
    dragBar.x = ((netStr.time / lengthOfVideo) * 429) + 201;
    /*--------------< Videonun Durum Çubuğu /
    >------------------*/
    /*--------------< Videonun Kaydırma Çubuğu
    >------------------*/
    dragBar.addEventListener(MouseEvent.MOUSE_DOWN,
    startDragging);
    dragBar.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    dragBar.buttonMode = true;
    var rect:Rectangle = new Rectangle(205,378,429,0);
    function startDragging(e:MouseEvent) {
    drag = true;
    netStr.pause();
    dragBar.startDrag(false,rect);
    function stopDragging(e:MouseEvent) {
    dragBar.stopDrag();
    drag = false;
    netStr.resume();
    this.addEventListener(Event.ENTER_FRAME, reSetVideo);
    function reSetVideo(e:Event) {
    if (drag) {
    netStr.seek(Math.floor(((dragBar.x-201) / 429) *
    lengthOfVideo ));
    /*--------------< Videonun Kaydırma Çubuğu
    / >------------------*/
    netStr.addEventListener(NetStatusEvent.NET_STATUS,
    netStatusHandler1);
    function netStatusHandler1(e:NetStatusEvent):void
    switch (e.info.code)
    case "NetStream.Seek.InvalidTime":
    trace("You have seeked too far ahead, the video hasn't fully
    loaded yet");
    break;
    case "NetStream.Play.StreamNotFound":
    trace("Unable to locate video");
    break;
    /*--------------< Video Ses Kontrolü
    >------------------*/
    sound_btn.addEventListener(MouseEvent.MOUSE_DOWN, setSound);
    var checkSound:Boolean = true;
    var soundTrans:SoundTransform = new SoundTransform();
    function setSound(e:MouseEvent) {
    if (checkSound) {
    soundTrans.volume = 0;
    checkSound = false;
    } else {
    soundTrans.volume = 1;
    checkSound =true;
    netStr.soundTransform = soundTrans;
    /*--------------< Video Ses Kontrolü /
    >------------------*/
    [/code]

  • What is da **CENSORED** matter with this compa

    This MP3 player was not QAed. It stopped working after a few times and none of the instructions to unfreeze it work either. The recovery tool does not even recognize the player. A total waste of time. This is what happens when you hire a lot of QA contractors on the cheap from who knows where, who don't know what they are doing.
    And the hoops you have to jump through to get a email through to Creative are unreal.
    I've registered the product (the serial number is like 30 digits, enough for every molecule in the solar system. Is this really necessary?)
    But the registration has nothing to do with getting support? So what the **CENSORED** good was that anyway? It just sends me in loops when I'm trying to send out an email to get some support and after reading the messages here I will probably be screwed if I do send it out anyway
    This product should never have been shipped. Honestly, it should never gotten out of alpha. Whoever was in charge of the product should be fired for wasting a lot of hard working peoples time! There's a special place in hell reserved for these kind of people and they won't be getten 72 black eyed virgins!
    Message Edited by kinkajou on 05-3-2008 02:32 AMMessage Edited by kinkajou on 05-3-2008 02:34 AMMessage Edited by kinkajou on 05-3-2008 02:5 AMMessage Edited by Catherina-CL on 05-3-2008 :05 AMMessage Edited by kinkajou on 05-3-2008 03:24 AM

    kinkajou,
    I edited the subject to remove the profanity, do not edit it again to put it back in. Keep your language clean in future.
    Did you get send an e-mail to Customer Support? If so, it would be best to stick with that for now so they can advise and hopefully resolve this for you.
    See how you get on with a reset as well, and try the Recovery Mode if you haven't already. What happens when you try that, do you get the recovery screen? Try the Clean Up and see if it gets past the rebuilding screen then, otherwise you could try the format in case there are any corrupt files on the player that are causing this.
    Cat

  • Whats the Problem with this Company?

    Most Company's want to keep there Customers happy it seems I am disappointed in everything except the reception is good. I bought a Smart phone and if you go over your limit it cost to use it.. Man my bill is higher than the Twin Towers used to be... And still I have to pay if I go over a specific amount for sharing photo's what is this? yu say its unlimited everything then they change that and say something else it sounds to me like Greed has gone to Verizon's account with all of us.. I am ashamed this is happening to all of us.. I know people who can do anything without being charged with other company's why is it this one doesn't care about our Wallets and be so happy that they have customers that actually pay there bill each month and give us a break... Shame.. Verizon.. I do love you but don't like your plans.. They are not ethical. To us.. or For us.. You need to change your plans and stop changing everything each month to something else when Your told you have unlimited everything then that is what it should be.. Now you have gone to far...

    http://m.digitaltrends.com/opinion/opinion-its-a-trap-beware-carriers-new-unlimited-talk-and-text-plans/   This site is one of many that explains how the cash cows of "talk & texting" has declined.  And it mentions family usage as you are doing.  Personally I don't talk much on the phone, I don't text much or for that matter use a load of data. So I am basically overpaying for everything. But I like knowing I have it available if I need it.  I love taking photos of the places my wife and I travel to. I upload to Facebook every step of the trip, so our friends and family have the pictures. I use a photo upload to Walgreens to print them out in hard copy for our photo albums, I also burn them to cd/dvd so I just don't use talking that much. Those texts can add up however. I use around 600 to my friends. But only from me and not my wife.  The emergency phone also very rarely sends texts or makes calls so no big deal there. But my wife uses her phone for calls, and that Netflix, You Tube and TW Cable TV so she loves data. But ours is unlimited not tiered or metered. She is happy that is all that matters.

  • What The Deal With This Issue!

    Ive recorded in Protools and currently using Logic 8 and my results are the same. My mixes are pretty good. But my issue is, my final song file is pretty small according to level meters.
    I have friends using fruity loops and nuendo and their mixes are sup par at best but their final file is way greater than mine when comparing them meter wise. A few of my friends bounce straight out of their DAW with no further processing and the song is way greater than mine as far as volume.
    Ive even tried to use some of Logics mastering features but cant seem to achieve greater volume. Its like my final mix is being smothered or something. In the bounce dialog box, normalize is unchecked! This has been the same for me when using Protools and now Logic.
    A few of my friends dont have clue when it comes to mixing and others just do a quick bounce down with NO MIXING for demo purposes but yet when they bounce the song down, the song file is nice and up to zero when mine sounds better but flirting around -7dbs. I dont get this!

    mine sounds better but flirting around -7dbs
    That's the point.......
    Two friend of mine produce dance music and remixes and they usually mix and master at -12dB (with Duende and TC Electronic hardware...).
    I've used Nuendo and Cubase too but I dislike their sound.
    I think that the pushing part must be reserved to the mastering step so I'd be not so worry about the -7dB.
    Just my 2 cents.
    cheers
    rob

  • Whats the problem with this code?

    import javax.swing.JOptionPane;
    public class change{
      int coins[] = {1,5,10,25,50};
      int change=0;
      public void backtracking(coins,change){
        int b=0;
        for(int i=0; i<=4; i++){
          if (coins[i] <= change){
            b = max(b, coins[i]+backtracking(i, change - coins));
    System.out.println("Output: "+b);
    public static void main(){
    int input = JOptionPane.showInputDialog("Amountof the change? ");
    backtracking(coins, input);

    Here's a few, for starters
    import javax.swing.JOptionPane;
    public class change{
    //class names should start with capital letters
      int coins[] = {1,5,10,25,50};
      int change=0;
      public void backtracking(coins,change){
    //this is a method signature, needs type identifiers etc, something like public void backtracking(int[] anyIntArray,int anyInt)
        int b=0;
        for(int i=0; i<=4; i++){
    //here, 4 is a magic number, if you mean <= all the elements of coins[], use < coins.length
          if (coins[i] <= change){
    //coins[i] will never be less then change(which is 0)
            b = max(b, coins[i]+backtracking(i, change - coins));
    //there is no method max declared anywhere
    System.out.println("Output: "+b);
    public static void main(){
    //main method signature is incorrect, will compile, but will error
    int input = JOptionPane.showInputDialog("Amountof the change? ");
    //you're trying to put a string into an int
    backtracking(coins, input);
    //you have not created an instance of class Change, to use this method

  • Problem to establish connection what the wrong with this

    dears
    i want to access the oracle database without ODBC bridge.
    i dowload the thin driver from Oracle site.
    1.ojdbc14.jar is in my claspath.
    2.actually i do the following i have oracle 8.0 for winnt.
    go to system manager and create user "administrator" after this give grants dba to that user.
    now my code is as under
    import java.sql.*;
    public class LoadDriveroracleuser
    public Connection conn=null;
    public LoadDriveroracleuser()
    try{
    Class.forName("oracle.jdbc.driver.OracleDriver");
    conn=DriverManager.getConnection("jdbc:oracle:thin:@host:1521:database","administrator","allah");   
    }catch(Exception ex){
    MyOptionPane.MyErrorMessage(null,ex.getMessage());
    System.exit(0);
    }//end of constructor
    }//end of classthe exception is occur that// network adapter not established the connection.
    actually i am not knowing that host:1521:database how set these .
    i have standalone application.not using the server.
    plz guide me i am very thankful to u

    If Oracle is set up properly he should be able to
    connect using JDBC without having the client installed
    or any TNS names set. The JDBC driver alone is
    sufficient.
    It wouldn't be a bad idea to follow this suggestion,
    but it's not necessary for JDBC's sake.
    %Yeah of course it's not necessary for JDBC - it would just allow him to ascertain whether SQLplus works.
    Somehow i've a sneaky feeling that this 'database' that's being used to connect is just a marker/plain english instead of the actual name of the database :)

  • Whats the matter with Youtube

    Why on earth does HTML code from Youtube not show correctly in Muse...? Any good suggestions?

    I have tried both inserting the video-ID in Muse's own Youtube widget, I have tried inserting HTML code from Youtube directly in Muse, and I have tried a 3rd. part widget, also with HTML code. All I get is a black rectangle with an error message - in Danish even though I run Muse with English language. The error message says: Blocked accessory (meaning content I guess??)

  • Whats the problem with this query?

    Its doing huge sort operations and is throwing the following all the time.
    ORA-1652: unable to extend temp segment by 256 in tablespace
    Unable to figure out if I should be increasing the sort area size. I initially increased the TEMP space by 50% to 3 G and it still fails. Any recommendations ?
    SELECT distinct b.*,
    f.carrier_id
    FROM po a
    JOIN (SELECT c.asn_shipment_id,
    c.po_cd,
    c.po_ln,
    c.ve_cd,
    c.itm_cd,
    d.shipped_date,
    c.qty_shipped,
    d.transport_id
    FROM po_asn_line_interface c
    JOIN po_asn_interface d
    ON to_char (c.asn_shipment_id) = to_char (d.asn_shipment_id)
    WHERE c.stat_desc = 'ASN header invalid.'
    AND d.stat_desc = 'Single vendor error: 1User-Defined Exception'
    AND EXISTS (SELECT 1
    FROM po_asn_line_interface e
    WHERE c.po_cd <> e.po_cd
    AND to_char(c.asn_shipment_id) = to_char(e.asn_shipment_id))) b
    ON to_char (a.po_cd) = to_char (b.po_cd)
    JOIN po_ln f
    ON a.po_cd = f.po_cd
    AND f.ln# = b.po_ln
    WHERE a.stat_cd = 'O'
    AND NOT EXISTS (SELECT 1
    FROM po_ln$actn_hst e
    WHERE e.po_cd = b.po_cd
    AND e.ln# = b.po_ln
    AND po_actn_tp_cd in ('SVB', 'RCV'))

    Hi,
    The types of SQL statements that can cause database sorts to occur include the following:
    * ORDER BY
    * GROUP BY
    * SELECT DISTINCT
    * UNION
    * INTERSECT
    * MINUS
    * ANALYZE
    * CREATE INDEX
    * Joins between tables on columns that are not indexed
    Making sure that all foreign key columns are indexed will also help reduce sorting when tables are joined via primary and foreign key columns. See also if you can avoid use DISTINCT clause in your SQL statement.
    Cheers

  • What is the matter with 3.1????????!

    Since the update, my battery is sooooooooo low! Please contact me, I can't use my iPhone as I should be! What is the matter with this update??????

    ve the same problem...
    watch this link
    http://www.theiphoneblog.com/2009/09/20/apple-seeking-info-iphone-31-users-repor ting-poor-battery-life/
    ive switched off 3G, WLAN, Bluetooth... now its fine

  • What is the matter with the framerate on Tiger?

    I have dual 2.7 and plenty of Ram and this thing and have 10.4.2 installed. iChat AV is supposed to give me 30 fps at least in video preview. I don't mind the videochats, it is due to bandwidth limits, but in video preview, there is no bandwidth, still I don't get 30 fps video. The picture is definitely around 15 fps, it's not smooth like 30 fps. When I try to record video in iMovie, it's the same. Never 30 fps. Is this about Tiger? I never used iSight with Panther. Or is it about quicktime 7? What's the matter with this?

    Here are a couple of ideas, iBug.
    iSight will not deliver the full 30 fps frame rate without adequate light. See the Improving Your iSight Picture FAQ for more on this.
    QuickTime, a good 10.4.2 Combo Update, and several other common issues can contribute to problems. If you have not already seen this, try Help for iChat AV 3 Problems for trouble shooting suggestions and some things you can try.

  • What's the go with this latest update. Half my apps don't work and the iPad runs slower? How do I go back to the old operating system?

    What's the go with this latest update. Half my apps don't work and the iPad runs slower? How do I go back to the old operating system?

    Make sure your apps are updated.  You might try Settings > iTunes & App Store > Automatic Downloads - Updates = "On".
    You cannot go back to an old operating system.

  • HT1222 Last time I did an update...I lost most of my music...thousands of songs and had to reinstall them!!!!  I am scared as **** to do another update!!  I have radio shows to do and can't afford to spend the time with this.  Help anyone?

    Last time I did an update...I lost most of my music...thousands of songs and had to reinstall them!!!!  I am scared as **** to do another update!!  I have radio shows to do and can't afford to spend the time with this.  Help anyone?

    A bit late for this advice now, but hopefully you'll know what to do next time.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

Maybe you are looking for

  • Can I return my MacBook Air past the return date?

    Hi, I have a question that I've been googling but I haven't been able to find an answer to anywhere. Can I return a MacBook Air past the return date to an Apple store if it is still in shrink-wrap and I have a receipt? Thanks.

  • Supply function in webdynpro for abap

    Hi ,         I have tree structure as below. 1.      Node A                1.a      Node B                    1.a.i    Node C         I have declared method 'Method_A' as supply function for Node A.similarly         I have declared method 'Method_B'

  • Change content of default.aspx for subsites using Powershell

    Hi. I need to update the content of the default.aspx of 60+ subsites in a site Collection. I am able to loop all subsites and get the corresponding default.aspx files using a PowerShell snippet like: $site = Get-SPSite -WebApplication https://mysite.

  • Can we connect and access SAP database using db adapter?

    Hi, I need couple of details: 1) Can we connect to SAP database using db adapter and run select query to extract data from the SAP database tables? 2) Where can I download SAP adapter? How to install it? and how to plug that in to the JDev? Cheers

  • Running System commands using Runtime.exec()

    I'm trying to run an example from "The Java Programming Language" book by Arnold, Gosling and Holmes. I'm trying to run a system level command and get the results. The code looks like: public static String[] runCommand(String cmd) { String[] outputDa