I dunno where to put this... Creative Travelsou

How good is the Creative Travelsound? I just got one to go with... you know.
It was cheap and it had good features so I got it.

This WILL fit a Vision M and a Ipod Nano 4 gig, right?

Similar Messages

  • Urgent where i put this code for delete

    hi master
    sir this code is right for my requirment but when i put on_delete event system not respons or not delete record
    where i put this code for conditional deletion
    this is my code
    declare
         recno number;
    begin
    if :system.cursor_block='accbal' then
    delete accbal where accid=:chartofacc.accid;
         go_block('chartofacc');
         next_record;
    elsif :system.cursor_block='chartofacc' then
         select count(*) into recno from accbal where accid=:chartofacc.accid;
         if recno=0 then
         delete_record;
         go_block('chartofacc');
         previous_record;
         else
         message ('system found matching record then no delete master record');
         message ('system found matching record then no delete master record');
         end if;
    end if;
    end;
    please gide me which event i use
    thanking you
    aamir

    Hello,
    The ON-DELETE triger fires only after a COMMIT statment and only for those records that have been deleted in the block.
    Francois

  • I didn't know where top put this so...

    The Adobe Photoshop forums are down for an upgrade so I don't know where to post this but I need help. Since yesterday Photoshop CS4 has been showing banding in my soft brushes and gradients, it mostly comes up when I am using a dark color on another dark color or on similar colors together but it has been working fine for a very long time until yesterday where it just happened randomly. I have tried restarting, resetting preferences, installing cs3 and seeing if it happened there, and using just about every color profile I could think that would make a difference, and none of them work. Please someone help I need this fixed asap.

    Send Apple your feedback here: Product Feedback

  • ejb-local-ref where to put this tag in ejb-jar.xml ??

    I have an ejb-jar.xml that looks like this. I have had no problem with remote interfaces. Now I want the bean to have a local interface too.
    Just let me know where the tag I have mentioned for the <ejb-local-ref> has to be put into.
    When I compile this file it throws me an error which i have shown below the output of the ejb-jar.xml file
    <ejb-jar>
    <enterprise-beans>
    <entity>
    <ejb-name>IDMaster</ejb-name>
    <home>maxateev.mondial.brg.idmaster.IDMasterHome</home>
    <remote>maxateev.mondial.brg.idmaster.IDMaster</remote>
    <local-home>maxateev.mondial.brg.idmaster.IDMasterLocalHome</local-home>
    <local>maxateev.mondial.brg.idmaster.IDMasterLocal</local>
    <ejb-class>maxateev.mondial.brg.idmaster.IDMasterEJB</ejb-class>
    <persistence-type>Container</persistence-type>
    <ejb-local-ref>
    <ejb-ref-name>ejb/IDMasterLocalHome</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>maxateev.mondial.brg.idmaster.IDMasterLocalHome</local-home>
    <local>maxateev.mondial.brg.idmaster.IDMasterLocal</local>
    </ejb-local-ref>
    <prim-key-class>java.lang.String</prim-key-class>
    <reentrant>False</reentrant>
    <cmp-version>2.x</cmp-version>
    <abstract-schema-name>IDMaster</abstract-schema-name>
    <cmp-field>
    <field-name>idPrefix</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>idValue</field-name>
    </cmp-field>
    <primkey-field>idPrefix</primkey-field>
    <query>
         <query-method>
              <method-name>findAllIDMasters</method-name>
              <method-params/>
         </query-method>
         <ejb-ql><![CDATA[SELECT OBJECT (f) FROM IDMaster as f]]></ejb-ql>
    </query>
    </entity>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>IDMaster</ejb-name>
         <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>
    I have also added the following tag in the weblogic-jar.xml
    <local-jndi-name>IDMasterEJB.IDMasterLocalHome</local-jndi-name>
    Just let me know whether I am correct
    On compilation (using ant utility) the error thrown is like this :
    ejbc:
    [java] ERROR: Error parsing 'ejb-jar.xml' line 47: The content of element type "entity" must ma
    tch "(description?,display-name?,small-icon?,large-icon?,ejb-name,home?,remote?,local-home?,local?,e
    jb-class,persistence-type,prim-key-class,reentrant,cmp-version?,abstract-schema-name?,cmp-field*,pri
    mkey-field?,env-entry*,ejb-ref*,ejb-local-ref*,security-role-ref*,security-identity?,resource-ref*,r
    esource-env-ref*,query*)".
    [java] ERROR: ejbc found errors
    [java] Java Result: 1
    Kindly Help !!!
    Thanks n regards
    Sajiv

    This should take care of it
    <ejb-jar>
    <enterprise-beans>
    <entity>
    <ejb-name>IDMaster</ejb-name>
    <home>maxateev.mondial.brg.idmaster.IDMasterHome</home>
    <remote>maxateev.mondial.brg.idmaster.IDMaster</remote>
    <local-home>maxateev.mondial.brg.idmaster.IDMasterLocalHome</local-home>
    <local>maxateev.mondial.brg.idmaster.IDMasterLocal</local>
    <ejb-class>maxateev.mondial.brg.idmaster.IDMasterEJB</ejb-class>
    <persistence-type>Container</persistence-type>
    <ejb-local-ref>
    <ejb-ref-name>ejb/IDMasterLocalHome</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>maxateev.mondial.brg.idmaster.IDMasterLocalHome</local-home>
    <local>maxateev.mondial.brg.idmaster.IDMasterLocal</local>
    </ejb-local-ref>
    <prim-key-class>java.lang.String</prim-key-class>
    <reentrant>False</reentrant>
    <cmp-version>2.x</cmp-version>
    <abstract-schema-name>IDMaster</abstract-schema-name>
    <cmp-field>
    <field-name>idPrefix</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>idValue</field-name>
    </cmp-field>
    <primkey-field>idPrefix</primkey-field>
    <ejb-local-ref>
    <ejb-ref-name>ejb/IDMasterLocalHome</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>maxateev.mondial.brg.idmaster.IDMasterLocalHome</local-home>
    <local>maxateev.mondial.brg.idmaster.IDMasterLocal</local>
    </ejb-local-ref>
    <query>
    <query-method>
    <method-name>findAllIDMasters</method-name>
    <method-params/>
    </query-method>
    <ejb-ql><![CDATA[SELECT OBJECT (f) FROM IDMaster as f]]></ejb-ql>
    </query>
    </entity>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>IDMaster</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>

  • I don't know where to put this so here it is

    No problem with Safari, but I also use Firefox and successfully for 2 years to do my portfolio on Yahoo Finance. Yesterday, when I clicked on my portfolio in Firefox, it suddenly started downloading -DARTIframe.html (it appears in MacSource)- . I could not find out what it is. Everytime I clicked on something in my portfolio, it would download to the desktop again, over and over. I can't find out what it is, but when I Googled it, I got a discussion group and someone had the same problem (started the same day), but I am not a member and could not log in. I don't know how to stop this. Applecare was no help. I have deleted the portfolio and put it in again, but the download still occurs. This does not happen in Safari. Does anyone have any ideas as to what to do. I cannot get in touch with Firefox. Thanks for any help. Gerry

    It would appear that DARTIframe is part of DoubleClick's ad serving technology -- it serves media through an iframe on a web page. The question is also being asked on Yahoo! Answers, so I'll wager the problem is not Mac-only.
    By any chance are you using the AdBlock extension in Firefox? If so, try turning that extension off, restart Firefox, and see if you still have the problem at Y! Finance.

  • Don't know where to put this, but cannot go back to windows 8. Help please?

    Hello,
    Please forgive me, I do not know what forum to ask this question in. I downloaded the free windows 8.1 update a while back, and have decided that I do not like it. So I tried "Refresh your PC settings without afflicting your files". It restarted
    itself, as it should, but when it boots back up, it gives me error 0xc0000001, saying I am missing \windows\system32\winload.efi, or something along those lines. The thing is, I looked into that folder and it was there. How can I fix this?
    Thanks

    They'll help you over here.
    Windows 8.1 on Microsoft Answers
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • About Mac Messanger 8.0?, I Did Not Know Where To Put This Thread?

    I Know Everyone Here Hates Microsoft, But I Had a Question I Like to Ask Everyone About Mac Messanger 8.0, I Wanted To Know When Will It Be Available To Use Completely?
    Right Now It's in Beta, & i'm Sure Maybe Some Apple Fan's Must Use Mac Messanger Sometimes? The Reason Why I'm Asking This is Cause The Mac Messanger 8.0 Has Got Webcam & Voice Sound, You can Talk to Someone in Webcam Using Your Voice & I Am Interested in That Cause I Used MSN Messanger when i had a PC Computer & I Used Webcam & Voice a Lot on MSN Messanger on The PC Computer. Maybe Someone Can Help Me Out About This?
    From Your Online Friend
    Byron
    <Edited by Host>

    Sorry it's a habit it's the way i type, intentionally i'll do it cause i keep doing it all the time. also the way i write in person is poor, i have bad hand writing, i did not learn much when i was in school i don't know if you know this? i'm handicapped, i have cerebral palsy, i'm kinda learning disabled i hope i did not get anyone mad here? also people can take advantage of me, i'm only an innocent person.
    Message was edited by: Apple4Ever556
    Message was edited by: Apple4Ever556

  • Need desperate help, now sure where to put this

    I have a Zenworks 10.3 server that was running fine...all of a sudden, it says database will not start. I reboot and stopped and started database manually I THINK bu going to CL and typing:
    /opt/novell/zenworks/bin/novell-zenworks-configure -c Start
    I chose ZEN database and stopped and starting it, about 2 minutes later I get an error, and it says use dbsupport to virw it, but I cannot seem to invole this tool from the CL...anways, if anyone has any suggestion, I would GREATLY appreciate it as of right now I am dead in the water. PS- I do not have a zman back up....I am hopeing I can look at the log and rescue this db...I am open to suggestions....

    Whatever you do, backup the files before doing anything else.
    Most Likely the Transaction Log is corrupt.
    Do you have a recent database backup?
    If so, I would recommend restoring it.
    If not, you may be able to start the database without the transaction log.
    Here are some tips for an older version of Sybase that still generally
    hold true.
    https://www-304.ibm.com/support/docv...id=swg21147095
    On 9/15/2011 1:16 PM, Techlord wrote:
    >
    > I have a Zenworks 10.3 server that was running fine...all of a sudden,
    > it says database will not start. I reboot and stopped and started
    > database manually I THINK bu going to CL and typing:
    > /OPT/NOVELL/ZENWORKS/BIN/NOVELL-ZENWORKS-CONFIGURE -C START
    >
    > I chose ZEN database and stopped and starting it, about 2 minutes later
    > I get an error, and it says use dbsupport to virw it, but I cannot seem
    > to invole this tool from the CL...anways, if anyone has any suggestion,
    > I would GREATLY appreciate it as of right now I am dead in the water.
    > PS- I do not have a zman back up....I am hopeing I can look at the log
    > and rescue this db...I am open to suggestions....
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Where to put this 14GB of sound FX? For ease of access with iMovie?

    I have 14GB of foley sound bit’s and various other sound FX. It’s currently on my desktop in a folder, where should Its final destination be? iTunes media folder? So it can be accessed via iTunes. Or Garage Band folder? Your recommendation will be greatly appeicated! As will a step by step if involved? Thank You

    Also, now the OS has crashed twice (a dark fade come over the screen and says i have to hold the power button down to restart) it came up with a error report the second time:
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000000800000C PC=0x00000000000D6830
    Latest crash info for cpu 0:
    Exception state (sv=0x20E91280)
    PC=0x000D6830; MSR=0x00009030; DAR=0x0800000C; DSISR=0x42000000; LR=0x000D633C; R1=0x0D00B4F0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x01D92ED0 0x000D633C 0x000E60F8 0x000E6480 0x000E88F8 0x000E81D4
    0x000E8A7C 0x00223174 0x0023D528 0x000FBB4C 0x000E97FC 0x000F5094 0x000ED4E0 0x000ED898
    0x002ABDB8 0x000ABD30 0xF409F448
    Proceeding back via exception chain:
    Exception state (sv=0x20E91280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x00DE4A00)
    PC=0x90001F2C; MSR=0x0200F030; DAR=0x17190040; DSISR=0x40000000; LR=0x9001522C; R1=0xF0201C60; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
    Exception state (sv=0x20E91280)
    PC=0x000D6830; MSR=0x00009030; DAR=0x0800000C; DSISR=0x42000000; LR=0x000D633C; R1=0x0D00B4F0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x01D92ED0 0x000D633C 0x000E60F8 0x000E6480 0x000E88F8 0x000E81D4
    0x000E8A7C 0x00223174 0x0023D528 0x000FBB4C 0x000E97FC 0x000F5094 0x000ED4E0 0x000ED898
    0x002ABDB8 0x000ABD30 0xF409F448
    Exception state (sv=0x00DE4A00)
    PC=0x90001F2C; MSR=0x0200F030; DAR=0x17190040; DSISR=0x40000000; LR=0x9001522C; R1=0xF0201C60; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    *** IS GOING ON?????

  • I don't know where to put this, but I know that Apps from the App Store can be redownloaded, but I can't see where to do that.

    I don't know if this is the right place for this question. I know that Apps from the App Store can be redownloaded, but I can't figure out how to do this.

    The FAQ is correct, but as long as the MAS thinks that the app is on your Mac it has no reason to allow an install.
    Try this;
    Trash the following folders and files; (~ is your Home folder)
         ~/Library/Caches/com.apple.appstore
         ~/Library/Caches/com.apple.storeagent
         ~/Library/Cookies/com.apple.appstore.plist
         ~/Library/Preferences/com.apple.appstore.plist
         ~/Library/Preferences/com.apple.storeagent.plist
    Restart.

  • Lenovo 120GB portable hard drive won't disconnect (not sure where to put this!)

    I didn't see any specific forums/areas for portable hard drives, so I thought I'd try here-- if it's in the wrong place, please let me know!
    I got a 120gb lenovo portable hard drive over the holidays, and just today tried plugging it in; the only thing I did was check how much space it had free on it (111gb, but I did find out why that is!), but now I can't remove it. That is, when I try to use the 'safely remove hardware' thing, I get a message saying that the device is still being used by a program. However... there shouldn't be any program using it! I was told that normally it's not a problem to just straight-up unplug the usb cords from the computer, but I'd rather not have to do that every single time I use the portable hard drive. 

    Welcome to the forum,
    In order that members can help you trouble shoot this you may want to post some more details. Most importantly which OS you are running.
    Did you have something like Windows Media Player running when you tried to disconnect the drive? I've experienced the same with WMP running; it links to the drive looking for files it can play / add to it's playlists and therefore Windows thinks it is still in use.
    Message Edited by andyP on 01-28-2009 07:54 AM
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Suggestion for apple, how so? dont know where to put this...

    If I wanted to make a suggestion for a game for the iPod to Apple, how would I go about doing that?
    Dell   Windows XP   PC

    Also, you might want to drop a note on this feedback form, too:
    iTunes Feedback
    -Kylene

  • Off-topic but I don't know where to put this...

    I have what should be an easy activity but I'm spending more time than it's worth.  Below is a clipping from a photo of a stained glass window.  The unseen figure above the text is Aristotle and presumably the clipping is a quote of his words in ancient Greek.  Can anyone provide an English translation for me?
    By the way, my initial frustration is in loading the Greek alphabet onto my iMac.  The selection menu lists the languages in the actual languages.  The word "Greek" is not there and I don't know how to spell "Greek" in Greek!

    Thanks.  I was in the wrong menu.  I went to Preferences > Language & Text > Language
    I should have gone to Preferences > Laguage & Text > Input Sources
    In any event, my problem now is the difference between modern Greek and ancient Greek.  It's either that or, more likely, the text is not a quote but, instead, an almost random collection of Greek letters.  The beginning of the statement refers to the human soul and energy but the kicker is the last two words.  I can't find a meaning anywhere, including one dictionary for ancient Greek.  I tried Google Translate and others on the web as well as a local translator on my Mac.

  • This is less a question and more of a suggestion and I am not sure where to put it..... I would like an update that would allow you to have a tone for each individual email account

    I am not sure where to put this but I would like individual tones for all my email accounts

    Wonderful suggestion.
    You can give Apple feedback here > http://www.apple.com/feedback/
    Hop that helps

  • Where to put ringtones in the N9?

    I dont really know where to put this thread. So mods feel free to move it.
    I didnt really care for any of the stock ring tones on the N9, and I had a ring tone on my N97 that was the sound played on Star Trek TNG when the shuttle bay doors would start to open. The problem here is the N9 only lets you shop for new tones, or pull them out of your music.
    I had put up with this on my N97, occasionally hearing this tone while listening to music because I had searched high and low how to put this tone and not have it imported into the music library.
    Is there anyway to put this Mp3 file on my N9 so that it will see it in the Ringtones list, but not end up in the Music player?
    Thanks a ton
    Solved!
    Go to Solution.

    go to
    settings/security/developer mode
    and enable it.
    it will have you download and install some files. tap ok.
    you should be able to just open the filebox (free download from ovi store) and then go to:
    /home/user/MyDocs
    and then tap and hold, select copy on the all the ringtones you want to copy and then tap the up-arrow (bottom left corner) and you will be in /home/user/
    scroll down to .ring-tones
    tap it to open the folder
    then tap the clipboard and select the ringtones to paste there.
    it should be done. you should be able to see it when you go to select the sounds.
    i have not used these to do individual ringtones for contacts, but have customized the sounds in:
    settings/sounds and vigbration
    for all my rintone, maeil alert tone, message alert tone, calendar alarm tone.
    i have been using the same nokia sounds for these since 2004
    you could also do the following with terminal
    open terminal
    devel-su (enter)
    rootme (enter)
    cp -R /home/user/MyDocs/(file name.mp3) /home/user/.ring-tones/
    you can do that for each different ringtone, just changing the file name.
    to make it easier with terminal, if after you enter the first one, just tap the top right corner for the menu, and select toolbar, then arrows.
    now just tap the up-arrow and then use the left/right arrows to change the file name and then tap enter again. this should save a bit of time once you are good at it.

