Go to Folder problem.

In the Finder menu there is a Go----> Go to Folder option. However whenever I type in the name of a folder I know to exist it comes up with 'Folder cannot be found'. Clearly I'm doing something wrong but can't think what, I've also tied typing the name of the name of the folder as is appears e.g. Music or Movies just in case it's case sensitive but it still comes back as Folder cannot be found'.
Any ideas as to what I'm doing wrong would be appreciated.

For folder that is in your home directory, you could just use Spotlight.
Command-Space
Music
For a folder that is NOT indexed by Spotlight, then Finder -> Go -> Go To Folder... Either needs
1) a Full Unix style path as in /Users/<short_username>/Music,
b) or use the Magic character ~ which stands for your home directory, as in ~/Music,
III) or a path relative to the front most folder being displayed by the Finder.

Similar Messages

  • Folder problems on external drive, not showing correct file size

    I've run across a strange problem. I'm media managing for a tv show, meaning I'm offloading video from CF cards onto 2 external drives, one is a Drobo Raid (set up for backup) and another is a Lacie rugged drive. After copying the media to both drives, the folder I copy will match, but sometimes as I drill upward in my folder structure, suddenly the file sizes will not match. To be more clear: 2 folders will show differing file sizes, but inside that folder is only another folder,nothing else, which matches across the drives. I've shown all files in finder and there's no hidden files, though sometimes I see the ds_store files are different sizes (8k vs 16k), but that's not always the case. Sometimes if I simply create a new folder and move it's contents into it I can get the folders to match, but sometimes that doesn't work. It's part of my workflow to show that these copies match exactly via screenshots, and although the most important folder (the direct folder holding the footage) always matches, these folder problems are super frustrating as it's not constant, and any workarounds also work inconsistantly.
    I had an accidental disconnect of the Drobo one time, and although none of the data seems to have any problem, I fear it's done something to the directory. The rugged drive is swapped out every few days and the problem seems to be on the Drobo. Because the nature of the data is pretty important, I'm afraid to just try messing around with repairing or other software solutions unless I know it's super safe and won't harm the data.
    I'm at a loss as to what's causing it and at the very least how to avoid it cropping up. Any help or insight would be appreciated!

    I had the same problem with my iMac, first I repaired the disk, then I ejected the disk, restarted, and then reinserted the USB in a different port.  All of my files magically showed up.  I don't know what caused the error but it has been working fine since. 

  • My backup failed because of folder problem

    backup up failed due to backup folder problem I cannot find and reset

    Hey Barbara Rohrer,
    Thanks for the question. I understand you are having issues backing up to your Time Machine. The following articles are relevant to your issue:
    OS X Mountain Lion: If a Time Machine backup is interrupted
    http://support.apple.com/kb/PH11174
    OS X Mountain Lion: If Time Machine doesn’t back up certain files
    http://support.apple.com/kb/PH11170
    Mac OS X 10.5: Time Machine stops backing up to external disk
    https://support.apple.com/kb/TS1550
    Thanks,
    Matt M.

  • Any Update on the "Ghost Folder" Problem

    Just wondering if there has been any furhter insight into the "Ghost Folder" problem created after editing in PS CS3 (from LR2)?
    Is there any manual way to get the image from the ghost folder to appear back in the proper folder?
    Thanks
    Ken

    Hi Guy,
    Thanks for the reply.
    When I edited the image in PS CS3 I saved it to a folder as a .tif (so I could send it to a print lab). When I went back to LR2 the saved tif did not show up in my tif folder so I synchronized that folder and that's when it showed up in the "ghost folder" in LR2. When I look at the original folder of tifs this particualr image doesn't show up. I then tried to move (drag and drop) from the ghost folder into the original tif folder but LR tells me there is already an image there by that name.
    So if I manually remove the ghost folder (via LR or in windows) what will happen to the saved tif?
    Right now I have PS CS3 set up as the first editor in the preferences, with tif as thw working format. Are you suggesting that PS be set up as the additional editor as well? WHat do I put in the preference for the primary editor?
    BTW, I am also working in Win XP Pro.
    Thanks
    Ken

  • Move mail attachment to specified folder - problem

    Hi,
    I am busy making a script that downloads the mail attachments to a specified folder so that Hazel can work further on the files.
    Here is what i am trying to achive:
    Only Jpg, Tiff, Doc, Docx, mp3's and PDF's are moved to a folder called: Mail Attachments in the downloads folder and renamed with a prefix to the the date email was send. For Hazel to work correctly i also want to add the senders headers to the spotlight comment.
    So far all went well and i got a script working that does all these things.
    Only problem that is occuring now that images are duplicate twice in the folder:
    first file as i want: i.e. 20130711_RTP_1846.jpg and the second file is only named 2013 with no extension aswell.
    This happens only with the images, not with for example an PDF.
    Here is my script, by the way this is my first script and i copied, paste things i found online tweaking it to my wishes.
    using terms from application "Mail"
              on perform mail action with messages theMessages for rule theRule
      -- set up the attachment folder path
                        tell application "Finder"
                                  set folderName to "Downloads:Mail Attachments"
                                  set homePath to (path to home folder as text) as text
                                  set attachmentsFolder to (homePath & folderName) as text
                        end tell
                        tell application "Mail"
                                  repeat with eachMessage in theMessages
      -- set up the folder name for this mail message's attachments. We use the time stamp of the date received time stamp
                                            set {year:y, month:m, day:d, hours:h, minutes:min} to eachMessage's date received
                                            set timeStamp to (y & my pad(m as integer) & my pad(d)) as string
      -- get all headers from email and store in _Comment
                                            set _sel to get selection
                                            set _links to {}
                                            repeat with _msg in _sel
                                                      set _messageURL to _msg's all headers
                                                      set end of _links to _messageURL
                                            end repeat
                                            set AppleScript's text item delimiters to return
                                            set _Comment to (_links as rich text)
                                            try
      -- Save the attachment
                                                      repeat with theAttachment in eachMessage's mail attachments
                                                                set originalName to timeStamp & "_" & name of theAttachment
      --set originalName to name of theAttachment
                                                                set savePath to attachmentsFolder & ":" & originalName
                                                                try
      --save theAttachment in file (savePath) for only these files all other are excluded
                                                                          if originalName contains "jpg" then save theAttachment in file (savePath)
                                                                          if originalName contains "jpeg" then save theAttachment in file (savePath)
                                                                          if originalName contains "tif" then save theAttachment in file (savePath)
                                                                          if originalName contains "tiff" then save theAttachment in file (savePath)
                                                                          if originalName contains "pdf" then save theAttachment in file (savePath)
                                                                          if originalName contains "doc" then save theAttachment in file (savePath)
                                                                          if originalName contains "docx" then save theAttachment in file (savePath)
                                                                          if originalName contains "mp3" then save theAttachment in file (savePath)
      -- insert _Comment in spotlight search
                                                                          tell application "Finder"
                                                                                    set theFile to savePath
                                                                                    set the comment of file theFile to _Comment
                                                                          end tell
                                                                end try
                                                      end repeat
                                            on error msg
      display dialog msg
                                            end try
                                  end repeat
                        end tell
              end perform mail action with messages
    end using terms from
    on pad(n)
              return text -2 thru -1 of ("0" & n)
    end pad
    What strange is, that if i take out the part where the comment is filled with the header info, the script works fine producing only 1 file, but when i added this part of the script, i have the two files!
    Script is activated by a mail rule when mail has an attachment.
    Here a screenshot with the two images:
    Hope someone can help me, to tell me what i did wrong.
    Grt,
    Rob

    The problem is subtle, but noticable in your screenshot (that was a stroke of genius).
    Look closely at your screenshot. Note the file details below the image and you'll see the Name label:
    "2013
    07
    11_130711RTP_1846.jpg"
    Do you see the issue? It's not that the file is called '2013', it's called the entire expected file name, but with returns between the date elements. The problem is that return characters don't show in list view.
    So why are the returns there?
    That's because in the section of code where you build the comments you include the line:
                                            set AppleScript's text item delimiters to return
    Then you build the file name:
                                                                set originalName to timeStamp & "_" & name oftheAttachment
    Now the file name is technically a list of components (think of it as {originalName, timeStamp, "_", 130711RTP_1846.jpg} )
    When this list is coerced back to a text object, AppleScript inserts the current text item delimiters between each element, which results in your multi-line filename.
    The solution is actually a best practice when dealing with text item delimiters - always, always, always reset them when you're done.
    In this case you only want to have returns in the comment, so you should restore the TIDs after you've built the comment:
    set tid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to return
    set _Comment to (_links as rich text)
    set AppleScript's text item delimiters to tid
    Now the TIDs will be set back to the default and you won't have the extraneous returns in the file name.

  • I am having the DCIM empty folder problem ..

    The folder first showed that there were random folders with some pictures in them so I transferred them (the DCIM folder) (transferred to my computer), but there was only about 1/10 of my pictures that showed up.. now it says that the folder is empty after transferring the pictures that did show up. Where are all my other pics and how can i get them to show up? I have tried everything listed on other posts with same problem but none of the  solutions worked for me >.< My girls have filled the iPad's storage with video and pictures and I am trying to clear them out as there is NO storage space left -- without deleting the vids/pics!

    also forgot to add that on the iPad under photos it says there is none, but under Albums that is where the other pics are on the iPad.. does that make a difference about them not showing up in the DCIM folder?

  • How I Solved My "Can't Import My Home Folder" Problem While Staying Sane

    This may be a well-known work-around for Time Machine and Migration Assistant, but I didn't find any reference to it in searching in Google (which included some threads here), so I thought I'd post it in case anyone else is experiencing similar problems.
    I was having problems with some program install permissions and tried fixing them in more traditional ways without success, so I decided it was a good day for an Erase and Reinstall of Leopard.
    I didn't want to copy my entire Home directory's contents and I have 6 HDs (four internal and two external) totaling about 1.5TBs. So, to prepare for the reinstall, rather than use Backup, I copied all important files to my other drives and then I copied my Home directory to another drive in the machine. Satisfied that everything was backed-up, I reinstalled Leopard using the Erase and Install option and soon had a good system, fully updated.
    However, when I went to copy the Home Directory I kept getting errors saying that I can't alter these files and folders, even when I drilled down into the subdirectories. I didn't try copying individual files, but then I had no desire to do so given the amount of time that would take.
    I looked around but could find no good solution. However, I did come up with a workaround and this is what I did:
    First, I moved my Home Folder designation to the one on the backup hard drive by:
    1) Go to System Preferences
    2) Click the lock to make changes and enter your user password
    3) Right-Click on your User Account and select "Advanced Options"
    4) From the drop-down window, to the right of the "Home Directory" box select "Choose..."
    5) Navigate to the backup User Account home folder and select it and click "OK
    6) Relock the Accounts pane
    7) Now you can delete the "old" Home Folder under your OS drive: Users/user account
    8) Now just copy the backed-up Home Folder (that is now your real Home Folder) to the OS drive: Users/user account
    9) Repeat steps2, 3 and 4, this time selecting your now moved Home Folder in the OS drive: Users/user account
    10) Now you can delete the backup or keep it AS a backup.
    I know this is a kludgey, wrong way to do backup and that Backup is the way to go, but for those out there who don't do it or have some problem restoring it, this is a possible way around so that you don't end up having to restore everything by hand.
    This workaround may have already been discussed and well-known, but I had not seen it and am posting this in the hopes that it will help someone in trouble.
    JoeL

    joeldm,
    There is a "proper" way to do what you have done. First, one must create an account within the new installation using the exact same username and short name that was used in the old installation. Then, one enables the "root" account and logs in as root.
    Within the root account, the local HOME folder that was created for the user is placed in the trash, then replaced with a (same-named) copy from the backup. THat HOME folder copy will be onwed by root, so this command must be run in Terminal:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown -R username:staff /Users/username</pre>
    In the above command, all instances of "username" are replaced with the user's short name. For example, if the user's name is "fred," the command would be typed exactly like this:
    <pre style="overflow:auto; font-family: 'Monaco'; font-size: 10px">chown -R fred:staff /Users/fred</pre>
    The command is executed when <RETURN> is pressed. NOTE: The specific command listed above applies only to 10.5.
    One would then log out of the "root" account, and into the account in question. If all seems well, one would log back into the root account, empty the trash, then log out of and disable the root account.
    Alternatively, if there is a Time Machine backup that can be used, the Time Machine interface can be used in the root account to replace the trashed HOME folder, instead of copying manually in the Finder. This would generally be a better method to use, if possible.
    Scott
    EDIT: If one wishes to replace/restore only certain portions of a HOME folder, this is possible. The same methods would apply to only limited segments within a HOME folder. -s

  • Officejet Pro 8500 A909g Scan-To-Network-Folder Problem On New Dell Optiplex 3020

    I hope that I am posting this issue to the correct board.
    I recently purchased a Dell Optiplex 3020 64-bit desktop running Windows 7 Pro. My home network now has the old HP printer and my original 2003 vintage Sony Vaio XP Home 32-bit on wired connections. There is also an HP Notebook 64-bit running Windows 7 Home, using a WiFi connection. I replaced a Linux clone (which had connected ok to the printer) with the new Dell on the same wired connection.
    With the other 2 PCs, I was able to set up Scan To Network Folder using the original HP software with no problems. I used a current setup file from the HP site to set up the Dell. The file is: "OJP 8500vA909_Full_14 HP Webpack". The Dell prints fine, but when I try to set up the network scan folders on the Dell the setup stalls and I get a request for an SSL certificate. I don't know if this is being generated by the OS or by the HP setup file that I downloaded. I can't figure out how to get the network folders to work on the new Dell, and I know next to nothing about SSL.
    To be clear, the old Sony is a 32-bit Windows Home Edition, the HP notebook is Windows 7 Home 64-bit, and the new Dell is Windows 7 Pro 64-bit. Any suggestions will be appreciated. Sometime soon, the Sony will be retired and the OS environment will become much simpler.
    While I'm at it, I probably should update the printer firmware. However, my guess is that I should wait to do that until the old 32-bit Sony goes out to pasture.
    TIA for any advice and suggestions.

    Hi Alla-guy,
    As far as I know, you have posted your issue to the correct board, now let us see what we can do to get it resolved
    I will answer your easier question first, in regards to the firmware. You can update the firmware whenever you are ready! You don't need to wait for the other computer to reach it's end, as the firmware is just within the hardware of the printer and shouldn't affect anything software wise on the computer, so go ahead and update the firmware when you have a few minutes!
    As for the setting up to scan to a network folder, it is odd that it's asking for SSL, do you know if you're the administrator on the new computer?
    I realize the instructions in this Set up and Use Direct Digital Filing for Windows document are for setup, but still have a look and make sure that is how things were going for yourself. Also, it may be a good idea to check any firewalls or anti-virus that you have and temporarily disable any firewalls or programs that could be blocking things over the network.
    Let me know how this goes for you!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • PDF XChange annotations are not saving (temp folder problem?)

    Hello,
    I'm having a problem with the XChange PDF viewer within Firefox:
    When annotating a file outside of Firefox, I can save the changes and have them reappear
    when I close and re-open the file
    Doing this inside Firefox, I cannot, it appears that the files are saved, but they do no
    reappear on re-opening. This is true even when annotating a file that is opened from my
    hard drive (as opposed to opening it from a website)
    Doing this inside IE, it works properly. However, I need to use Firefox here at work
    instead of IE or XChange separately.
    I believe the problem lies in the fact that when XChange/FF open a pdf inside FF, a file
    is created in C:\Temp and the changes are somehow being lost here. Interestingly, if I
    take the file opened within FF and open it in XChange outside the browser (by using the
    button in the bottom left of the viewer pane) I _still_ cannot save my changes, and I now
    get an error message along the lines of:
    ‘Error saving document to “c:\Temp\pdf38.tmp”:
    Error [IO subsystem]: Invalid access mode’
    where 'pdf38.tmp' is the name of the temp folder created when the original file was
    opened within FF.
    I didn’t have these problems a few months ago, so it’s something to do with the new
    versions of XChange and FF. Please let me know what you can do to fix this. I really
    like using XChange, but if this can’t be fixed I’ll have to switch to something else to
    do my work.
    == This happened ==
    Every time Firefox opened
    == Reinstalling latest versions of FF and PDF X-Change

    I wrote a ton of notes and I freaked out when it didn't work so I emailed the pdf to myself, and its the current version with all the notes that I had just taken.
    try it out! it worked for me

  • Save in draft folder - problem

    As I understand it, the save in draft folder function is supposed to appear only for XDP forms.  We have a PDF form where the submit button in the form is set to submit as PDF.  And yet, the save button still appears in workspace container.  If a user selects the save button and later opens the form/task, the form is converted to XML and unviewable.
    Within the UserServiceV2 activity, I do not check off the "Reader Submit - Submit via Reader" checkbox.  All of our users have acrobat.
    Is there some way for the function to work with PDFs?  If not, is there a standard workaround to offer that feature to end users?
    Thanks

    Hi Livecycle Architect,
    Did you ever resolve this issue? I have a part of the problem that you describe here. While all my forms are submitted as XDP, if we save a form to Drafts, when we open it latter it shows XML and the form is unusable.
    Any pointers will help.
    Thanks

  • Possible Deleted Folder Problem with Iphoto 09

    Ok, I've run into a kind os odd problem. I've been able to tell that all of my pics are still on my hard drive in the iphoto library, however iphoto won't display any images. After doing a little digging it seems that my "data" folder is missing, and all of my pics are located in iphoto library > originals.
    How can I get this folder back, or what can I do to restore things back to the way that iphoto is supposed to work?
    2nd Question, for what ever reason, and it's mostly because I am really new to iphoto is how can I access my images so that I can send the files to others? I just need to get to the folders where they are stored (the iphoto library shortcut doesn't provide access to the files, just the software)so I can zip a bunch of shots and send them out?
    Thanks.

    nd Question, for what ever reason, and it's mostly because I am really new to iphoto is how can I access my images so that I can send the files to others? I just need to get to the folders where they are stored (the iphoto library shortcut doesn't provide access to the files, just the software)so I can zip a bunch of shots and send them out?
    Second Question First:
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    As to question 1: try Back Up and try rebuild the library: hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    Regards
    TD

  • Mail Junk Folder Problem

    My junk mail folder says that there are 1953 messages in it but when I click on it there is nothing there. The count for my regular mail works just fine and I can see my regular mail just fine as well. I can also throw away and delete mail from my normal mailbox with no problems.
    How do I reset the Junk Mail folder so that it displays and deletes properly?
    I have tried to "erase junk mail" and also "erase deleted messages" but nothing happens. I have also tried to delete the Mail folder from my Caches within my Library and also the Envelope Index from the Mail folder within my Library.
    Does this sound like a familiar issue?

    Hi BC Dezign, and a warm welcome to the forums!
    Is this a POP or IMAP account?
    Did you do these exact steps?
    Safe Boot from the HD, (holding Shift key down at bootup), it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move these folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup

  • Unique "flash question folder" problem, doesn't boost from either HD/drive

    Hello, I am pretending to be a Mac expert to my friends (Please don't laugh at me, Cornelius, Douglas, Duane or others). One of my friends went to me with a iBook G3 with a classic flashing question folder on screen. I promised her I would fix it next day. But now I am stucked on it. I thought it would just be an OS issue. It seems it is more complicated than that. I tried to install 10.4 from DVD, by restarting while holding down "C" key. It did not boost from there. Fine, it might just be an optical drive problem. I dived into the book, replace the HD with a known-good one having OS installed. The book still won't boost. Fine, it might be the a bad connection between HD/drive to the mother board. So I threw in a good signal cable. Nothing I have done really helped the boosting issue. I think I have to bring the same non-working book back to her on Tues or Wed. So embarrassed. Maybe you guys can help me out? Thank you.

    There is an article on the flashing question mark that might be helpful:
    http://docs.info.apple.com/article.html?artnum=58042
    It sounds like you might already have done more than was necessary, but it should be possible to get back in business. I'm not the one to advise you, as I am not all that experienced myself. But the more knowledgeable memebers of the forum should be able to help.
    One thing--do you have all of the original install discs? If you don't, see if you can get them from your friend. You will probably need to have them on hand. Often people have to hunt for these, so you might be able to stall for a little more time while you get some answers from the forum. Also, the install discs will contain the Apple Hardware Test, which you can run and look for hardware problems.
    Also, identify the iBook model more completely. Here's the article to find that out:
    http://docs.info.apple.com/article.html?artnum=88039
    Posting more detail will help others to advise you.
    Good luck!

  • Printing items in a folder problem - help

    Ok, I've created a workflow that basically goes like this:
    Get specified items
    Get folder contents
    Filter contents for text files
    Print text files
    Move text files to somewhere else
    I then save it as a folder action plug in and assign it to a specific folder so that the script runs when I insert a file into the folder. When I do, the script runs ok, goes through all the steps, opens up Printer Setup Utility and the Print dialog but nothing comes out the printer.
    If I look at the completed items list on the printer, it shows like the file was completed but the printer never actually printed anything.
    Is this a problem with the printer driver or with Automator? Anyone have an idea what might be happening? If I substitute "Print File" for any other command like "Open File" it works great. It seems the problem is somewhere in the printer. If I open the file and Print it, everything works.
    Is there anyway I can get the script to not open the Printer Setup Utility and the Print Dialog box?
    iMac G5 17"   Mac OS X (10.4.7)  

    Iam not able to set the main folder's (i.e INPRISE) acl (MyAcl) on the subfolder "MyFolder" because the owner of MyAcl is "system" whereas the owner of MyFolder is user "i1" .Which is the best way of solving these ownership issue which iam running into ? I want to be able to create different folders ,assign a group of uers to each of the folders who can create as well as modify,delete each other's folders/documents (as i have mentioned in my first post in this thread) ?
    thanks
    Srinivas

  • Media folder problem

    pls i am expiriencing problem with my blackberry torch 9800, the picture, music, video folder cannot display anything, if i open it shows only empty while there are items inside, while if i connect it with my PC it shows everything, i thougt if its a virus, but they said blackberry cannot be infected with virus, so what is the problem pls

    kb10 wrote:
    pls i am expiriencing problem with my blackberry torch 9800, the picture, music, video folder cannot display anything, if i open it shows only empty while there are items inside, while if i connect it with my PC it shows everything, i thougt if its a virus, but they said blackberry cannot be infected with virus, so what is the problem pls
    Try a Battery Pullout and insert it back after 5 to 10 seconds - If nothing happens then try a normal restart / reboot
    Regards Eree - Follow me on Twitter - Facebook - Google+
    For More visit My Blog

  • Blocks in the \dll folder problems

    Hello
    Below is a problem that we had crop up on 3 machines.  We are
    running some labs that reside on a server.  The labs are in
    "I:\Infinity_Labs" and the required DLLs are in "I:\DLL".  All of
    the systems run fine except for these three.  Below is the
    description of the problem and what we've tried to fix them, including
    the results.  Any help would be appreciated.
    >> 123NH -
    >> Systems #5, 10, and 16 (same numbering scheme as rm 124NH) are not finding
    >> the DLL directory for the labs. Examples of this are Week 1, Binary and
    >> Week 2, Digital. If you point them to the correct folder (i:\DLL), the
    >> labs run fine. Possible fixes: rerun the command line script for the
    >> previous error or reinstall software.
    >
    > The problem here seems to be that the blocks contained in I:\DLL are not
    > registered in VAB. The other systems seem to be picking them up fine on
    > their own automatically. These three are not. I tried manually doing so but
    > ran into the 'exceeding allowed blocks' error you were talking about finding
    > (but that we couldn't relocate later) before I could register them all.
    > Rerunning the command you gave us made no difference. Looks like we need
    > some more tech support.
    Please help.  Thanks

    I would recommend that you use VAB's Auto Build Menu... command to rescan all of the block components from any folders that contain the DLL files. The default folders are c:\Program Files\Hyperception\VABINF and c:\Program Files\Hyperception\VABINF\Hierarchy. You will need to select the 'Delete existing libraries' option. VAB has a maximum limit on the number of block components that can be supported. If the Auto Build Menu... command does not correct the problem then it may be possible that too many user-created, custom blocks have been added to the VAB Block Function Selector. Regards, Steve

Maybe you are looking for

  • How do you have a single test case run on multiple platforms in both a Deploy/Test build and via MTM?

    I am wanting to have a scheduled nightly build execute my testcases for multiple platforms/configurations.  I have multiple VMs running in these environments but the method Microsoft provided (without digging into customizing the build template) does

  • Western Digital 10000 rpm on G4?

    Hi, i'd like to buy a Western Digital 74 Gb SATA 10000 rpm disk. do you know if it works with my G4? (of course with a pci sata adapter)

  • Can't find phone1 in OCRD

    Hi experts, I want to put customer's contact Tel in sales order document layout, but when I put a database field and selecedt OCRD table, there is no phone1 and phone2 fields. I can't specify customer's TEL in sales order document layout. please help

  • Samsung 205bw SyncMaster

    So we purchased this 20" Samsung 205bw SyncMaster LCD monitor. It's got DVI and VGA inputs, supports a native resolution of 1680x1050 and has some pretty nice specs other than that (for a consumer grade monitor that is.) Now the only problem we're fa

  • Oracle 10g database options

    We have Oracle 10.2. I used dba_registry to get database options. How to find these options' dependencies? dba_dependencies has dependencies for all packages, funtions, procedures and triggers. But options are Oracle components. My purpose is that we