Zen 8Gb: problems to find all so

Hej all,
I have just recently purchased the Zen 8 Gb and uploaded many songs today. Somehow I am not able to locate them all, seems like some of my folders are not to be played ?!?! They are starting with a number, does any of you experience the same problem ?
I can thus find them in all tracks or create play lists for the folders on my computer and hereby play them, but I wonder why I cannot find the folder itself ?
Thanks.

Hello
data: a type i,
      b type i,
      c type i,
      d type i.
data: begin of itab occurs 0,
      f1 type i,
      f2 type i,
      f3 type i,
      f4 type i,
      end of itab.
a = b = c = d = 1.
do.
  clear itab.
  itab-f1 = a.
  itab-f2 = b.
  itab-f3 = c.
  itab-f4 = d.
  append itab.
  d = d + 1.
  if d > 4.
    d = 1. c = c + 1.
  endif.
  if c > 4.
    c = 1. b = b + 1.
  endif.
  if b > 4.
    b = 1. a = a + 1.
  endif.
  if a > 4.
    exit.
  endif.
enddo.
loop at itab.
  if itab-f1 = itab-f2 or
     itab-f2 = itab-f3 or
     itab-f3 = itab-f4 or
     itab-f1 = itab-f3 or
     itab-f2 = itab-f4 or
     itab-f1 = itab-f4.
    delete itab.
  endif.
endloop.
sort itab.
loop at itab.
  write: itab-f1, itab-f2, itab-f3, itab-f4. new-line.
endloop.

