I need help with application updates

My problem  is with applications updateing i changed my e-mail address but my old one still is listed  and i can't update  new applications how can i change that ID

no iam refering to the application icon shows six updates and  i  touch it and it shows my old e-mail address which is [email protected]

Similar Messages

  • Windows 8.1 need help with Windows Updates and Start menu Or fix my old Windows Xp system

    My beloved windows Xp has gave up after many years of working well. It stopped working a few days ago after a lightening strike.
    I got this Windows 8.1 computer a few month ago  but it seems to have a problem. I stopped using it after could not get start menu to work and when back to my Windows XP system.
    First problem is the start menu is not there. I tried installing something and it says it will take control or something and screen goes black. I clicked canceled quickly in order not to get a virus.
    Where is the start menu?
    Second problem, Windows updates does not want to update because it needs Windows 8.1 update. This computer is already Windows 8.1. There I canceled it since it was mostly a virus. Now updates are not working.
    If those can not be fixed, how can i fix my Windows Xp to get it back. It does not turn on, I press button and nothing happens. Is this something easy to fix?

    Another user discovers that Windows 8.1 is not at all of what it should be.
    There is no Start Menu in Windows 8 or 8.1.  However, you can restore your desktop start menu with a very good freeware application: 
    Classic Shell
    Windows Update comes with Windows 8.1.  There is nothing special you have to do.
    It kind of sounds like you've been a bit too quick to download and run whatever you find on the Internet.  You should always research any software you're considering downloading/installing ahead of time.  Google it.  See what others say
    about it.  Ask on forums.  In order to use Windows effectively and safely you need to expand your knowledge and become a more sophisticated user.
    If you think your new system has become infected, you might want to consider Refreshing or Resetting it to a clean state, or at least visiting one of the anti-malware forums and getting some advice on cleaning it up.  But beware, a lot
    of "blind leading the blind" happens on forums.  Always try to read between the lines, and question what people say.
    You could consider leaving XP behind.  Its time has come and gone, and pretty much any newer version of Windows can actually give you better service than XP - once you get it tuned up.
    It's possible to make Windows 8.1 more functional than XP and about as functional as Windows 7, but it takes a fair bit of effort in reconfiguration and installation of some well-known 3rd party applications that are good (which, unfortunately, most
    on the internet are not).
    Good luck to you.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Need help with understanding updates, partitions, firmware etc.

    I went to update my QuickTime and in doing so was told to update my OS which included QT updates. Now I'm getting all kinds of messages about partitions, firmware etc. do not understand at all what's going on.

    THIS IS MY STEP BY STEP situation with my updates:
    I go to the Apple Icon and selected Software Update and it reads I have 2 items:
    MacBook EFI Firmware Update 1.2
    MacBook SMC Firmware Update 1.4
    I select Install and then it state Installs completed successfully.
    BUT THEN I recieve and new icon and this message below: 
    To update the SMC firmware on your MacBook:
    Your computer's power cord must be connected and plugged into a working power source, or your battery must be at least 25% charged.
    For more information see 'http://support.apple.com/kb/TS3499'.
    1. Quit all other open applications.
    2. Click Restart in the MacBook SMC Firmware Update window and wait for your computer to restart.
    The SMC firmware update starts automatically. A status bar indicates the progress of the update. During the update your computer fans will run at full speed, but will return to normal once the update completes.
    Important: Do not interrupt the update.
    Your computer restarts automatically when the update is completed and opens the MacBook SMC Firmware Update.
    3.  Click OK. The SMC firmware is now up-to-date.
    If these instructions appear on your screen again, the SMC firmware update was not successful. Repeat steps 2 and 3.
    I follow the instructions and then I get this: (could get my image to attach but here's what it said)
    the first error message heading of:
    MacBook SMC Firmware Update 1.4
    Your firmware could not be updated, the hard drive partition scheme may not be supported.  You must be booted from a GUID partition or RAID scheme.
    see http://support.apple.com/kb/HT2434 for more information (internal error 28:3)
    THEN ANOTHER ONE POPS UP saying:
    Your Hard Drive partition scheme is not supported, you must be booted from a GUID partition scheme.
    see http://docs.info.apple.com/article.html? artnum=303609 for more information
    I went to those URL and tried to understand what it was telling me but I did not understand.  I can't figure, by reading thru forums, etc, if I need to do this or not and what exactly it is.
    So back to just pushing a simplet update has thrown all this unknown info. my way and I have no clue what to do.
    Thank you. Hope this is more clear.

  • Moving to CF10, Need help with Application.cfc

    I've been googling about how to work with Application.cfc since last week but I still have some questions and I can't find the answers.
    My application is under the root (in unix) and there are many subfolders underneath it. Each sub-folder is hosting a different web application.
    From what I read, I can create 1 root Application.cfc and then on subsequent sub-folder, when I need to have another Application.cfc on that level, I can create ProxyApplication (see below) and then create a sub-folder level Applicatin.cfc
    So, when I set an application.DSN on my root Application.cfc, using proxyApplication I don't have to reset this dsn again in my sub folder level Application.cfc
    Since my loginform.cfm and loginaction.cfm is right under root directory too,  I also set OnsessionStart in the root Application.cfc to handle user login. Then this means, I don't have to reset session variable again anywhere because session.username, etc has been set on the highest level.
    Is this correct?
    In addition, Am I correct when I do the following:
    1. Since I have root level and sub-folder level Application.cfc, I should set this.name with a different name, am I right?
        On the root Application.cfc I set this.name = "StudentServices" because this represent the global application
        On the sub-folder level's Application.cfc, I set this.name to "StudentServices_stdLoad" becaus this sub-folder only handle student load application.
    2. On the root Application.cfc, I set the DSN to the application scope. So on the sub-folder level Application.cfc I can check if a particular db is working or not
        because as awhole, in the global sense, this web application uses more than one Databases. Each sub-folder may use a database that is dfferent than the other sub folder.
    Am I doing the right thing? Please advice
    Below is example of what I have, Thank you!
    I created a root Application.cfc under the root directory: 
    <CFCOMPONENT displayname="Application" output="true" hint="My Root Application component">
       <!--- Set up the application --->    <cfset THIS.Name = "StudentServices" />    <cfset THIS.ApplicationTimeout = CreateTimeSpan(0,0,30,0) />    <cfset THIS.SessionManagement = true />    <cfset THIS.SetClientCookies = false />
           <cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
       <cfset application.MainDSN = "DSN1">
       <cfset application.ReportDSN = "DSN2">
       <cfreturn true/>
    </cffunction>
     <cffunction name="onApplicationEnd" output="false">
         <cfargument name="applicationScope" required="true">  </cffunction>
     <cffunction name="onSessionEnd">
    </CFCOMPONENT>
    Then, in this root directory I also created a ProxyApplication:
     <!--- it's empty and it Serves merely to create an alias for your root /Application.cfc --->
     <cfcomponent name="ApplicationProxy" extends="AdvancementServices.Application"> 
    </cfcomponent>
    Then in the Sub-Directory, I can create a sub-folder level Application.cfc extending the root Application.cfc:
     <CFCOMPONENT displayname="Application" extends="ApplicationProxy">
        <!--- Set up the sub-folder application --->
        <cfset THIS.Name = "StudentServices_stdLoad"/> 
        <cfset THIS.ApplicationTimeout = CreateTimeSpan(0,0,30,0) /> 
        <cfset THIS.SessionManagement = true/> 
        <cfset THIS.SetClientCookies = false/> 
        <cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
           <!--- ****** Testing whether the ADVUPGRD is accessible by selecting some data.****** --->
           <cftry>
           <cfquery name="TestMain_DSN" datasource="#application.MainDSN#" maxrows="2">
             SELECT Count(*)          FROM MyTable
           </cfquery>
             <!--- If we get a database error, report an error to the user, log the error information, and do not start the application. --->
            <cfcatch type="database">
              <cflog file="#this.name#" type="error" text="Main DSN is not available. message: #cfcatch.message# Detail: #cfcatch.detail# Native Error: #cfcatch.NativeErrorCode#" >
             <cfthrow message="This application encountered an error when connecting to the Main Database. Please contact support." />
             <cfreturn false>
           </cfcatch>
         </cftry>
         <cflog file="#this.name#" type="Information" text="Application #this.name# Started">
         <cfreturn true/>
       </cffunction>
    </CFCOMPONENT>
        <cfargument name = "SessionScope" required=true/>     <cfargument name = "AppScope" required=true/>
    </cffunction>
    <cffunction name="OnSessionStart" access="public" returntype="void" output="false"> 
      <CFSET session.UserGroup = ""/> 
      <CFSET session.UserName = ""/> 
      <CFSET session.currentPage = ""/> 
      <CFSET session.loggedin = "No"/> 
      <CFSET session.userrights = ""/>
      <cfreturn/>
    </cffunction>

    OK.  It sounds to me like you really shouldn't be using a single root Application.cfc at all, if all you want to do is share some settings between your "sub-applications".  I would look at storing the common settings in an external file that all of the applications can read in.  The simplest way is to put the settings in a .CFM file somwhere outside of the web root (so it is not directly web accessible) and load it with <cfinclude> tag into the OnApplicationStart() method of each sub-application's App.cfc.  That .CFM file can be as simple as:
    <cfset application.myCustomSetting = "blahblah">
    <cfset application.myOtherSetting = "foo">
    Alternatively, you can look at using a config file like this Ray Camden blog post suggests, and use the GetProfileSection(), GetProfileString(), and SetProfileString() functions as needed within OnApplicationStart().  You could even put ALL of your settings in
    A third option is to store your settings in an XML file or in JSON format in a text file.  You could then write code to read in the XML file, and use something like xml2struct.cfc to convert the XML into a struct, then append the struct to your application scope.  If you go the JSON route, then just read in the JSON file and use DeserializeJSON() to convert it into a struct, and append it to the application scope.
    What I think is probably the best approach is to use a community-supported MVC framework like FW/1 or ColdBox (maybe you already are, I don't think you've said so though).  One of the many advantages to doing so is that they have built-in "environment" support that can be used to configure common settings, depending on your environment (dev/qa/production).  You would handle reading in your external settings through the "environment" mechanism.
    One other thing to think about: your login mechanism.  I think you want to use one set of login tools that is shared by all of the "sub-applications".  You can do this also by putting the login/authentication-related code somewhere outside the webroot of your applications, and then either set up a mapping to that location in CF Admin, or set an application-specific mapping in your various App.cfc files.  That way all the "sub-applications" share a common set of code for the login process.  I don't know how your login process works (do all users go to the same login page then get redirected into their relevant "sub-application", or does each "sub-application" have a discrete login page that utilizes common back-end processes to authenticate and redirect), so you'll have to judge how that is best accomplished.
    Hopefully this gives you some useful ideas.
    -Carl V.

  • Need help with application.cfc

    Here is what I am trying to do. I have a login page, and when
    a user logs in it verifies their credentials. If everything is good
    it sets a session variable called #session.username#. What I want
    to happen is at that point update a database field to set the user
    logged on status to 1. Everything to that point is fine. I am
    getting stuck at updating the databse when the users session ends.
    Before the session ends I would like to update the db field for the
    user and set the logged on status to 0.
    I haven't used application.cfc before. I have been messing
    around but nothing is working. Here is a copy of my application.cfc
    file. If anyone has any idea on how to run a query onsessionend and
    update a db I would appreciate it.
    <cfcomponent output="false">
    <cfset this.name = "test">
    <cfset this.applicationTimeout =
    createTimeSpan(0,2,0,0)>
    <cfset this.clientManagement = true>
    <cfset this.clientStorage = "registry">
    <cfset this.loginStorage = "session">
    <cfset this.sessionManagement = true>
    <cfset this.sessionTimeout = createTimeSpan(0,0,0,30)>
    <cfset this.setClientCookies = true>
    <cfset this.setDomainCookies = false>
    <cfset this.scriptProtect = false>
    <cffunction name="onApplicationStart" returnType="boolean"
    output="false">
    <cfset application.dsn = "dsn">
    </cffunction>
    <cffunction name="onSessionStart" returnType="void"
    output="false">
    <cfargument name="sessionScope" type="struct"
    required="true">
    <cfargument name="appScope" type="struct"
    required="false">
    </cffunction>
    <cffunction name="onSessionEnd" returnType="void"
    output="false">
    <cfargument name="sessionScope" type="struct"
    required="true">
    <cfargument name="appScope" type="struct"
    required="false">
    <!--- Update Logged On Status --->
    <cfquery datasource="dsn">
    UPDATE LoginNew
    SET loggedin = '0'
    WHERE username = '#session.loginname#'
    </cfquery>
    </cffunction>
    </cfcomponent>

    siriiven wrote:
    >
    > Any ideas?
    >
    Take a peak at the documentation. It describes all the ins
    and outs...
    you have to do the same thing with application variables as
    session
    variables. The hint being that you are also defining an
    appScope
    argument as well as the sessionScope argument, there is a
    reason for this.
    <quote
    src="
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00000701.htm">
    Usage
    Use this method for any clean-up activities when the session
    ends. A
    session ends when the session is inactive for the session
    time-out
    period or, if using J2EE sessions, the user closes the
    browser. You can,
    for example, save session-related data, such as shopping cart
    contents
    or whether the user has not completed an order, in a
    database, or do any
    other required processing based on the user’s status.
    You might also
    want to log the end of the session, or other session related
    information, to a file for diagnostic use.
    If you call this method explicitly, ColdFusion does not end
    the session;
    it does execute the method code, but does not lock the
    Session.
    You cannot use this method to display data on a user page,
    because it is
    not associated with a request.
    You can access shared scope variables as follows:
    You must use the SessionScope parameter to access the Session
    scope. You
    cannot reference the Session scope directly; for example, use
    Arguments.SessionScope.myVariable, not Session.myVariable.
    You must use the ApplicationScope parameter to access the
    Application
    scope. You cannot reference the Application scope directly;
    for example,
    use Arguments.ApplicationScope.myVariable, not
    Application.myVariable.
    Use a named lock when you reference variables in the
    Application scope,
    as shown in the example.
    You can access the Server scope directly; for example,
    Server.myVariable.
    You cannot access the Request scope.
    Sessions do not end, and the onSessionEnd method is not
    called when an
    application ends. The onSessionEnd does not execute if there
    is no
    active application, however.
    </quote>

  • Need help with OS Update

    So I'll cut it short. Downloaded a new OS. I installed a new OS. Wiped my OS. Deleted Vendor.xml Launched Loader.exe Went through the proccesses. The only problem is its just sitting doing nothing. I dont know if it is. But it looks as if its stuck on 'Connecting to Boot ROM' Its not doing anything. Its been 10-15mins already. Please help

    Hmmm...here are some more things to try...I hope you already have a good backup, if not, consider this thread:
    http://supportforums.blackberry.com/t5/General-Bla​ckBerry-Functions-and/Backup-the-data-on-your-Blac​...
    After that, these may be useful:
    Sometimes, it just takes a long time...how long is "long enough" is a tough guess, though...I've heard of folks (extreme cases) waiting as long as 24 hours
    KB10144 How to force the detection of the BlackBerry smartphone using Application Loader
    KB27956 How to recover a BlackBerry smartphone from any state
    http://crackberry.com/blackberry-101-lecture-12-ho​w-reload-operating-system-nuked-blackberry
    www.bbsak.org
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Help! I have a Used Mac Book Pro need help with apps update

    My ex bought me a mac book pro and purchased all of the apps and uploaded the apps under is apple id. I just recently update the new software now i can't get access to iPhoto, and other apps because its asking me for my password but his apple id coming up is there any way i re install these apps under my apple id. Please help I can used iPhoto.

    You cannot use or upgrade anything that is registered with his Apple ID. You must re-purchase it all using your Apple ID and your iTunes account. This includes the operating system as well. Essentially, you erase the drive and start from scratch. Here's how to get started:
    Install OS X Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer. You can decide which apps you want to purchase (or download free) from the App Store where you will set up your own account and your own Apple ID if you don't have one.

  • Need help with package update

    have a package that was sequenced for w7 64 bit;
    now need to publish this package to RDS 2012.
    edited the package in sequencer and added RDS2012 R2.
    The question:
    do I have to unpublish current package that is for W7 only and publish edited one with added RDS 2012 or can I update running with changed. Never did update yet. So please don't be angry :)
    &quot;When you hit a wrong note it's the next note that makes it good or bad&quot;. Miles Davis

    If you just changed the supported OS value (checkbox during sequencing), just saving the package on the sequencer and importing it into the management console should be fine. 
    The MgtConsole will determine that you are importing an updated version and will ask you if you want to import it 'as an update'. You can confirm that.
    On a client machine, the old version of the package will remain (for a while) and the new version will be added. Users that actively work with the old version, stick on that on. Users that launch the application will get the new version. 
    If your two 'packages' really have technical differnces, the 'save as new package' is appropriate with the considerations mentioned earlier
    Falko
    Twitter
    @kirk_tn   |   Blog
    kirxblog   |   Web
    kirx.org   |   Fireside
    appvbook.com

  • Error message "VI is not executable"! Need help with Application Builder

    Hello,
    I have a problem with an application, built with the Application Builder. I have read some threads about the problem I have, but I still don't know a solution.
    When I run my front panel from LabVIEW, everything is good. So, now I created an application (and an installer) to be able to run it on other PCs as well. This application does not work. Everytime I start it on my PC, I get the error "VI is not executable. ...". I read in several forums solutions for this error, but I cannot fix it! I've changed my properties for the builder, but with no success. Perhaps, anybody has more ideas, what's the problem.
    To get a better idea from my project, here a little description of it:
    In the block diagram there is a while loop which is continuously runned. In this loop I only set some properties for the layout of the front panel, such as decorations which will be hidden/shown and changes of colours of indicators... For the rest, it waits for a click on the button "Start" in the front panel. After that, a DLL is called to communicate with a USB device. Some measurements are carried out and the DLL is closed. I hope, you can get a global idea from my block diagram...
    I use LabVIEW 8.5, the DLL is a third-party DLL, which we wrote on our own. But I think the DLL works properly, if it is called from a C# application it works and it works, too, by calling it from LabVIEW when I am in development mode.
    It's a project for university and I'm just a beginner in LabVIEW, so I don't have so much experiences in it, but I think i improved my knowlegde about LabVIEW very well in the last weeks!
    So, i hope to get an answer soon (the deadline for the project is not soooo far away )
    If you need more information, please let it know...
    I would be very grateful if there is someone with a working solution...
    Kind regards from the Netherlands,
    Sebastian

    Sebastian,
    Your architecture makes it very difficult to debug this and other problems.  Does the error message mention which VI is causing the problem?  It is very important to wire your error clusters everywhere.  In LabVIEW, when a node throws an error (Error.Status = T), future nodes do not execute.  At the end, place an error cluster indicator that you can see on your front panel.  When an error posts, you can right click the indicator (even in a compiled application) and select "Explain Error".
    This is a start, but you really need to push this into a queued-state machine before this gets any more complicated.  As it were, if anything in your loop hangs, your whole application hangs.  See attached for a queued-message handler (not advisable for actual applications, but you get the point.  You would want to have a type defined enum in lieu of strings, and shared data between states differently, etc.)
    -Jason
    Message Edited by LabBEAN on 01-20-2009 08:36 AM
    Certified LabVIEW Architect
    Wait for Flag / Set Flag
    Separate Views from Implementation for Strict Type Defs
    Attachments:
    State Machine.vi ‏18 KB

  • Need help with cs5 updates

    I upgraded to CS5 recently. I started getting no
    tices there were updates available. When I got to the update
    page and clicked on update, I got a message that said 'another
    instance of updater is running, please try again later". This has
    happened each time I tried to run the updates. It has been going
    on for days. I am at a loss as to what this means and how I go about
    getting the updates. Any suggestions?  I am not a computer or photoshop
    whiz, so I need basic help.

    That did it - thanks for your help
    Jim R

  • Need help with iPod updater

    I recently downloaded the iPod updater for my iPod Nano, but everytime i try to open it, it doesnt come up. I tried downloading the iPod updater a second time, but still the same results. I click on it, and the little hour glass shows up as if its about to open but then it just goes away and the app doesnt open. If someone can help me with this problem it would be greatly appreciated.

    Just out of curiosity, did you download the correct version of the updater - i.e., the Windows version versus the Mac version? Just had to ask.
    Dennis

  • Need help with applications

    i am new to mac and i am having some issues. first, where do i find my programs? i just got my mac laptop yesterday with iwork supposildy preinstalled, but i cant find it. well i find an icon with it in applicatins after i had to search the computer for it, but it wont open. it doesnt do anything when i click on it. then i am try to do things in ical and someone told me about a blue button i am suppose to have when i highlight the event, but nothing comes up and i cant delete a calendar i accidentally made. i highlght it on the left and hit "delete' but nothing happends. i read over the turorials for ical and it seems i am missing some buttons. also i am trying to go from day view to weekly and the buttons arent working at the top, either is the today button and the current view is for friday. is something already messed up on my new laptop?
    Message was edited by: Kelly Siech

    Kelly,
    I am thinking that if this is a problem with the program, I am thinking that you have a chance to call Apple, and they can either fix the program for free, or give you a brand new macbook.
    Since you are new, I can help you. Macs somehow are a little more advanced than Windows, because you cannot encounter a virus made for windows. If a virus was to come, it has a high chance to NEVER and I mean NEVER coming into your computer system and destroy your computer. It has to be able to adapt to the programs that Apple has made, and since windows viruses are not compatible with macs they unfortunately will never destroy your motherboard.
    Thats just to tell you, that you don't have to worry about viruses.
    You have to worry about that, you have to be careful on what you do on the internet, there are things that can crash your computer. Thats why, it is better to be using Firefox, you can use the version 2.0.1 or 3.0.
    The new version of firefox is nearly the same as the other version 2.0.1.
    Firefox is a lot better, because.
    1. it is safer and 3rd party cookies and other people are not able to see it.
    2. You can modify what you want. The history can be deleted automatically, when you quit firefox (apple Q)
    3. Nearly everyone who uses Macs, and Windows, can use it, and if you use firefox on a windows, it is the same, there are very high possibilities, that viruses will not be able to break through.
    4. FIREFOX RULES! ^_^
    I feel that I should PROBABLY tell you more, if you don't mind.
    Like if you want to have msn on your mac. DON'T EVER and I mean DON'T EVER download a version of msn that is under the file of EXE. Mac is not compatible with the .exe files. The best thing you can actually go to, is to the apple download site that one that you are on now, but just click on downloads.
    MSN WILL BE AVAILABLE TO DOWNLOAD
    Don't worry, viruses will not be able to come in either. Although the only down poor is that, the mac messenger does NOT have WEBCAM, NO offline messaging, and you CAN'T make microphone chat, or the webcam with microphone chat.. you have to find another program that lets you do that. I use a different type of messenger. Yahoo, you cannot use the webcam for people who are using windows messenger on your yahoo messenger.
    You have to also know that, you can use msn2go.com for messenger when your at a cafe, libraries, municipal airports, mall if possible, nearly EVERYWHERE you can use wireless. It also comes with gigabyte ethernet.
    You might think that wireless is more secure, well it's not. You have to secure the router and put a password on it if you don't want people to get onto the internet, or as people say Hijack or backpack.
    Also you can go to system preferences and go to security, and then there are three tabs. General, fire vault, and firewall. You should just click on the General tab, and click the first one that says DISABLE AUTOMATIC LOGIN. That means that when you setup your password when you did a first boot up, you now do not have to worry about people trying to get into your laptop. So that means when you turn on your laptop, and now you will have your own account, and a guest account if possible, so then now you have to enter your password, and then you will be able to login.
    If you close your lid, your computer will go to sleep, and then when you open up the laptop lid, then you will have to enter your password to. So then you will be able to login... I would not recommend your password being Kelly and your last name in it... put something that you can really remember, and something that is easy like an easy word
    If you need anything else just email me... ****@*.com.
    Have a good day.
    Shang
    <Edited by Moderator>

  • Need help with Spotify updates!

    Recently, Spotify hasn't  worked properly. You see, whenever I start Spotify I get a noticfication that says that the latest version of Spotify is available and I can download it just by restarting Spotify. But if i restart Spotify,  it doesn't start. It just turns of automatically and then I am not able to open Spotify in anyway I can think of. So then i have to reinstall Spotify, and when I do that Spotify works correctly but i still get the same notification as earlier. So that means that when I reinstall Spotfiy I don't get the latest version which is weird because in the help section on Spotify.com it says that if I reinstall Spotify I get the latest version. If I choose not to update Spotify, the next time I start my computer or turn off Spotify I'm not able to start Spotify and I need to reinstall Spotify again and the same problem starts from the beginning. I had the same problem eariler and got help and solved this issue but now I'm experiencing the same thing again. I keep having this issue every time there is a new update on Spotify! Please help me, I don't know what to do! Ps: I have Windows

    Since you mention ActiveX I can assume that you are on Windows.
    Download the Reader Update from http://www.adobe.com/support/downloads/detail.jsp?ftpID=5637
    For Flash Player you need to download and run the full installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)

  • Need help with the update queries - joining three tables -

    We have three tables shown below, each with millions of rows;
    And need some updates in here;
    T_CHECK->TOTAL_AMT_PAID should be equal to
    aim00.t_chck_clm_xref->amt_paid + aim01.t_chck_clm_xref->amt_paid;
    Some CHECK_SAK values exist in aim00.t_chck_clm_xref and some exist in aim01.t_chck_clm_xref;
    We tried to update using the queries within PL/SQL shown below:
    Is there a way to make these more effecient?
    SQL> desc aim.t_check;
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    TOTAL_AMT_PAID NOT NULL NUMBER(11,2)
    DTE_ISSUE NOT NULL NUMBER(8)
    SQL> desc aim00.t_chck_clm_xref
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    AMT_PAID NOT NULL NUMBER(10,2)
    SQL> desc aim01.t_chck_clm_xref
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    AMT_PAID NOT NULL NUMBER(10,2)
    create or replace PROCEDURE CHECKSUPDATE IS
    cursor my_cursor is
    select /*+ DRIVING_SITE(t_check) INDEX(t_check) */
    tot, mid, aim.t_check.total_amt_paid from
    (select sum(aim01.t_chck_clm_xref.amt_paid) tot,
    aim01.t_chck_clm_xref.check_sak mid from aim01.t_chck_clm_xref
    where
    not exists (select 'x' from aim00.t_chck_clm_xref
    where aim01.t_chck_clm_xref.check_sak = aim00.t_chck_clm_xref.check_sak
    group by aim01.t_chck_clm_xref.check_sak) TABLE1, aim.t_check
    where aim.t_check.check_sak = table1.mid
    and aim.t_check.total_amt_paid <> tot;
    my_count NUMBER;
    BEGIN
    my_count:=0;
    for my_pos in my_cursor loop
    update aim.t_check a set total_amt_paid=my_pos.tot
    where a.check_sak=my_pos.mid;
    my_count:=my_count+1;
    if (mod(my_count,1000)=0) THEN
    commit;
    end if;
    end loop;
    commit;
    END CHECKSUPDATE;

    >
    SQL> desc t_check;
    Name Null? Type
    CHECK_SAK           NUMBER(9)
    TOTAL_AMT_PAID NUMBER(11,2)
    DTE_ISSUE NUMBER(8)
    SQL> desc t_chck_clm_xref
    Name Null? Type
    CHECK_SAK      NUMBER(9)
    AMT_PAID NUMBER(10,2)
    SQL> desc t_test
    Name Null? Type
    CHECK_SAK NUMBER(9)
    AMT_PAID NUMBER(10,2)
    select check_sak, sum(amt_paid)
    from (
      select check_sak, amt_paid from t_chck_clm_xref
      union all
      select check_sak, amt_paid from t_test
    group by check_sak;and use this query in an UPDATE statement or a MERGE statement, as Tubby suggested, against the T_CHECK table.
    isotope

  • Need help with flashplayer update

    I tried to download flashplayer.  Told to close all kinds of things.  The one I cannot identify is gplayer.

    VL Albertson wrote:
    I have absolutely no idea what gplayer is.
    It is something you have installed on your system, and it obviously uses Flash Player.  That's why it needs to be closed in order to install the update.
    Check with the Taks Manager's Processes tab.

Maybe you are looking for