Flash DateChooser - Changing the days the component pulls from

I am using the DateChooser component.
What I want is for the dateChooser to build itself based on
the SERVER date, not the user's computer date.
For example, if the date on the user's computer is May 19,
2006, the DateChooser automatically sets the current date.
I have successfully made the DateChooser choose the selected
date based on the server using a little PHP and a Flash Remoting
Service called amfphp, but now I have another prediciment: What
about the actual day of the week, and the days in that month?
The DateChooser in Flash knows it's a leap year or not based
on the user's computer time. But my software needs the date to be
perfect - there can't be any mistakes.
I guess what I'm getting to is I wish the DateChooser had
something like a "source date info" property - where you could push
all the months, and number of days in each month, etc... to it.
Unfortunetly, I am going to have to build a whole component
to tackle this issue.
Anyone built a good one already?

I am using the DateChooser component.
What I want is for the dateChooser to build itself based on
the SERVER date, not the user's computer date.
For example, if the date on the user's computer is May 19,
2006, the DateChooser automatically sets the current date.
I have successfully made the DateChooser choose the selected
date based on the server using a little PHP and a Flash Remoting
Service called amfphp, but now I have another prediciment: What
about the actual day of the week, and the days in that month?
The DateChooser in Flash knows it's a leap year or not based
on the user's computer time. But my software needs the date to be
perfect - there can't be any mistakes.
I guess what I'm getting to is I wish the DateChooser had
something like a "source date info" property - where you could push
all the months, and number of days in each month, etc... to it.
Unfortunetly, I am going to have to build a whole component
to tackle this issue.
Anyone built a good one already?