Maybe you are looking for

  • How do I create a pdf file of some iPhoto pictures

    I deal with some client servers that will not allow embedded pictures in email message to pass through their firewall.  So, I need to create a pdf file of some of my iPhoto pictures to send as an email pdf attachment.  Can anyone help?  I'm at a loss

  • Can I add text within a slideshow or between slideshows

    I want to scroll text at the beginning and end of my project, Is there a way to do this? Also is there a way to add text in-between slideshows or into a slideshow?

  • Real-Time Collaboration Instant Messaging & .wmv video ?

    Hi, is posible using the last version Netweaver 2004s and Netweaver 2004s BI for some <b>Real-Time Collaboration Instant Messaging</b> for speak to users depending the costcenter and territory area ? So idea is show too video .wmv for Principal Direc

  • Can't reach websites on same server for short period

    Hi! I've got something strange. If i look at websites that are on the same server i can't seem to reach them anymore after a while. And this takes a short period and then i can reach them again. It's the same with Safari or Firefox, and when i try i

  • Error in ICM

    Hi All, While connecting to ICM through I am getting this error. 401 Authorization required Error: -29 Version: 7000 Component: HTTP_ADM Date/Time: Tue Mar 04 12:46:04 2008  Module: http_adm.cpp Line: 997 Server: sapserver1_EC6_01 Error Tag: {-} Deta