Need Help...........Dead Mini????????????

Hello,
I am hoping another Mini expert can help me out.
a little under a year ago I built a iPod Mini with a 700MaH battery and a A-Data 32gb CF card. all was well until a few minutes ago when I paused a podcast (Bathroom Break) and when I returned it is completely dead. Unlocked, unplugged, plugged into a wall outlet, will not even connect with my PB. I've tried FW & USB cords to no avail.
Do you think I lost the Logic Board?
Thanks for the help!

Hey
Can you tell me what you did? My mini just froze on me and I tried everything you listed and nothing is working! Thanks

Similar Messages

  • Need help with min max sql

    hi all, forgot i had a user name and password and haven't needed help for quite a bit since i didn't do sql for a while but now i'm back at reporting again...
    Here is a sample table as i remember it:
    Item     Date     Time     Time Frame     Duration     Duration Frame
    A     20100926     0     5     500     10
    A     20100926     600     10     500     30
    A     20100926     1500     12     100     30
    B     20100926     1800     28     200     40
    B     20100926     2200     6     150     70
    B     20100926     2600     15     600     60
    B     20100926     3600     30     200     70
    Results Set (expected):                         
    Item     Date     Time     Total Duration          
    A     20100926     0     1600:20     --basically max (time+duration) - min(time+duration)     
    B     20100926     1800     2000:00
    Sorry, but. I didnt put my sql statement as I wasn't planning on posting and left it at work, but, i've been looking on internet and people say to use min/max function and i've attenpted it with it works with just this table (without grouping). But as soon as i group it the values seem to mess up.
    Last i remembered it gave me:
    Item     Date     Time     Total Duration          
    A     20100926     0     1600:30     --basically max(time+duration) - min(time+duration)     
    B     20100926     1800     2000:70
    I think it's looking at max duration which is 30&70 and hence it retrurns those values in the result set. Is it because of the max function hence it's returning this value? any help is appreciated. thanks
    Edited by: stanleyho on Sep 30, 2010 4:44 PM

    Okay, here we go again, repost, hopefully okay this time:
    Hi Madhu, okay, just got to work: I am using TOAD and working in Oracle 10g. Here is my table structure and the query i use to try and get what I am looking for:
    There is one extra table but that is only used to link these two tables listed below so i didn't bother posting it.
    TABLE: TX_RECON_INSTANCE_VIEW
    ColumnName ColID DataType Null
    CHANNEL_CODE 3 VARCHAR2 (4 Char) N
    DURATION 8 NUMBER (10) N
    DURATION_FRAME 9 NUMBER (2) N
    REAL_TIME 6 NUMBER (10) N
    REAL_TIME_FRAME 7 NUMBER (2) N
    ITEM_ID 4 NUMBER Y
    TX_DATE 2 CHAR (8 Byte) N
    TX_ID 1 NUMBER (9) N
    TX_TYPE 13 VARCHAR2 (4 Char) N
    TABLE: TX_SCHEDULE
    ColumnName ColID PK Null DataType
    TX_TYPE 22 N VARCHAR2 (4 Char)
    TX_ID 1 1 N NUMBER (9)
    TX_DATE 2 N CHAR (8 Byte)
    SCHEDULE_TIME_FRAME 9 N NUMBER (2)
    SCHEDULE_TIME 8 N NUMBER (10)
    REAL_TIME 10 N NUMBER (10)
    DURATION_FRAME 13 N NUMBER (2)
    DURATION 12 N NUMBER (10)________________________________________
    And the data and results:
    TX_ID TX_DATE REAL_TIME REAL_TIME_FRAME DURATION DURATION_FRAME ITEM_ID AS RUN TIME AS RUN DURATION SCHEDULED TIME SCHEDULED DURATION SCHEDULE_TIME SCHEDULE_TIME_FRAME DURATION_1 DURATION_FRAME_1
    1651000 20100710 0 0 545 20 1234 00:00:00:00 00:09:05:20 00:00:00:00 00:09:05:20 0 0 545 20
    1752223 20100710 667 12 281 7 1234 00:11:07:12 00:04:41:07 00:11:07:10 00:04:41:07 667 10 281 7
    1846501 20100710 1071 13 335 9 1234 00:17:51:13 00:05:35:09 00:17:50:09 00:05:35:09 1070 9 335 9
    2001102 20100710 1525 6 249 14 1234 00:25:25:06 00:04:09:14 00:25:22:08 00:04:09:14 1522 8 249 14
    3246669 20100710 1800 0 586 2 1235 00:30:00:00 00:09:46:02 00:30:00:00 00:09:46:02 1800 0 586 2
    4456822 20100710 2492 16 276 5 1235 00:41:32:16 00:04:36:05 00:41:32:16 00:04:36:05 2492 16 276 5
    1253168 20100710 2890 15 222 17 1235 00:48:10:15 00:03:42:17 00:48:10:15 00:03:42:17 2890 15 222 17
    1112456 20100710 3277 18 297 0 1235 00:54:37:18 00:04:57:00 00:54:35:10 00:04:57:00 3275 10 297 0
    Grouped results set:
    TX_DATE ITEM_ID AS RUN TIME AS RUN DURATION SCHEDULED TIME SCHEDULED DURATION
    20100710 1234 00:00:00:00 00:29:34:20 00:00:00:00 00:29:31:20
    20100710 1235 00:30:00:00 00:29:34:17 00:30:00:00 00:29:32:17
    --> SCHEDULED DURATION "00:29:31:20" is not correct as it should be (00:25:22:08+00:04:09:14)-(00:00:00:00)=00:29:31:22
    --> see expected results below
    Expected results:
    TX_DATE ITEM_ID AS RUN TIME AS RUN DURATION SCHEDULED TIME SCHEDULED DURATION
    20100710 1234 00:00:00:00 00:29:34:20 00:00:00:00 00:29:31:22
    20100710 1235 00:30:00:00 00:29:34:18 00:30:00:00 00:29:34:10________________________________________
    And the query I am using:
    SELECT --TXR.TX_ID,
    TXR.TX_DATE, TXR.ITEM_ID,
    TO_CHAR(TRUNC((MIN(TXR.REAL_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) )/3600),'FM00')||':'||TO_CHAR(TRUNC(MOD(MIN(TXR.REAL_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,3600)/60),'FM00')||':'||TO_CHAR(MOD(MIN(TXR.REAL_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,60),'FM00')||':'||TO_CHAR(MOD(MIN(TXR.REAL_TIME_FRAME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,60),'FM00') "AS RUN TIME",
    to_char(trunc((MAX(TXR.REAL_TIME+TXR.DURATION)-MIN(TXR.REAL_TIME))/3600),'FM00')||':'||to_char(trunc(mod(MAX(TXR.REAL_TIME+TXR.DURATION)-MIN(TXR.REAL_TIME),3600)/60),'FM00')||':'||to_char(mod(MAX(TXR.REAL_TIME+TXR.DURATION)-MIN(TXR.REAL_TIME),60),'FM00')||':'||to_char(mod(MAX(TXR.REAL_TIME_FRAME+TXR.DURATION_FRAME)-MIN(TXR.REAL_TIME),60),'FM00') "AS RUN DURATION",
    TO_CHAR(TRUNC((MIN(TXS.SCHEDULE_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) )/3600),'FM00')||':'||TO_CHAR(TRUNC(MOD(MIN(TXS.SCHEDULE_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,3600)/60),'FM00')||':'||TO_CHAR(MOD(MIN(TXS.SCHEDULE_TIME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,60),'FM00')||':'||TO_CHAR(MOD(MIN(TXS.SCHEDULE_TIME_FRAME) KEEP (DENSE_RANK FIRST ORDER BY TXR.REAL_TIME) ,60),'FM00') "SCHEDULED TIME",
    to_char(trunc((MAX(TXS.SCHEDULE_TIME+TXS.DURATION)-MIN(TXS.SCHEDULE_TIME))/3600),'FM00')||':'||to_char(trunc(mod(MAX(TXS.SCHEDULE_TIME+TXS.DURATION)-MIN(TXS.SCHEDULE_TIME),3600)/60),'FM00')||':'||to_char(mod(MAX(TXS.SCHEDULE_TIME+TXS.DURATION)-MIN(TXS.SCHEDULE_TIME),60),'FM00')||':'||to_char(mod(MAX(TXS.DURATION_FRAME),60),'FM00') "SCHEDULED DURATION"
    FROM TX_RECON_INSTANCE_VIEW TXR, TX_SCHEDULE TXS, TX_SCHEDULE_RECON TXREC
    WHERE TXR.TX_DATE=20100926 AND TXR.TX_TYPE='P'
    AND TXR.TX_ID=TXREC.RECON_TX_ID(+)
    AND TXREC.BASE_TX_ID=TXS.TX_ID(+)
    GROUP BY TXR.TX_DATE, TXR.ITEM_ID
    ORDER BY TXR.TX_DATE, TXR.ITEM_ID, MAX(TXR.REAL_TIME)--does this work for everyone now? let me know...thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I need help getting Mini Bridge to work in PS CS6

    I have already tried deleting the folder and rebooting the computer, I have tried creating a new user account, I have tried uninstalling and reinstalling the entire package and I cannot get Mini Bridge to work at all. It just keeps going to "Mini Bridge waiting for Bridge CS6..." and then never finds anything. I am having this issue on both my Macbook Pro Retina 15 and my MacBook Pro 13 (Early 2011 model). I cannot seem to find any other solutions to this problem online. I also made sure that both Macbooks are fully updated as well as all CS6 software titles. Please help me fix this!
    I also made sure I added it to the exceptions list in the firewall too.

    Moving the discussion to PS forum
    You can also follow the solution suggested in http://helpx.adobe.com/photoshop/kb/error-waiting-for-bridge-cs5.html
    they may help

  • Need Help finding mini bridge for PS CC Program window

    I am still learning PS. I have PS & LR CC. I recently purchased Photobacks backgrounds and Templates, and Mini-Bridge looks extremely helpful in their tutorial video.  What exatly is it and HOW can i get it on my PS Window?  Thanks

    As of CC, it no longer exists. Adobe pulled it. Sorry.
    You can however, keep Bridge running (which it would have been for mini bridge to work) Then Double click on the thumbnail or drag the thumbnail to photoshop. It doesn't really take any longer to do it just does not stay in front any more.
    Idea for Adobe -
    Though In windows, Adobe could force bridge to stay in front if they decide to add that option. Not sure if Mac has a similar feature.

  • Need Help - Mac Mini no longer works with LG Television

    Sometime ago (maybe about two months), my Mac Mini quit working with my LG Plasma HD TV. Currently, when I try to use the Mac Mini with the television, the screen displays a "no signal" message.
    The Mac Mini is a one year old Intel Core Duo and is connected using a DVI to HDMI cable.
    I've troubleshooted:
    1. Connected the Mac Mini to our 42" Sharp Aquous LCD - it displays fine.
    2. Taken the Mac Mini to the Genius bar. It displayed on the genius' Apple display w/no probs.
    Since then, I've tried:
    1. Reinstalled/rolled back to Leopard DVDs (no updates applied) - No luck
    2. "Driving" the Mac Mini via Screen Sharing using my MacBook and monkeying with the Display preference pane. While screen sharing, I tried using SwitchResX, too (not too certain of the settings though) - No luck.
    Of note:
    1. Before the trouble began, I was pleasantly surprised to see "LG" (automatically) listed as the display in the Display preference panel. Support was literally plug and play. Currently, when I drive via Screen Sharing, "LG" is no longer listed. Alternatively, when I connect to the Sharp Aquous, the Display preference panel DOES list "Sharp" as the display.
    Any ideas?

    I'd be interested in any resolution here. Here's my story:
    I have a Mac Mini model MA723LL/A and a Haier P42LV6-T1 42" HDTV plasma with VGA and HDMI inputs. I first attempted to hook the Mac to the plasma TV using the DVI->VGA adapter that came with the Mac. I got no image at all on the TV, and the TV claimed 'No Signal'.
    Then I used a DVI->HDMI adapter, and hooked the Mac to the TV thru the HDMI port. I got a picture and was happy. I setup iTunes, got the wireless working, surfed the web a bit and all was OK except the resolution seemed wonky. So I opened the Mac's settings panel to adjust the resolution, and as soon as I opened the settings panel, the screen went blank, with the TV claiming 'No Signal'. I shut off the Mac and rebooted, and from that point forward, what happens is this:
    press On Button->
    Apple Boot Screen->
    MacOS 10 loading->
    desktop For About 1 millisecond->
    screen goes blank with TV claiming 'No Signal'
    I hooked the Mac to my Dell 20" LCD monitor thru the monitor's DVI input and got a great picture. I tested all the resolution settings, and everything was fine. I have tested the Mac on the TV with all available resolution settings and it's always the same story (see above for sequence)
    I'm kinda at the end of my rope. The Mac seems to be changing something on its video output at the end of its bootup, but I have no clue what. Has anyone seen anything like this? Any advice at all?

  • Need help with mini

    hello all you all,
    i have a mini ipod that works great, but recently my hard drive on my powerbook died and i had my hardrive replaced. i have heard that if i do link my mini to my mac, that i will lose everything on my mini- i think it was set up to automatically sync - and it has been quite some time since i have tried syncing my mini to my laptop. i have most of my music that i can put back into my laptop, but there are a few things that were special audios that i had (not music) that were also on my ipod that i don't have back-up copies of to put back onto my laptop-
    is there anything i can do to adjust the setting so it won't erase everything as soon as i link it to my laptop?"
    so, that is my dilemma -
    if anybody has a solution that would be great- for now, i have decided not to connect my mini to my laptop and just use it as is, with no more songs or audios added to the mini.
    Thanks so much for any advice that you all have for me : )
    belovedjs
    PowerMac Pro 17" and Powerbook 12"   Mac OS X (10.4.8)   ipod 5th generation, mini ipod

    Press the Option and Command keys while connecting the iPod to your computer and keep holding them down until the iPod becomes visible in the iTunes source list; this keyboard shortcut temporarily stops the automatic synchronization, and you can then change it to manual synchronization.
    (19454)

  • Need Help Ipod mini not working

    I have a mini and it won't show up on my computer, at least I can't find it anywhere, if anyone one has had this problem please let me know if you remember some simple, and basic steps please write them out, I would greatly appreciate it, Thank You.

    Unfortunately, there is no one ‘Silver Bullet’ answer for this issue. Many things can contribute to the problem. Here are various solutions that you can try to correct your problem. One should work.
    First, make sure that the iPod is fully charged.
    Try Resetting Your iPod while it's connected to the computer.
    Hold down the Menu and Select buttons until you see the Apple logo (or Menu & Play/Pause in older models).
    This will often get it recognized. It may take several attempts.
    Try closing and re-starting iTunes. There have been cases where iTunes refuses to see an iPod, but after re-starting, it works again.
    Also try re-booting the entire computer. Especially if the PC has been operating for a long time &/or many programs have been opened and closed, repeatedly.
    Other USB connected peripherals may be the cause as well. Try removing all connected USB items and attaching the iPod. If you have a USB keyboard, it may be worth a try using the adapter to convert it to non-USB. If the iPod connects, continue plugging things back in until you have the problem return. You may have then isolated the issue. Sometimes it could be a printer, camera, Flash Card reader, or other attached device causing a conflict.
    If your iPod shows up in Explorer under 'my computer' try changing the drive letter: Click on Start=>Control Panel=>Admin Tools=>Computer Management=>Disk Management. Right-Click on the iPod and select “change drive letter”. Choose something further along in the alphabet that is unused. Usually, “M”, “N”, “O” (or something similar).
    If that doesn't work, Put Your iPod into Disk Mode then plug it in and you should be able to Restore the iPod
    Your PC may have difficulty with the USB2 protocol and the iPod. See this Article for a possible solution: iPod not Recognized Correctly
    Also try these hints (and the other suggestions above) from any other USB port you may have on the PC. Sometimes switching USB ports can make all the difference.
    Also See:
    Your Windows PC doesn't recognize iPod
    iPod does not appear in iTunes or on the desktop
    iPod appears in Windows Explorer but does not appear in iTunes“Strange iPod Behavior within Windows”
    If all else fails, there have been some successes using the information in this post below. WARNING: I have absolutely no clue to what this download file does, and introducing it into your PC environment is risky. Some Forum posters have experienced less than benign results. Proceed at you own risk.
    http://discussions.apple.com/message.jspa?messageID=1222335#1222335

  • HOW TO?: Need help setting up 3 different iCloud accounts for my kids (so each has own iMessanger)using same Apple ID (mine) ....they don't have their own separate email addresses to work from...how do I do this?

    Need help setting up 3 different iCloud accounts for my kids (so each has own iMessanger)using same Apple ID (mine) ....they don't have their own separate email addresses to work from...how do I do this?

    Any devices connected to the same icloud account can sync all the data on that account.  For this reason an icloud account is really for a single user.
    On a mac, if each user has their own account, then the itunes for that mac account should be set up to connect to that user's icloud account (System preferences>icloud).

  • My D420 is not working on my new Mac Mini I need help

    I have a new Canon Printer D420 . I love the machine works great
    the price was great. It worked good on my old Imac for a few weeks then
    I bought a new Mac Mini and now I can't get it to work. I reloaded my
    solfware taht came with it..... need help
    thanks 
    Ray Land 

    Hi Ray Land,
    We can help narrow down the cause.  What operating system are you using on your new Mac Mini? 
    If you are running the Mountain Lion OS, you can download the latest driver here.  An important note is that the current print queue must be deleted before installing the new driver.  This will ensure proper communication.
    If this doesn't work or you need further assistance, please contact us here.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Just bought an ipad mini I have synced it with my itunes but when I go to play my music it just flashes threw all the songs or albums or artists like it is on super fast shuffle until it finds a song it would like to play.  need help please

    Just bought an ipad mini I have synced it with my itunes but when I go to play my music it just flashes threw all the songs or albums or artists like it is on super fast shuffle until it finds a song it would like to play.  need help please

    Since you are a new iPad user .....
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download an iPad User Guide to the iPad from the iTunes store.
     Cheers, Tom

  • I need help to transfer CS4 from a dead G5 to a new Macbook Pro. Can't find my program discs but purchased CS4 in 2008 and have record of it.

    I need help to transfer CS4 from a dead G5 to a new Macbook Pro. Can't find my program discs but purchased CS4 in 2008 and have record of it.

    Sounds like you got it installed and activated. Don't forget your updates.
    Adobe - Photoshop : For Macintosh
    Gene

  • Need help hooking up Maxent 42" Plasma to mac mini

    i have a newly acquired maxent 42" plasma product number mx42xm11 i called their rep and he said it wouldnt work but i have read a couple forums where people have gotten other maxent monitors to work i was wondering if someone could help me set this one up.

    I searched and found this:
    Input/Output connections
    2 x Composite video input (RCA phono), 1 x DVI-HDCP (24 pin digital DVI), 2 x S-Video input (4 pin mini-DIN), 2 x HD component input (RCA phono x 3), 1 x VGA input (15 pin HD D-Sub (HD-15)), 6 x Audio line-in (RCA phono x 2), 1 x Subwoofer output (RCA phono), 1 x Audio line-out (RCA phono x 2), 1 x VGA output (15 pin HD D-Sub (HD-15)), 1 x Serial (9 pin D-Sub)
    It looks as simple as connecting a standard VGA cable from the Mini to the VGA port. It also listed the resolution as 1024x768, which is a standard 4:3 resolution.
    You could also try a DVI cable as long as your DVI input looked similar to tha back of your Mini.
    Where would you need help?
    Greg

  • Please help! I am trying to change my Apple Id that used to be my mother to Mine- Every time i have it changed and i go and try and do an update it continues to ask for her old password. I really need help with this!

    Please help! I am trying to change my Apple Id that used to be my mother to Mine- Every time i have it changed and i go and try and do an update it continues to ask for her old password. I really need help with this!

    Phil0124 wrote:
    Apps downloaded with an Apple ID are forever tied to that Apple ID and will always require it to update.
    The only way around this is to delete the apps that require the other Apple ID and download them again with yours.
    Or simply log out of iTunes & App stores then log in with updated AppleID.

  • Need help installing snow leopard on mac mini 10.5.8 intel based

    I need help need help installing snow leopard on mac mini 10.5.8 intel based so if u kno how pls message me thanks
    <Email Edited by Host>

    You need to purchase the upgrade disk (it is a DVD). Then just put it in and run the installer. When it was first released it was $29 USD, do not know if the price has changed or not.
    The usual precautions about backing up your data apply. In fact I would recommend either making a Disk Image of your current boot drive or using something like Carbon Copy Cloner to copy it to an external drive. I upgraded 5 machines from Leopard to Snow Leopard without any issues, but better to be safe than sorry.

  • Need help ...just bought a mac mini, how to install adobe lightroom4 without the cd-rom?

    need help ...just bought a mac mini, how to install adobe lightroom4 without the cd-rom?

    You could download it as a trial version, and enter your serial number when prompted to buy.
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_lightroom

  • Need help please with ipod mini

    Hi,I had my ipod mini sent into service as the pasue button was bust and I now have a totally new ipod mini send out and Im trying to install it on the pC and it doesnt let me,need help pls

    You may need to format the iPod for use with Windows.
    Try this instead of using the supplied installation CD.
    Download the iPod Updater, install this to your computer, restart the computer, run the Updater, then connect your iPod when prompted (not before), then follow the set up procedure.
    If this is what you are having problems with, then post back with what happens and any error messages you see.

Maybe you are looking for

  • Windows 8.1 Problems

    Hi Everyone, I recently purchased Windows 8.1 and I've been having so many problems, I'm not sure what to do. I get constant blue screens with various messages. I've reinstalled windows 8.1 about 5 times already trying to fix problems. I've run chkds

  • Table of contents in PDF files

    IBooks gives two options for displaying the Table of Contents for PDF files-thumbnails or a conventional table. The thumbnails view is useless to me, and I would like the conventional table view to appear by default. Unfortunately, the TOC almost alw

  • Bonded warehouse moement capture

    Hi friends I am not from MM, and hence i need some basic inputs... The requirement is to records all the materials movement in an out of a warehouse. Is the  a way that could be done. I don't wont to reocrd movemnet whichh would happen within the war

  • Java applet writes to file on client, no signing necessary

    Hi, I wonder if this is a feature or bug: I download and execute in my browser an unsigned applet/jar myCharts.jar from server. The applet references classes from package org.jfree.chart, which are not packed in myCharts.jar downloaded from server, b

  • Folder from Network drive keeps disappearing in favorites sidebar

    I have a couple of folders from our network drive that I have dragged into my favorites sidebar. However, every now and then they randomly disappear and I have to re create the shortcut in the sidebar again. Is this just a bug in the system? Does any