Similar Messages

  • TS2784 I have set my iphone5 time settings to automatic New York time. Throughout the day the clock keeps changing times on its own by hours. Sometimes in is correct. Sometimes it is wrong.

    I have set my iphone5 time settings to automatic at New York time. Throughout the day the date and time on the phone keeps changing on its own and often by a few hours. Sometimes it goes to the correct time. Sometimes it is way out. Is there something wrong with my settings?

    This is a known issue with the iPhone 5. Turn off the automatic time setting for the time being. It will most likely be corrected in an upcoming update to iOS if the tech press is to be believed.

  • 1st job of the day has to come from local computer

    I've bought and installed a Laserjet M125a by usb cable in a windows 7 64 bit computer at my office. I've shared the printer with other computers (XP, 7, 32 and 64 bit) through our LAN (cable and wireless).
    Everyday, when we turn everything on in the morning, we can't print from any computer in the LAN. The 1st print job of the day has to come from the computer to which the printer is connected via usb cable. After that 1st print, the other computers in the LAN are able to print.
    I have already uninstalled, reinstalled, unshared and reshared it on all computers, but nothing fixed the issue.
    Any ideas?
    (Sorry for the broken english!)

    What if she waits another 5 minutes? I suspect some autostart stuff is still loading in the backgrund and slowing the start down.

  • I've got an apple 3TB time capsule.  It was working fine until we moved to a new house.  The day the ISP showed up to upgrade my speed it stopped working.  Now will not pick up signal.  What happened what do I do?

    I've got an apple 3TB time capsule.  It was working fine until we moved to a new house.  The day the ISP showed up to upgrade my speed it stopped working.  Now will not pick up signal.  What happened what do I do?

    What signal is it picking up? Are you joining wireless network? If so don't.. it is really poor way to run things.
    Is it connected to a cable modem? Full router or just a modem type?
    Try a reset?
    Plug in via ethernet.. turn off everything.. wait 5min then restart cable modem.. if that doesn't work, give it a longer off cycle.. 15min or overnight.
    We need more info.

  • I lost my iphone the day after down loading from utune i got the bill but the songs r not at my itune account can u all put them there? I wont be buying any more if this cant be fixed.

    I lost my iphone the day after down loading from itune  but the songs aren't on my itune account  but I did get a bill for the song.  I did n't get another iiphone phone but I need my music put back on my account my iTunes account. If I'm paying for them! I want to music!

    It's as simple as this:
    Open iTunes.
    Click iTunes Store on the left side of the screen.
    Look on the left side - click Purchased (it has a NEW graphic next to it)
    You will see everything you have every purchased from iTunes. You can redownload any of it.
    Enjoy. Good luck finding your iPhone. If you get another one make sure to set up Find my iPhone as soon as you get it so you can track it down if you lose it again.

  • Today is the day the preloading will work! Help...

    I've tried and tried to find different ways to make the preloading work correctly but there is always something that doesn't seem to work with each way. Could someone dumb it down for me and help me understand how to make this work. I've read everything on the safeloader and at this link:
    http://www.stevensacks.net/2010/05/28/flash-cs5-tlf-engine-causes-errors-with-loaded-swfs/
    I've also browsed all blogs and adobe tech notes and just had no luck getting a way that always worked. Here is what I'd like to do:
    Create a preloader swf that contained a movie clip to display the percent.
    Allow the preloader swf to call functions inside of the loaded swf. (this is for stage resizing, usually)
    Be able to use the tlf textengine in my loaded swf's.
    Keep my reference to the stage or pass it from the preloader swf to the loaded swf.
    Every way I've tried seems to lose at least one of these items. Right now I have a file that uses the tlf textfield and a stage reference. It works fine as a standalone swf but it needs a preloader. In the as 3 settings the tlf is merged into the code. The extra size isn't that big of a deal, for now. However, I would love to not do that and point the preloader away from adobe's stock preloader to my own in the as 3 settings. However, I can never get it to work correctly.
    Can anyone point me in the right direction? Thanks!

    Kglad, I created a system
    that works. I will post it here so others can use it if needed.
    Outline: I'm using a custom preloader.swf to load another swf file. The loaded swf file contains a document class and the tlf textfield. I am able to load this correctly, track the percent loaded, pass the stage reference, use the tlf textfield and use the stage resize functions to dispatch listeners for sites that are 100% of the browser.
    THE PRELOADER SWF
    This file simply contains the preloader movieclip in the library and code in frame 1. I guess a doc class would work here but I have not tested. The AS 3.0 settting are the default settings for player 10.
    Code:
    //======================================================================================== =================================================
    //     import classes
    //======================================================================================== =================================================
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    import flash.filters.BevelFilter;
    import flash.display.MovieClip;
    import flash.display.Loader;
    //======================================================================================== =================================================
    //     set stage alignment
    //======================================================================================== =================================================
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    stage.addEventListener(Event.ACTIVATE, activateHandler);
    stage.addEventListener(Event.RESIZE, resizeHandler);
    //======================================================================================== =================================================
    //   variables
    //======================================================================================== =================================================
    var pre_loader:Preloader;
    var this_page:String = "sbBackground.swf";
    var load_bar_width:Number = 150; // make this the width of your image
    //======================================================================================== =================================================
    //    variables
    //======================================================================================== =================================================
    function activateHandler(event:Event):void {
    trace("here");
    //======================================================================================== =================================================
    //    variables
    //======================================================================================== =================================================
    function resizeHandler(event:Event):void {
    trace("resizeHandler: " + event);
    trace("stageWidth: " + stage.stageWidth + " stageHeight: " + stage.stageHeight);
    //======================================================================================== =================================================
    //    variables
    //======================================================================================== =================================================
    var background_ldr:Loader;
    var background_mc:MovieClip;
    var background_holder:MovieClip = new MovieClip();
    addChild(background_holder);
    //======================================================================================== =================================================
    //    init site
    //======================================================================================== =================================================
    function init():void{
    // show preloader
    pre_loader = new Preloader();
    addChild(pre_loader);
    pre_loader.x = Math.round(stage.stageWidth/2) - Math.round(pre_loader.width/2);
    pre_loader.y = Math.round(stage.stageHeight/2) - Math.round(pre_loader.height/2);
    pre_loader.load_bar.width = 1;
    // load page
    loadThisPage(this_page);
    //======================================================================================== =================================================
    //    load called page
    //======================================================================================== =================================================
    function loadThisPage(thisPage:String):void{
    // load new page
    background_ldr = new Loader();
    var pageRequest:URLRequest = new URLRequest(thisPage);
    background_ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, pageCompleteHandler);
    background_ldr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, pageProgressHandler);
    background_ldr.load(pageRequest);
    function pageCompleteHandler(loadEvent:Event){
    background_mc = MovieClip(background_ldr.content);
    background_holder.addChild(background_mc);
    removeChild(pre_loader);
    function pageProgressHandler(e:ProgressEvent){
    var loaded:Number = e.target.bytesLoaded;
    var total:Number = e.target.bytesTotal;
    var pct:Number = loaded / total;
    trace(pct);
    pre_loader.pct_txt.text = String(Math.round(pct * 100)) + "%";
    pre_loader.load_bar.width = Math.round(pct * load_bar_width);
    THE LOADED SWF
    This file also used the default settings for Flash player 10. Therefore, I am not merging into the code my tlf library so no increase in file size.
    The doc class:
    package com {
    // core
    import flash.display.MovieClip;
    import flash.display.Stage;
    import fl.text.TLFTextField;
    import flash.events.Event;
    // import custom classes
    import com.main.BuildStageClass;
    // initialize class
    public class DocClass extends MovieClip {
      // custom classes
      // variables
      public static var build_stage_class:BuildStageClass;
      // stage containers
      public static var main_stage:MovieClip;
      // private toggle var
      private var init:Boolean = false;
      // main constructor
      public function DocClass() {
       addEventListener(Event.ADDED_TO_STAGE, stageAddedHandler);
      private function stageAddedHandler(e:Event){
               // trace("Document Class Stage: " + this.stage);
       // initialize classes
       build_stage_class = new BuildStageClass();
       // wait until second added to stage call to initialize application
       if(init == false){
        init = true;
       else{
        removeEventListener(Event.ADDED_TO_STAGE, stageAddedHandler);
        // add containers to stage
        main_stage = new MovieClip();
        addChild(main_stage);
        // start app
        startApplication();
      public function startApplication():void{
       //trace("here at start");
       // build stage
       build_stage_class.buildStage();
    This works 100% for me without using the safeloader in the preloader.swf. I've experienced some issues with the safeloader before so not using it is a blessing.
    I hope this helps someone! Enjoy.

  • The serial no rec pulled from outbound dly is different to stock overview

    Hi, I have the following question with regards to the serial number generation out from VL02N which is having a problem in which the serial number retrieved from VL02N (i.e. via Menu Extras  Serial Numbers) having a different serial number retrieved from MMBE (i.e. via Menu  Environment  Equipment/Serial Numbers).
    For example,
    I went to MMBE and retrieve the serial number, and having the following records:
    Material--SerialNo-Plant-S.LOC-Sys Status
    ABCD99283--11354676-1140--1101--ESTO
    ABCD99283--11354677-1140--1101--ESTO
    ABCD99283--11354678-1140--1101--ESTO
    ABCD99283--11354679-1140--1101--ESTO
    ABCD99283--11354680-1140--1101--ESTO
    The problem arise when I went to the VL02N and retrieving the serial number, and having the following records retrieved, however, the last two serial number records (see above) does not get pull out.
    Material--SerialNo-Plant-S.LOC-Sys Status
    ABCD99283--11354676-1140--1101--ESTO
    ABCD99283--11354677-1140--1101--ESTO
    ABCD99283--11354678-1140--1101--ESTO
    May I know why some of the serial number records, which are able to be pulled from MMBE, are disappear on the selection screen via VL02N?
    Thank,
    Tuff

    I guess you are doing ATP in the delivery. Quantity wise, do you get all 5 confirmed?

  • How to get an app on new iPad after the app has been pulled from app store?

    I have the vlc player app on my iPad 2 and want to put it on my ipad3. Since it has since been pulled from the store, how do I get it on my new iPad? I is no other app that I have found that can replace it.

    I did that before I bought the new iPad and was able to transfer all my other apps, somehow the app never made it to my current iPad. I'll try again and let you guys know once I get home to my laptop.

  • HT201300 My email date of the day the email is posted will not change it stays on 12-8-13

    Email date doesn't change it stays at 12-8-13. I do not know the actual date of my on coming email.

    email date doesn't change it always stays at 12-8-13. I do not know the actual date of my on coming email. (gmail)

  • New Project - New Problems or The day the Reaper died

    Ok, this is more like telling a story than a cry for help.
    The story is about a new project, new (great) results and the disaster that followed.
    Well story starts October 21st with me upgrading rig 1 with new parts. They came for my Opteron165 setup which oc'ed nicely but didn't make it far enough. So board, cpu and ram of rig 1 (sig) got replaced by the following parts:
    The new cpu is an Athlon X2 5200+ EE (TDP 65W), 2.6ghz, 2x 1024kb L2 cache, 90nm, F3 stepping.
    The board is from MSI (of course), a K9N SLi Platinum. Very nice board and luckily it is PCB version 1.2 which features a heatpipe while the older version just had a very bad cooling, passive aluminium heat sink. The older version is the one still to be seen on MSI product site.
    The new one looks therefor way better and stays cooler:
    In addition I threw a pair of the finest ddr2 ram in it. A 2gb dual channel kit of OCZs new DDR2 PC2-6400 Reaper CL3 Edition. DDR2-800 with 3-4-4-15 (stock), guranteed to work with 2.3volts.
    So suppositions for oc were great and I started:
    First of all upgraded the bios from 1.8 to the latest 1.10. Then I thought why go step by step, why not starting big. So I set HT clock to 250mhz, resulting in a cpu clock of 3250mhz (multi 13), Hyper transport link set to 800mhz (x4), ram very relaxed (divider 667, 5-5-5-15 2T). It didn't post but I thought solution is easy, forgot to set extra voltage for cpu. Next try at 3250 mhz with 1.25v and set 0.1v extra in bios. It didn't post. I set voltage to maximum but no luck. Tried again but this time I lowered the HT link to 600mhz (x3). Now it posted even with 1v extra and it also booted XP but seemed to be not very stable. So set extra voltage to 0.15v which enhanced stability greatly.
    After minor driver problems my old XP installation worked pretty perfectly with the new setup. Time had come to see if it was stable and I started Orthos. It seemed to be ok, 1hour no problems, 2hours, 3hours and bam... 3hours 40 minutes and that's it. I thought "Damn, but it will make it with more voltage". I added more voltage (0.2v extra) and started Orthos again but no way, at 4hours 32 minutes it stopped again.   
    I'm not easy to discourage and so I added 0.25v to the 1.25v vcore and tried another time. Still 250x13 = 3250mhz.
    And it worked!
    Orthos now easiely worked six hours when I stopped it myself to see if it would also be stable with more intensed ram settings. I set ram divider to 800mhz (1:1) resulting in DDR2-929 and timings to 4-4-4-15 2T.
    I started Orthos and left the machine alone... Outstanding 16 hours later it was still working!
    After 17hours 5 minutes and 50 seconds of running Orthos I knew I had a stable beast!
    It also worked with ram set to divider 667 (resulting in 406mhz or ddr2-812) and 3-4-4-15 2T. However 1T was a real killer, thats why I left command rate at 2T and were happy so far.
    Performance was really good and I wanted to know if this would increase my 3dmark06 results which were already great with old setup because of nicely oc'ed 8800GTS 320. The opteron could do 9572 3dmarks with it.
    The new setup easiely broke the 10.000 points by reaching 10306 points with cpu at 3250mhz, ram at ddr2-929 (4-4-4-15 2T), vga as seen in sig.
    It really seemed to be finished. The rest would be just playing around and going for suicide clocks. At least that was what I thought at that time.
    Before maxing it out I wanted to have the Vista 64 Ultimate installation also running with the new setup. I hadn't booted vista since upgrading to the am2 system, so I tried for the first time....
    AND NOW EVERYTHING GOT F***** UP
    Vista welcomed me with a blue screen instead of a logon screen. I was pi**** but aware it might not like changing from NForce4 SLi to NForce 570 SLI. Next step was trying safe mode but vista thought of blue mode and showed a screen of that colour. I thought "ok, maybe you dislike setup change" and so I went for a clean install. I even formated the partition and gave it a go. Installation was fine 'til first start. Well, it wasn't a start to be honest as vista told me it was not able to do this. Repair wasn't successful either.
    Assumption was now system is not making the oc clocks although proved to be stable under XP. So I removed any oc and loaded fail-safe mode in bios. Relaxed ram timings to 5-5-5-18. I started installing vista again, thought I could oc again when it is installed.
    Oh boy, how wrong I were...  The 2nd installation turned out to be as faulty as the first and I tried again and again... After installation failed nine times I were finally discouraged.
    I just wanted to boot XP for now, forget about installing vista and maybe ask here if it this was a known issue.
    Well, I didn't get to see XP. I was just informed about a missing file that also prevented to boot safe mode. I took my XP cd and started automatic repair. After this was nearly finished the first errors and notifications about unknown, missing or corrupted files appeared. Although XP made it to finish install and booted successfully. But this XP wasn't a real XP as many things didn't work. I couldn't install drivers because loads of errors and crc crap made working with it impossible. Clear install time! But no way, same issues like seen in vista.
    Now I were pretty desperate and I urgently needed an idea.  I came to the solution maybe I could try with single channel, using just one mem stick. I removed one and tried installing XP again. It worked without any issue. Even driver installation and other software worked without a problem. Now I were even able to install Vista.
    But still I didn't know what caused all the trouble. I had three suspects: Mobo, ram, cpu. I doubted in faulty board but cpu (failing to control dual channel) or the ram stick I removed were my favorites. As it was the easiest to try I put the other stick back in but used a slot combination that would cause single channel.  Booting Vista now turned out to be a disaster. Errors, corrupt files and so on. Same with XP.
    Conclusion: Dual channel is not the problem. Added mem stick was now suspect no.1. I took the first one out and started memtest. Memtest didn't show errors after 8hours. I wondered and started Vista. Result was the same as seen before with two sticks. Errors and access violations. Replaced this stick with the other one and everything was fine again.
    Next day I tried with a borrowed MDT 2gb dual channel kit which also worked without a problem. 
    Sad but true one of the Reapers is K.I.A. . Damn....
    Now I'm sitting here with a borrowed kit of value ram which luckily allows me to let the cpu run at 3250mhz with mem divider at 667mhz (result: 406mhz) and which I can luckily keep 'til I get another kit of Reapers. I have to send my current Reapers back to vendor these days and wait for the rma process and wait and wait....
    So what started greatly ended not so great. For now I'm sick and tired of seeing bios screens or installing windows and I'm also pretty pi**** because of all the data I lost. Some crucial ones among them.
    Main problem remains: I have no idea WHY the Reaper died. I never set any higher vdimm than 2.3v what should be ok for it. It never felt hot and was directly in the main airflow. Also I have no clue why memtest didn't find any error with the faulty stick.

    Quote from: flobelix on 30-October-07, 06:12:31
    Be aware that you have to keep an eye on shader clocks when oc'ing the gpu. With common tools you're oc'ing gpu and shaders at the same time. Since I'm suspecting a misproportion of gpu/shader clocks to be one of the reasons for problems with factory oc'ed Geforce 8 you should try with different combinations. With the latest Riva Tuner you can change 'em seperately without having to mod the bios.
    Memory is at it's end I suppose, that's the problem with most high end cards, no potential. Seems as you have to live with that.
    That's true for HD2900 series I think but as far as I know 8800GTX needs it even for stable working.
    Could be your psu is too weak, maybe really time for the new Corsair. On the other hand should be strong enough I guess.
    You're ungrateful! That good old 3500+ oc'ed so well and was once a real performer and you call him crap.... bad boy.
    "You're ungrateful! That good old 3500+ oc'ed so well and was once a real performer and you call him crap.... bad boy. "
    yes you are right the CPU perform great, but its just old..(is not CPU fault in direct sense )
    "Be aware that you have to keep an eye on shader clocks when oc'ing the gpu. With common tools you're oc'ing gpu and shaders at the same time. Since I'm suspecting a misproportion of gpu/shader clocks to be one of the reasons for problems with factory oc'ed Geforce 8 you should try with different combinations. With the latest Riva Tuner you can change 'em seperately without having to mod the bios."
    Yes im aware about it, but not this is the case.. i got instability even with 2Mhz on the GD more...SD remain @ stock 1350 and memory stock as well.. and go instability...
    Reversed story if i put everythink is stock, but +2Mhz more on the memory i got the same instability....
    "With the latest Riva Tuner you can change 'em separately without having to mod the bios."
    hmm nope here, its locked increasing GD clock inscrease SD clock as well. they are locked and increased in parallel.(etc, both in same time)
    "Memory is at it's end I suppose, that's the problem with most high end cards, no potential. Seems as you have to live with that."
    mem. chips used are for 1000Mhz the VGA stock, MSI is not OCed them.. so they must have potencial.. also VGA is adverted with DOT... at least its designed to handle till 5-6% OC, i have done few review(don't trust much here,but anyway its an info) and user opinion no problem to OC till 2100Mhz(1050). So i doubt that is memory problem.
    "Could be your psu is too weak, maybe really time for the new Corsair. On the other hand should be strong enough I guess."
    Yes that is the only conclusion which i can stuck at the moment... Good news is that i have talked with distributor today and they ensured me that will delivered tomorow for me. So tomorow i will know more about that mistery when i install the more powerful(and hope so great) PSU.

  • How to get the Dynamic UI component value from JSFF page to any managedbean

    HI ,
    We have list of bean objects in jSF page we are iterating the list of bean using the forEach loop and displaying the value into Input type text (UI component) value filed .
    If we try to get the UI component value in Managed bean we are not getting the dynamic values .
    The below piece of code used to retrieve the dynamic values from the JSF page doesn't have any form :
    UIComponent component = null;
    FacesContext facesContext = FacesContext.getCurrentInstance();
    if (facesContext != null) {
    UIComponent root = facesContext.getViewRoot();
    component = findComponent(root, componentId);
    then component type casting to the based on UI component which we trying to access and getting the value as " NULL " ..Please let me know how to get the dynamic values form the JSF ?
    Please let me know if any other approach or any changes required on above ?
    Thanks

    Hi,
    the root problem is this
    <h:inputText id="it3" value="#{familyList.ctn}" />
    <tr:commandButton text="Save" id="cb3"Note how each row writes to the same managed bean property, thus showing the same data. Instead your managed bean should expose a HashMap property that you then apply values to using a key/value pair. The key could be the ID of the field, which then you also should dynamically define e.g. cb<rowIndx>. The command button could then have a f:attribute assigned that has the row HahMap key as a value. This way you truly create value instances for the object
    Frank

  • TS1398 Frustrated lost WIFI on IPAD 1 the day the new IOS came out, which 1 does not have. Tried everything listed, what next?

    Have done everything possible, spent hours reading every tip possible. What can I do, is Apple aware that lots of folks who did not update to IOS6 lost their WIFI on the 18th?

    Has nothing to do with the iOS 6 release on 19 Sept. and which can't be installed on the iPad 1.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • My iphone 4 is stalling a lot. I've had it for a year now, I have the most current OS, it's not too full of apps, or anything like that. Many times throughout the day, I cannot switch from app to app, unless I do a complete power-off. Any ideas?

    I've had it for a year now.
    I have the most current OS. I snyc it to my itunes 2-3 times a week. It is only about 25% full. It stalls (I don't know if I would call it freezing) between trying to switch from app to app. I either have to let it sit there for a few minutes, or turn it all the way off and turn it back on.
    And yes, I know to press the home button twice to get the bottom part activated. That's not working. I'm not sure if this is a common thing, or what with iphone 4's.
    Anyone got any ideas?

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • Switching dimensions depending on time of the day the report is accessed

    Hi,
    We have a requirement where one of the dimension tables - ACCOUNT is unavailable during 6 pm - 8 pm and the query should go to ACCOUNT_BKUP table instead of ACCOUNT table during that time period. In other words, we want the query to go against ACCOUNT_BKUP table when a user accesses the report between 6 and 8 pm everyday and against ACCOUNT table during any other time. What is the best approach to model this scenario?
    Edited by: vahibg on Aug 20, 2009 12:05 AM

    Hi,
    Try something with stored procedure ..
    Outline of store procedure as follows
    CREATE OR REPLACE PROCEDURE fetchdata ( p_cursor OUT refc)
    IS
    TYPE refc IS REF CURSOR;
    BEGIN
         SELECT startDate,endDate INTO a,b FROM limitationTime;
         SELECT SYSDATE INTO curDateTime FROM dual;
         IF a < curDateTime or b>curDateTime THEN
              OPEN p_cursor FOR
              SELECT *
              FROM account;
         ELSE
              OPEN p_cursor FOR
              SELECT *
              FROM account_BACKUP;
         END IF;
    END fetchdata;
    hope it helped
    --Srinivas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • The Day the Music Died...

    Hi, I have had my iPod for about 2 years now, and it is a 5g video. Lately my iPod has been freezing up, and I have to re-start it before it will work again, and even then a lot of the time it will still glitch. It would start to play a song, then it would freeze, and if I left it on, it might play a blotch of sound everyonce in awhile, and then it would quit again, and sometimes it would respond to pressing buttons. Anyways, when I plugged it into iTunes, it said that the iPod was corrupted. When I tried to restore it, I think it did all of the steps, and it went to the page where it tells that the iPod has been successfully restored and to wait for it to re-appear in the pane, but then it never does, and when I plug it back in, it again says it is corrupted. I've also tried re-installing it, but that also doesnt work. I'd appreciate any ideas, thanks.

    Hate to say it, but it sounds like the iPod's hard drive has gone bad.

Maybe you are looking for