Similar Messages

  • ZEN 8GB SYNC MANAGER--Syncs ALL TRACKS or NO TRACKS

    Using Sync Manager with my ZEN Vision:M I can sync SPECIFIED Playlists and Tracks from my Creative Media Organizer PC Library to my player.
    However, with my new ZEN 8GB the Sync Manager offers only 2 choices: EITHER Sync ALL my Tracks to the Player OR Sync ALL my Tracks AND ALL my Playlists to the Player.
    How can I Sync ONLY SPECIFIED Playlists from my PC Library to my ZEN 8GB player

    more clarification:?I can sync the first 662 songs in my media library without problems. that's 3.8GB or so. once I hit that mark, nothing else syncs and the player freezes with that spinny icon telling me it's syncing. I can delete albums/songs, but I can't add anything else without completely reformatting the player, which is clearly pointless. any similar problems/suggestions? anyone?

  • ZEN 8GB - Problem with ID3

    so i transfered some songs in my zen, but zen reads from tag only title. i want artist - title
    because with only title displayed it is very difficult to search

    There's nothing wrong with this as a wishlist item, but if you already know the artist of the track you want to find why not search for it via the "Artist" option? Seems like that would resolve the problem. For the "All tracks" list you can also use the "menu" button to "View Details" if you get multiple tracks with the same name.

  • Zen 8gb problem syncing organizer d

    Using Creative Media Source and Sync Manager, I am trying to sync Outlook organizer data from my PC to my new Zen. The program (or player) doesn't find any contacts or tasks in the PC (although they are there, for sure) but it finds four Calendar items; however, when I begin sync, nothing is transferred to the Zen. Any ideas?
    many thanks
    RS

    Followed the instructions in the FAQ and rebooted the player into recovery mode and ran a Disk Cleanup. Took a few minutes, hooked my player back up, and everything ran fine! Copying stuff like crazy! Thanks for the help kinda...

  • Creative Zen 8GB Problem with Recognizing Mu

    For some reason, whenever I go through the artists menu to select music, when I click on an artist, it shows with no tracks available even though when I go through the (ALL MUSIC TRACKS) option the song shows up. I tried rebuilding the memory and updating album info, but the tracks still aren't appearing. Anyone have any idea why this occurs?

    Make sure that all your music tracks has ID3 tags. The player requires the ID3 tags to show up on the player.

  • New Creative Zen 8GB Problem!!!-won't power

    I was the one who was acti'vely replying to the thread of the dreaded white screen. When I returned the unit through the local distributor, I expected to get a god unit back of course right
    WRONG. Just this morning, I got the unit back from the local distributor here in Philippines and guess what, after charging it and loading data into it, it hanged. So I did the most logical thing and reset it. Ever since....
    IT HASN'T BEEN POWERING UP!!!! When I plug it into the computer, it doesn't detect it!!!
    This product is a pain in the neck!!! What do you guys think I think Creative ain't gonna do anything about this anymore. So Creative,
    Where's the new firmware Better yet, did they even test this product thoroughly anyone knows how I can get a refund from Creative themselves

    there's already a new firmware, check out the download section
    i thk you got to exchange for another from your retailer

  • How to find all solutions for reordering of vector

    hello everyone
    -I have problem in finding all possible solutions for reordering of vector.
    -I have vector named (vect_temp) and I want to find all possible reordering of this vector.
    -I have function named Min_diff(vect_temp,next_point) works as follows : I should gave it an element (next_point) in the vector (vect_temp) and it must generate the vector (vect_diff) that contains all possible elements next elements.
    -The function nex_min(vect_temp,next_point) works as follows : I should gave it an element (next_point) in the vector (vect_temp) and it must generate the vector (vect_min) that contains all possible elements next elements.
    -reordering critriea:
    -Min_diff(vect_temp,next_point) and nex_min(vect_temp,next_point) and (next_point) in this first iteration is equal to any selected element in the (vect_temp). after calling the functions, if element in the (vect_diff) is equal to the element in ( vect_min) then add this element into the ordered set [ vec_ordering] and call functions Min_diff(vect_temp,next_point) and nex_min(vect_temp,next_point) again , next_point now is the equal to the element that we have been added in the previous step into the ordered set [ vec_ordering] and repeat this process until all elements in (vect_temp) are ordered according to this criteria.
    - I'm able to do reordering according to the cirtira above and find one solution. but the problem is that if (vect_diff) contains many elements that equal to many elements in ( vect_min), in this case I need to do reordering for the first equal element and this will be one solution and then find reordering for the next equal element and so on.
    let's consider this example:
    - let (vect_temp) contains element [5,9,7,3,1]
    - for the firs iteration let the next_point equal to 7
    - after calling function Min_diff(vect_temp,next_point), then (vect_diff) will contain [ 5,9,3]
    - after calling function nex_min(vect_temp,next_point), then ( vect_min) will contain [ 5,9]
    so for now (vect_diff) and ( vect_min) will have two equal elements.
    - the first solution must be that fist take the first equal element and do reordering such that ordered set [ vec_ordering] will equal to [7,5] then call functions Min_diff(vect_temp,next_point), and nex_min(vect_temp,next_point) again. the( next_point) in this iteration is qual to 5, these funtions will find next elements, let's consider that (vect_diff) and ( vect_min) will have equal element [3] then add this element to the ordered set [ vec_ordering] and repeat calling functions util all elments in (vect_temp) are added to the ordered set [ vec_ordering]. This will be one solution. now the second solution will be is to take second equal elment [9] instead of [5] and continue calling functions and finding ordered list.
    so that each time vect_diff and vect_min will have many equal elements, then do reordering for first equal element this is one solution and then do reordering for the second equal element and so on.
    -my code that can only find one solution that takes only first equal element in (vect_diff) and ( vect_min) and continue ordering is below
    for (int y = 0; y < vect_temp.size(); y++) {
         Min_diff(vect_temp);
         nex_min(vect_temp, next_point);
        for (int i = 0; i < vect_diff.size(); i++) {
         String element_min = vect_diff.get(i).toString();
         if (vect_min.contains(element_min)) {
           vec_ordering.add(element_min);
         _2nd_min_element = element_min;
          vec_temp.removeElement(next_point);
          next_point = _2nd_min_element;
          i = vect_diff.size();
         }// end if condition
        } // end for (i)loop
    }// end for (y) loop
    I hope that someone can answer me how to find all posssible reordering set it is urgent pleasssssse

    DarrylBurke wrote:
    Two months on and you still haven't done your own homework?
    [http://forums.sun.com/thread.jspa?threadID=5423090]
    dbWell, nobody has given the answer yet, so how can (s)he?

  • ***HELP*** Creative ZEN 8GB Vista Problems. NO SOLUTION FOUND

    I have searched the web and the forums. I cannot find a solution anywhere.
    My Creative Zen 8GB will not connect in vista. Ive upgraded the firmware to .3.0 and it still will not detect. Ive downloaded the newest Creative Media Browser and it still will not detect.
    I searched the creative knowledge database and came across the "regedit USB allow permission tweak". regedit will not allow me to change the usb settings even though i have administrator rights.
    i've searched the forum and came across about 0 threads regarding this issue and not one of them had a response from a Creative Administrator/Moderator.
    has anybody at all gotten creative zen 8GB to work with vista? If i cannot get this to work, I am going to return this POS.
    Can anybody help?

    yes i tried the CD that came with it. but it still does not work.
    i have upgraded the firmware on an XP desktop and installed the newest creative media browser on my vista notebook and still my Creative ZEN will not detect on my Vista notebook.
    I called technical support and the only solution they gave me was to "update my MTP driver in device manager" but when i do that, vista tells me that "windows has determined that the most appropriate driver is already installed"
    i know SOMEBODY out there has had to have come across this problem and solved it somehow.
    com'on guys....help me out here

  • I have a 2009 MB Pro. I have been trying to do some cleaning of files and discovered that in Finder, All Images, I am experiencing a frustrating problem. I spent a few hours trashing over 4K images and within a few hours, I had as many more. Help!

    I have a 2009 MB Pro. I have been trying to do some cleaning of files and discovered that in Finder, All Images, I am experiencing a frustrating problem. I spent a few hours trashing over 4K images and within a few hours, I had as many more.  I did a couple of thousand trashed images and half hour later, more arrived. There are a lot of images that seem off the internet, including gif.s, png.s. Help!

    First, back up all data immediately, as your boot drive might be failing.
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • New ZEN(8GB) showing FIRMWARE PROBLEM after first connection to

    New ZEN(8GB) showing FIRMWARE PROBLEM after first connection to PC?I havn't even use it?Can someone help me ?Message Edited by chrisstrong on 0-07-200707:50 AM

    tell me about it. I've rebooted it then left it for a few minutes. after that it seems to start. I also used another usb cable which seems to have helped (weird i know!)

  • About a month ago I couldn't access 100s of pix from my iPhoto library.  I then went through the process of "re-finding" all missing pix.  I 2x checked that they opened.  Now, I'm having the same original problem!  What's iPhoto doin with my pix?

    About a month ago I couldn't access 100s of pix from my iPhoto library.  I then went through the process of "re-finding" all missing pix.  I 2x checked that they opened.  Now, I'm having the same original problem!  What's iPhoto doing with my pix?  Is there a "batch" fix?

    Try rebuilding the library.
    Hold down the Option and Command keys then launch iPhoto.
    Select:  Repar the iPhoto Library Database
    Click Rebuild.

  • TS1367 I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    Welcome to Apple Discussions Dathanb
    You have posted in the Feedback About New Discussions forum.
    As you are a first time poster, you seem to have missed the text at the top of this forum that says:
    Please Read This Before Posting Here
    If your question concerns a hardware or software technical issue, please do not post in this forum
    Go to the main Apple Discussions page, select an appropriate product category and follow the links until you reach the correct forum for your post, then click the POST NEW TOPIC link. Because your post doesn't indicate was OS you are using on your iMac, I can't give you a link to the most appropriate forum.
    Basically, though, the version of TechTool on the AppleCare disks is not compatible with newer versions of OS X and/or Macs (I can't remember which). If you don't get a satisfactory response by posting in the appropriate iMac or OS X forum, I suggest you take your iMac to the geniuses at the Apple Store. You can set up an appointment time for the same day online before you leave home.
    Peggy

  • Small problem. The "Find all unused clips" function not working

    Hi all.
    heres my problem. Im sitting with the Manuel in front of my mac but i cant get it right. I do it step by step.
    After all the things i have to do to find all unused clips, the window named "find results" opens which is whats supposed so happen. BUT not just the unused clips are in that folder in fact all the clips in the same bin which i searched in appears i there. Im sure im just doing something wrong. If any of you guys have the answer to my question. THANKS!

    Not sure if this is the problem, but you have to make sure you've selected the sequence in the Browser, not the Timeline, before going to the File menu and performing the rest of the steps. Otherwise, you get a different window that pops up. Just in case that helps you...

  • New Zen 8GB crashed during firmware update; now I can't get it to reboot or connect to a compu

    I went and exchanged my "problematic white screen" ZEN 8GB for a new one this evening. When I came home, I attached the new unit to my computer and started to perform the required firmware upgrades. The upgrades downloaded fine, but after the installation started, they seemed to freeze. I waited for an hour before I did anything, but finally had to assume that the update had malfunctioned and would never finish on its own. At that point I clicked "cancel" in the window monitoring the upgrade installation, and thought I could just start the process anew. Unfortunately, my computer no longer recognizes the ZEN when it's plugged into a USB port.
    I rebooted my computer, just in case that was the problem, but it still can't find the ZEN when searching for devices to AutoUpdate. As for the Zen itself, I can turn it on and off, but the screen remains black (i.e., no info on screen). If I reset it, the screen flashes the word "Creative" only. If I try to do a Recovery, I can't get any text to appear on the screen. I can't even reformat the ZEN via my computer because they're no longer speaking. I assume that the interrupted firmware installation caused this problem, and that the ZEN just doesn't have enough of an operating system installed to work properly. Is there any fix for this that I can tackle myself Or, is it back to the store to return this one, too I have noticed a lot of white screen flashings as I've been working with the new ZEN, so perhaps this just wasn't meant to be. Any words of advice are certainly appreciated, however.

    Same happened to me and I only had the thing a few hours. I may leave it connected overnight to see if the battery needs charging but if nothing happens it's going back. I've tried plenty of suggestions. The Creative screen flashes on when I plug it in but then just sits there. Reseting does nothing and how can you do anything to it if it's not recognised by the PC. Vista did see it before the update attempt. Wondered whether to throw XP back on.
    Do I have to resort to the new ipod Nano
    OK I've done it. Somewhere on this forum it said to disconnect the Zen from the PC.
    Now at the same time, press and hold the play/pause button, put a pin into the reset button and hold down the on/off switch (yes all 3 in that order at the same time). Recovery mode came on and I tried to uninstall the firmware update from previously - it didn't do it but I updated the latest firmware again anyway and this time it worked. I guess the last attempt didn't take.
    Message Edited by nimble on 2-06-200709:34 PM

  • Creative Zen 8GB Random Shuffle

    Creative Zen 8GB Random Shufflej I have owned a Creative Zen V Plus 4GB for two years and have really enjoyed it. About a month ago, the screen started to fade out and is now totally black. I have researched this problem and have come to the realization that there is no way to fix the issue short of either shipping my player in for repairs or buying a new Zen V Plus. I have tried all the "fixes" I could find on here and other places. Nothing works and a lot of others seem to have the same issues with their players. The player still plays fine, but with no screen, it is very?tough to use correctly. I am willing to "start over" with a new player and am interested in the Creative Zen 8GB. The player looks real nice and has all the features I need. I read online that the Creative Zen 8GB DOES NOT have a random shuffle feature. I was just wondering if this is true? I love setting my player on random shuffle and letting it randomly choose the songs. If this is not a feature on the Zen, I guess I wouldn't be interested in buying one. Does anyone know if the Creative Zen 8GB has the random shuffle feature?

    Yes it does. You would from the music menu scroll to DJ & choose random play all

Maybe you are looking for