Application crashed and details about application crash are mentioned below?

Problem signature:
  Problem Event Name: APPCRASH
  Application Name: CaptureScreen.exe
  Application Version: 1.0.5514.34017
  Application Timestamp: 54d3783c
  Fault Module Name: unknown
  Fault Module Version: 0.0.0.0
  Fault Module Timestamp: 00000000
  Exception Code: c0000005
  Exception Offset: 003f1560
  OS Version: 6.1.7601.2.1.0.256.1
  Locale ID: 1033

source code 
Imports WMEncoderLib
Imports WMPREVIEWLib
Imports System.Diagnostics.Process
Imports System.IO
Imports Microsoft.Win32
Public Class Form1
    Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
    Public Sub New()
        MyBase.New()
        'This call is required by the Windows Form Designer.
        InitializeComponent()
        'Add any initialization after the InitializeComponent() call
    End Sub
    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    Friend WithEvents BtnStart As System.Windows.Forms.PictureBox
    Friend WithEvents BtnStop As System.Windows.Forms.PictureBox
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Timer1 As System.Windows.Forms.Timer
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    Friend WithEvents Button1 As System.Windows.Forms.Button
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
        Me.Button1 = New System.Windows.Forms.Button()
        Me.BtnStart = New System.Windows.Forms.PictureBox()
        Me.BtnStop = New System.Windows.Forms.PictureBox()
        Me.Label1 = New System.Windows.Forms.Label()
        Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
        CType(Me.BtnStart, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.BtnStop, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        'Button1
        Me.Button1.Location = New System.Drawing.Point(22, 167)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(216, 23)
        Me.Button1.TabIndex = 1
        Me.Button1.Text = "Write To file and Close application"
        Me.Button1.Visible = False
        'BtnStart
        Me.BtnStart.Image = CType(resources.GetObject("BtnStart.Image"), System.Drawing.Image)
        Me.BtnStart.Location = New System.Drawing.Point(80, 46)
        Me.BtnStart.Name = "BtnStart"
        Me.BtnStart.Size = New System.Drawing.Size(109, 103)
        Me.BtnStart.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
        Me.BtnStart.TabIndex = 2
        Me.BtnStart.TabStop = False
        'BtnStop
        Me.BtnStop.Image = CType(resources.GetObject("BtnStop.Image"), System.Drawing.Image)
        Me.BtnStop.Location = New System.Drawing.Point(80, 46)
        Me.BtnStop.Name = "BtnStop"
        Me.BtnStop.Size = New System.Drawing.Size(109, 103)
        Me.BtnStop.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
        Me.BtnStop.TabIndex = 4
        Me.BtnStop.TabStop = False
        'Label1
        Me.Label1.AutoSize = True
        Me.Label1.Font = New System.Drawing.Font("Times New Roman", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label1.ForeColor = System.Drawing.Color.DarkGoldenrod
        Me.Label1.Location = New System.Drawing.Point(27, 9)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(253, 24)
        Me.Label1.TabIndex = 5
        Me.Label1.Text = "Remote Monitoring System"
        'Timer1
        Me.Timer1.Interval = 36000
        'Form1
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
        Me.ClientSize = New System.Drawing.Size(292, 159)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.BtnStart)
        Me.Controls.Add(Me.Button1)
        Me.Controls.Add(Me.BtnStop)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
        Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
        Me.MaximizeBox = False
        Me.Name = "Form1"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "STORE"
        CType(Me.BtnStart, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.BtnStop, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()
    End Sub
#End Region
    Dim Encoder As WMEncoder
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As EventArgs) Handles MyBase.Load
        Try
            For Each clsProcess As Process In Process.GetProcesses()
                If clsProcess.ProcessName.StartsWith("x-lite") Then
                    BtnStop.Enabled = False
                    Record()
                    Timer1.Enabled = True
                End If
            Next
        Catch ex As Exception
            MessageBox.Show(ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            Application.Exit()
        End Try
    End Sub
    Private Sub Record()
        Dim usernameloggedin As String
        usernameloggedin = Environment.UserName.ToString()
        Encoder = New WMEncoder
        ' Retrieve the source group collection and add a source group. 
        Dim SrcGrp As IWMEncSourceGroup2
        Dim SrcGrpColl As IWMEncSourceGroupCollection
        SrcGrpColl = Encoder.SourceGroupCollection
        SrcGrp = SrcGrpColl.Add("SG_1")
        ' Add a video and audio source to the source group.
        Dim SrcVid As IWMEncVideoSource2
        Dim SrcAud As IWMEncAudioSource
        SrcVid = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_VIDEO)
        SrcAud = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_AUDIO)
        ' Identify the source files to encode.
        SrcVid.SetInput("ScreenCap://ScreenCapture1")
        SrcAud.SetInput("Device://Default_Audio_Device")
        ' Choose a profile from the collection.
        Dim ProColl As IWMEncProfileCollection
        Dim Pro As IWMEncProfile
        Dim i As Integer
        Dim lLength As Long
        ProColl = Encoder.ProfileCollection
        lLength = ProColl.Count
        'For i = 0 To lLength - 1
        '    Console.WriteLine(ProColl.Item(i).Name)
        'Next
        For i = 0 To lLength - 1
            Pro = ProColl.Item(i)
            If Pro.Name = "Windows Media Video 8 for Local Area Network (384 Kbps)" Then
                'Windows Media Video 8 for Broadband (NTSC, 700 Kbps)
                'kWindows Media Video 8 for Local Area Network (384 Kbps)
                SrcGrp.Profile = Pro
                Exit For
            End If
        Next
        ' Fill in the description object members.
        Dim Descr As IWMEncDisplayInfo
        Descr = Encoder.DisplayInfo
        Descr.Author = "Armoghan Asif"
        Descr.Copyright = "Copyright information"
        Descr.Description = ""
        Descr.Rating = "Rating information"
        Descr.Title = "Keep Your Coding Screen In Middle"
        ' Add an attribute to the collection.
        Dim Attr As IWMEncAttributes
        Attr = Encoder.Attributes
        Attr.Add("URL", "google.co.in")
        ' Specify a file object in which to save encoded content.
        Dim File1 As IWMEncFile
        File1 = Encoder.File
        Dim pathdfld As String
        '  pathdfld = "\\192.168.20.153\C\RECORDING\"
        pathdfld = "C:\RECORDING\"
        Dim fname, todaysdate As String
        fname = usernameloggedin
        todaysdate = System.DateTime.Now.Day.ToString() + System.DateTime.Now.Month.ToString() + System.DateTime.Now.Year.ToString()
        pathdfld += todaysdate
        If Directory.Exists(pathdfld) Then
            Dim cntfil As System.Collections.ObjectModel.ReadOnlyCollection(Of String)
            cntfil = My.Computer.FileSystem.GetFiles(pathdfld)
            Dim cnt As Int32 = CStr(cntfil.Count)
            cnt += 1
            My.Computer.FileSystem.CreateDirectory(pathdfld)
            File1.LocalFileName = pathdfld + "\" + fname + cnt.ToString() + ".mp4"
        Else
            My.Computer.FileSystem.CreateDirectory(pathdfld)
            'System.IO.Directory.CreateDirectory(pathdfld)
            File1.LocalFileName = pathdfld + "\" + fname + "1" + ".mp4"
        End If
        ' Crop 2 pixels from each edge of the video image.
        SrcVid.CroppingBottomMargin = 0
        SrcVid.CroppingTopMargin = 0
        SrcVid.CroppingLeftMargin = 0
        SrcVid.CroppingRightMargin = 0
        ' Start the encoding process.
        Encoder.Start()
        BtnStart.Visible = False
        BtnStop.Visible = True
        '   End If
    End Sub
    Private Sub StartRecording()
        Try
            ' Create a WMEncoder object.
            Dim usernameloggedin As String
            usernameloggedin = Environment.UserName.ToString()
            Encoder = New WMEncoder
            ' Retrieve the source group collection and add a source group. 
            Dim SrcGrp As IWMEncSourceGroup2
            Dim SrcGrpColl As IWMEncSourceGroupCollection
            SrcGrpColl = Encoder.SourceGroupCollection
            SrcGrp = SrcGrpColl.Add("SG_1")
            ' Add a video and audio source to the source group.
            Dim SrcVid As IWMEncVideoSource2
            Dim SrcAud As IWMEncAudioSource
            SrcVid = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_VIDEO)
            SrcAud = SrcGrp.AddSource(WMENC_SOURCE_TYPE.WMENC_AUDIO)
            ' Identify the source files to encode.
            SrcVid.SetInput("ScreenCap://ScreenCapture1")
            SrcAud.SetInput("Device://Default_Audio_Device")
            ' Choose a profile from the collection.
            Dim ProColl As IWMEncProfileCollection
            Dim Pro As IWMEncProfile
            Dim i As Integer
            Dim lLength As Long
            ProColl = Encoder.ProfileCollection
            lLength = ProColl.Count
            'For i = 0 To lLength - 1
            '    Console.WriteLine(ProColl.Item(i).Name)
            'Next
            For i = 0 To lLength - 1
                Pro = ProColl.Item(i)
                If Pro.Name = "Windows Media Video 8 for Local Area Network (384 Kbps)" Then
                    SrcGrp.Profile = Pro
                    Exit For
                End If
            Next
            ' Fill in the description object members.
            Dim Descr As IWMEncDisplayInfo
            Descr = Encoder.DisplayInfo
            Descr.Author = "Armoghan Asif"
            Descr.Copyright = "Copyright information"
            Descr.Description = "Text description of encoded content"
            Descr.Rating = "Rating information"
            Descr.Title = "Title of encoded content"
            ' Add an attribute to the collection.
            Dim Attr As IWMEncAttributes
            Attr = Encoder.Attributes
            Attr.Add("URL", "www.adnare.com")
            ' Specify a file object in which to save encoded content.
            Dim File1 As IWMEncFile
            File1 = Encoder.File
            Dim pathdfld As String
            pathdfld = "\\192.168.20.153\C:\RECORDING\"
            Dim fname As String
            fname = usernameloggedin + System.DateTime.Now.Day.ToString() + System.DateTime.Now.Month.ToString() + System.DateTime.Now.Year.ToString()
            If File.Exists(pathdfld) Then
                File1.LocalFileName = pathdfld + fname + ".3gp"
                'File1.LocalFileName = "\\192.168.20.33\Recording\" + fname + ".3gp"
            Else
                My.Computer.FileSystem.CreateDirectory(pathdfld)
                File1.LocalFileName = pathdfld + fname + ".3gp"
                'File1.LocalFileName = "\\192.168.20.33\Recording\" + fname + ".3gp"
                'File1.LocalFileName = "\\192.168.2.210\recording\" + fname + ".3gp"
            End If
            ' Crop 2 pixels from each edge of the video image.
            SrcVid.CroppingBottomMargin = 25
            SrcVid.CroppingTopMargin = 25
            SrcVid.CroppingLeftMargin = 25
            SrcVid.CroppingRightMargin = 25
            ' Start the encoding process.
            Encoder.Start()
            BtnStart.Visible = False
            BtnStop.Visible = True
        Catch ex As Exception
            MessageBox.Show(ex.Message.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub
    Private Sub stopRecording()
        If Encoder.RunState Then
            Encoder.Stop()
            Application.Exit()
        End If
    End Sub
    Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
        Try
            If Timer1.Interval = 32400000 Then
                stopRecording()
            End If
        Catch ex As Exception
            MessageBox.Show(ex.Message.ToString(), "Exeception", MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub
End Class
    

Similar Messages

  • Check details about which products are installed in the Oracle Home

    I cheked one PDF: <epm-tips-issue 73-102>
    This command should return with details but giving some errors-
    1)
    opatch lsinventory -oh /scratch/aime1/work/Oracle/Middleware/EPMSystem11R1 -jre /scratch/
    aime1/work/Oracle/Middleware/jdk160_11
    2)
    opatch lsinventory –detail -oh /scratch/aime1/work/Oracle/Middleware/EPMSystem11R1 -jre /
    scratch/aime1/work/Oracle/Middleware/jdk160_11
    Please suggest if i am making mistake as i am using as it is (not making any alteration>
    Please suggest any other better process if possible
    Regards
    Kumar

    What errors are you getting, I take it you have updated the Oracle home and JRE location to match your environment.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Need details about Toshiba 15.4" Intel Duo Core 2 T5800

    Can anyone give me any information/review on this computer. I found it in a FuturShop store for 999.99$.
    However I can't seem to find any information about it online anywhere.
    I was told by a friend that it's a new special edition laptop or something. I need a tough computer as I do a lot of traveling and I will be using it for photos, music, videos, home financing, internet, excel, word, etc. Some games but not a main concern.
    Any info on the webcam, DVD burning capabilities, and expandibility would be appreciated.
    Below are some of the specs. I'm not too knowledgeable on computers so I hope I've given enough relevant info. Thanks in advance.
    4GB DDR2
    320GB Hard Drive
    HELP

    Well buddy, the most information and details about all actual Toshiba notebooks can be found on the Toshiba European page.
    http://eu.computers.toshiba-europe.com
    Here you should search in Laptops area

  • Please tell me details about RTM system

    Hi friends this is shalini shaw
       I have to use RTM legacy system is the sender and MRP system is the receiver how to map these two.
    I don't know the functionality of RTM system & MRP system.
    please tell me deatiled functionality of these two
    advance  thanks
    with cheers
    shalini shaw

    this seems like asking Mr. X from company Y about internal details of Company Z to which you belong to / work for
    fun part apart, can see from your number of posts that you are new here. Note that RTM legacy system and MRP legacy systems you are mentioning may be the internal systems of your client / your company and the rest of the world would not be knowing what R T M & M R P stands for.

  • My Bridge CC opens in a locked mode - I cannot make any changes (dump cache) - it says "other instances of Adobe Application Manager are running, which must be closed." I have to force quit Bridge to get out of it. I tried to uninstall Bridge and re-insta

    My Bridge CC opens in a locked mode - I cannot make any changes (dump cache) - it says "other instances of Adobe Application Manager are running, which must be closed." I have to force quit Bridge to get out of it. I tried to uninstall Bridge and re-install it but it did the same thing. Any ideas where to go next?
    The fact that I uninstalled Bridge and reloaded it has me concerned as to what to do next.?

    You need to force quit all other (real or fake) instances of the Application Manager.  Instructions differ between Mac or Win.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Is Distributed Transaction Coordinator services of the application role are required by SQL Server 2012 for clustering and support of SharePoint 2013.

    All I want to know is if Distributed Transaction Coordinator services of the application role are required by SQL Server 2012 for clustering and support of SharePoint 2013.
    I have been planning and deploying my companies first Windows Server 2012/SQL Server 2012 Always On cluster and Always On Availability Groups Multi-Subnet cluster and instances for SharePoint 2013, and I will be brutally honest, the documentation on either
    the MSDN and TechNet leave alot to be desired. Continually finding links in the documentation will take me from a Windows 2012 reference to a page talking about Windows Server 2008 or R2, The differences of which there are so many when it comes to configurations,
    settings, roles, services when working with SQL Server 2012. I have been confused, frustrated, screaming mad, with all the misdirection in this documentation.  The documentation takes me windows 2008 R2 which is different than 2012!
    Tired and trying to pick myself up off the floor!
    Greg
    Gman

    In general, DTC is not required for SQL 2012.  But, since you are asking specifically about SharePoint, it would be better to ask in a SharePoint forum.  They would be more likely to know those situations where FTC might be needed by SharePoint. 
    .:|:.:|:. tim

  • Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Kindly inform any email id or toll free number to contact apple for your below answer, Mr.King_Penguin
    About receiving my credit card being debited for Free App Store Application downloads,
    It should be within a few days, but it might vary a bit by bank/provider :
    I am in India, if the bank don't refunds , what to do?
    Rajagopal.pngr :-  It is only a holding charge, it is not a permanent charge. If it isn't refunded within a few days or so (and it quite possibly won't be over a weekend) then you can query the charge with Apple.

  • I on os x 10.7 and I'm going to upgrade to 10.8 installed messages already do i have to uninstall and what about my mac os x 10.7 applications

    I on os x 10.7 and I'm going to upgrade to 10.8 installed messages already do i have to uninstall and what about my mac os x 10.7 applications. Like word and minecraft What happens to them?

    Not until the day that 10.8 is released will anyone know the details but it's doubtful you will have to uninstall Messages. Native Mac OS X applications that run on v10.7 shouldn't be a problem wtih 10.8 but again, we won't know until Mountain Lion is released.

  • I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to

    I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to it. I've checked the obvious things, changed the fuse, tried different cables, poked paperclips in reset holes, but nothing doing. I wonder if there is anyone who knows what might be wrong. I was hoping to get some of its content transferred soon, but I'm guessing that can't be done if it can't be started up. Many thanks, if you can help

    Hello,
    >It's as though no power is getting to it.
    Would it be correct to assume that no sounds at all can be heard? Also, no lights, not even green or amber at the power button?
    >unfortunately had a power cut.
    Was it possibly a power cut in connection with a thunderstorm? Any other evidence of higher than normal voltages (light bulbs, et cetera)? Has the line voltage been checked (measured with an appropriate voltmeter/multimeter)?
    If necessary, it would be possible to remove the hard drive, and then connect it to an external IDE/ATA to USB adapter (example below). That way you could gain access to files on the hard disk from another computer.
    http://www.newertech.com/products/usb3_universaldriveadap.php
    Jan

  • My computer crashed and all of my songs are gone. How do i get them back?

    my computer crashed and all of my songs are gone. How do i get them back on my new computer?

    See Recover your iTunes library from your iPod or iOS device.
    (Even if you don't have one a couple of the tips apply.)
    tt2

  • PS CS4 64-bit (in Web Premium CS4) on Win 7 PC.  I did a duplicate file check on my hdd and deleted dup files. Now I get "Some of the application components are missing from the Application directory, Please reinstall.."

    PS CS4 64-bit (in Web Premium CS4) on Win 7 PC.  I did a duplicate file check on my hdd and deleted dup files. Now when I try to run PS 64-bit I get "Some of the application components are missing from the Application directory, Please reinstall the application." When I do this, it seems to install correctly until the very end, then it says "Installation Complete With Errors", and when I try to run I get the same 'component missing message'. What can I do? PS 32 bit runs fine. Some of the other applications ib Web Premium say the shortcut has been changed or removed. I appreciate your help...Thank you

    Best advice I can think of is to uninstall and run the Clean Script from here.
    Adobe - Adobe CS4 Clean Script

  • Pages 4.3 (332MB) and Pages 5.0 (455MB) are both installed on my macbook, can I delete Pages 4.3 from my application folder?

    Pages 4.3 (332MB) and Pages 5.0 (455MB) are both installed on my macbook, can I delete Pages 4.3 from my application folder?
    I recently (after upgrading to Mavericks) installed Pages 5.0 (iWorks ’09 with Pages 4.3 was already installed on my Macbook). When I try to open a pages document, I sometimes get the message 'you need a newer version of Pages to open this document.'  When I ctrl-click the pages document and select the program Pages 5.0, the document opens in Pages '05. Other Pages documents open in Pages 4.3. How do I select Pages 5.0 as default program to open my documents? And how do I do that, since pages preferences do not give that possibility? And can I delete pages 4.3 after making pages '05 the default. Or is there another way to solve this?
    kind regards, Sadrach

    Using Get Info to change all documents to open with Pages 4.3 doesn't work. It will work on individual files, but that could be a lot of files to reset.
    This is what works for me. After I installed the new iWork updates I created a folder on an external drive & named it "other applications." I then moved the new iWork apps to this folder & renamed the applications Keynote 6, Pages 5 & Numbers 3. I have icons for two versions of Pages & Numbers (I rarely use Keynote) in my Dock. Even with two versions of Pages & Numbers running, double-clicking an existing file opens in Pages 4.3 or Numbers 2.3. This should also keep the Mac App Store from nagging you to update. Others have renamed the '09 iWork apps & set them as default.

  • I have connection problems between the mini ipad and my powerbook g4, you are not allowed to see or share applications.

    I have connection problems between the mini ipad and my powerbook g4, you are not allowed to see or share applications.

    That is not possible.

  • HT204053 i just brought new i phone 5 yesterday and now i can see all paid applications and i dont use or have credit card also now how i can buy applications which are important for me? can i buy them online? or use debit card

    i just brought new i phone 5 yesterday and now i can see all paid applications and i dont use or have credit card also now how i can buy applications which are important for me? can i buy them online? or use debit card and trust me all my friends are regretting buying phone because of this problem.Kindly help.Cant it can be deducted from our mobile charges?i would be much easier then

    You can buy apps using iTunes Gift cards without needing to register your debit card.
    http://store.apple.com/us/personalize/itunes

  • I upgraded my Iphone 4 to os7 and not all of my application icons are visible.  They can be found by searching.  How do I put them back on my desk top?

    I upgraded my Iphone 4 to os7 and not all of my application icons are visible.  I can locate them using the search feature but I would like to have the icons visible on my screen for imediate access. So how do I do this?

    They got pushed to another page of the Home screen. Scroll from left to right to find them. You can then move them to where you want them.

Maybe you are looking for

  • Reading in an array from a text file

    I'm trying to use a text file to load in some configuratin data (using actionscript 3) I have it working ok for simple stuff like gamename=Chess&gamescore=100 , etc... but some of the data needs to be in an array. Can someone please point me in the r

  • Weblogic as an NT Service for an ISV license

    Hello, We are running WL 4.5.1 sp11 in a clustered mode. We have an ISV license and so need a custom class to start the Weblogic Servers. We now want to use the NT Service to start the Weblogic servers. How do we go about using that for the custom cl

  • Calling ABAP Program / Transaction in WAD

    Hello Experts, We have requirement to call ABAP program/transaction in WAD. Can you please help us with your valuable inputs. We are using BI 7.0 ! Thanks and Regards, Prawin Kumar

  • JTree Printing Problem

    I am having a problem printing a JPanel that includes a JLabel, a JPanel, and a JTree. If I only add the JLabel and JPanel to the JPanel to be printed, everything works fine. But as soon as I add my JTree (which is small, and should fit on one page),

  • 3D extrude: what caused this box?

    Whats the cause of that grey box in the 3D extrude below?  I've selected all so that you can see all there is in there; the top is before 3D, bottom is the same object, after 3D. There is a raster texture in this group of stuff, but its bounding box