I cant figure out the notes....

i was trying top set up the notes on my ipod but the fetures guide dosent explain a lot unless you have a mac..... and i dont so can someone "dumb" it down for me...... because it says in the feture guide to use windows explorer, the only eplorer i could think of is the internet explorer( i know im wrong) but i use firefox and i said to **** with enternet explorer

Make sure iPod is plugged in.
Start->My Computer->iPod (or drive F)->Notes|
Open notepad or something similar, write whatever it is that want on your iPod in it->File (in Notepad)->Save As-> name the file whatever you want it to be->either save in the notes folder I mentioned above, or save it somewhere else & cut & paste it the notes folder.

Similar Messages

  • Cant figure out the IP address of the domain controller

    I just started at a new company and would like to change my domain password but cannot because I cant communicate with the domain controller.  I can see it when I do a net view, but I cannot ping it because my DNS server is set to the local router IP
    address rather than the DC IP address and the name simply won't resolve.
    I suspect if I manually change my DNS server to point to the IP of the DC, my problem will go away.  I asked the local IT guy and he says 'nobody has ever asked to change their domain password before' ???!?!?!????? nor does he have any idea about the
    IP and he would have to submit a ticket to the overseas IT desk (where the DC physically resides) and they would change my password manually.
    Any ideas?

    Robr2,
    I agree with others about the ONLY DNS that must be set on ALL machines is ONLY the DC's IP address. That's it. Not the router, or the ISP's DNS. This is one of the most common configuration errors that will cause
    MAJOR problems with DC to client communcations.
    Here's a full explanation with a great analogy:
    Active Directory's Reliance on DNS, and why you should never use an ISP's DNS address or your router as a DNS address, or any other DNS server that does not host the AD zone name
    Published by Ace Fekay, MCT, MVP DS on Aug 17, 2009 at 7:35 PM  1058  2
    http://msmvps.com/blogs/acefekay/archive/2009/08/17/ad-and-its-reliance-on-dns.aspx
    Ace Fekay
    MVP, MCT, MCITP EA, MCTS Windows 2008/R2, Exchange 2007 & Exchange 2010, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This post is provided AS-IS with no warranties or guarantees and confers no rights.

  • I am trying to create a photo book, i cant figure out the file that is corrupting the whole book- help??

    it tells my "image 025 is corrupt", although i cant seem to find anything in my book named 025!
    I cant continue the order!
    gggrrrr so close to finishing!
    please help me someone!!!

    You can still have a photo for a text page background.  Go to the layout pane for the text page and click on the photo background icon:
    Then drag the photo you want as the background into the page.
    OT

  • Cant figure out the problem

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class myProject extends JFrame implements ActionListener{ 
            JButton search=new JButton("Search");
            public DefaultListModel df=new DefaultListModel();
            public JList list1=new JList(df);
             check c=new check();
         public myProject(){       
              search.addActionListener(this);
         public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
             getContentPane().setLayout(new BorderLayout());
             getContentPane().add(list1,BorderLayout.CENTER);
             setVisible(true);
             getContentPane().add(jp1,BorderLayout.SOUTH);            
             setSize(450,180);
         public static void main(String []args){
           myProject j=new myProject();         
              j.design();    
       public void actionPerformed(ActionEvent event) {
            myProject j=new myProject();
            if(event.getSource()==search){
                list1.removeAll();
              Object p[]={"hi","hello"
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
    public class check {
      myProject  mp;
        public check() {
        public void testing(){
               mp=new myProject();
             mp.df.addElement("how");
    }I wrote this two class the output is
    hi
    hello
    these two are printed in JList why not "how"??
    is my code writing style ok?? i always get messed up with object
    plz suggest me a better way of writing this code
    thanks in advance

    Basically you have to tell the instance of the check class that you create what instance of the project class it is that it should be checking. One place to do this is in the constructor of the check class. (eg if it is to meant to check one project only).
    Moving the code that initialises the buttons and stuff into the projects constructor, and putting your main()'s contents into an invokeLater() it would look like:
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class MyProject extends JFrame implements ActionListener{ 
        private JButton search;
        private DefaultListModel df;
        private JList list1;
        private ProjectChecker c;
        public MyProject(){       
            search = new JButton("Search");
            df = new DefaultListModel();
            list1 = new JList(df);
            c = new ProjectChecker(this);
            search.addActionListener(this);
        public void design(){ 
            JPanel jp1=new JPanel();
            jp1.add(search);
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(list1,BorderLayout.CENTER);
            getContentPane().add(jp1,BorderLayout.SOUTH);            
            setVisible(true);
            setSize(450,180);
        public void actionPerformed(ActionEvent event) {
            if(event.getSource() == search) {
                list1.removeAll();
                Object p[]={"hi", "hello"};
                df.addElement(p[0]);
                df.addElement(p[1]);
                c.testing();        
        public DefaultListModel getListModel() {
            return df;
        public static void main(String []args){
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        MyProject j = new MyProject();         
                        j.design();    
    }and
    public class ProjectChecker {
        private MyProject proj;
        public ProjectChecker(MyProject proj) {
            this.proj = proj;
        public void testing(){
            proj.getListModel().addElement("how");
    }Notice how a couple of "new MyProject()" lines have been removed.

  • Cant figure out the error

    public void datfileout()
    try
    BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));//declares variable that reads in from file
    for(int x=0;x<holdinfo.size();x++)
    outstream.write((String)holdinfo.get(x));//writes names to file
    outstream.newLine();//starts a new line
    outstream.close(); //closes file
    catch (Exception e)
    System.err.println("Caught exception " + e.toString());//checks for an error
    this is what i have attempted to put in an applet but it seems just to freeze every time i go in this method what should i do?

    Your code works for me :
    * Applet_Test.java
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class Applet_Test extends JApplet {
        public void init() {
            datfileout();
            System.out.println("Applet_Test is OK");
        ArrayList holdinfo = new ArrayList();{
            holdinfo.add("Test 1");
            holdinfo.add("Test 2");
            holdinfo.add("Test 3");
        public void datfileout() {
            try {
                BufferedWriter outstream = new BufferedWriter(new FileWriter("character.txt"));
                for(int x=0;x<holdinfo.size();x++) {
                    outstream.write((String)holdinfo.get(x));//writes names to file
                    outstream.newLine();//starts a new line
                outstream.close(); //closes file
            } catch (Exception e) {
                System.err.println("Caught exception " + e.toString());//checks for an error
    }

  • What is my problem?I cant figure out the prob

    I install oracle 11g release 2 in my windows 7 pc, but when i almost finish my installation then it will pop out this error message.
    Error in execution of additional utility tools.
    Can anyone help me?

    Pl do a search in this forum - this question has been discussed and answered many times :-) For example - DB 11gR2 for Windows ??
    HTH
    Srini

  • I have a gen 3 ipod and can't get it into disk mode.  In itunes it does not have the option and I cant figure out how to do it on the ipod touch itself.  Any ideas?

    I have a gen 3 ipod and can't get it into disk mode.  In itunes it does not have the option and I cant figure out how to do it on the ipod touch itself.  Any ideas?

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • My pages documents on my ipad wont sync to icloud. Some documents have had the upload icon on them for over a month. It was all working fine but now I cant figure out what is going on.

    MY pages documents on my ipad wont sync to icloud. Some of the documents have had the upload icon on them for over a month. It was all working fine a month or so ago but I cant figure out why it wont work now.

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • I tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help

    i tried to sinc my photos and i ended up deleting off my phone all the pictures.  i only ended up with one folder, and i cant figure out how to put rest of folders from my computer back on my phone.....help
    and on a second problem.  I need to know for sure that my contacts are backed up on my computer

    Create a parent folder on your computer to store the named folders of photos that you want transferred to your iPhone. Under the Photos tab for your iPhone sync preferences with iTunes, select the parent folder. All named folders of photos within will be transferred to your iPhone as separate folders or albums.
    Regarding your 2nd question, this should be easy. Your contacts should be available on your computer with or without an iPhone or any cell phone, which can be lost or stolen.
    Although contacts are included with your iPhone's backup which is updated by iTunes as the first step during the iTunes sync process, not a good idea to depend on this either since the iPhone backup includes a significant amount of other data. Contacts are designed to be synced with a supported address book app on your computer. With Windoze, this can be with Outlook 2003, 2007, or 2010 along with syncing calendar events and notes, or with the address book app used by Outlook Express with XP and by Windows Mail with Vista and Windows 7 called Windows Contacts for syncing contacts only.

  • How do you get music from your Itunes to your computer? im making a wedding video on windows movie maker but cant figure out how to get the bridal music off my ipod and onto my pc.

    Im making a wedding video and cant figure out how to get the bridal music off my itunes and onto my computer.. Im using the windows movie maker

    Marian,
    Let's be clear on one thing here. The manual setting is an iPod setting, not an iTunes one. So, once you've set it to manual (and you appear to have done that correctly), then you can connect it to any number of computers without changing that setting.
    "The grey thing occurs on one pc only"
    This is the thing that I don't understand, if your iPod is set to manual, then it shouldn't happen on any computer. If you connect the iPod that is set to manual to this pc, and then click on it in the source listing, then you would be looking at the songs on the iPod, and they should not be greyed out. When you connect to the "other pc" under these same circumstances, they are not greyed out?

  • My time machine doesnt show up in the finder and ive done the checkboxes in the finder preferences and ive restarted in safeboot. i still cant figure out why it wont show up

    my time machine doesnt show up in the finder and ive done the checkboxes in the finder preferences and ive restarted in safeboot. i still cant figure out why it wont show up

    iOS: Device not recognized in iTunes for Windows

  • Can any one help i have lost safari on my powerMAC g4 and cant figure out how to get it back  and safari 5 is not supported on my cumputer

    can any one help i have lost safari on my powerMAC g4 and cant figure out how to get it back  and safari 5 is not supported on my computer

    Make sure there's enough free space on the startup disk.
    Right or control click the MacintoshHD icon on your Desktop.
    Click Get Info. In the Get Info window you will see Capacity and Available.
    Make sure there's a minimum of 15% free disk space.
    If there's sufficient disk space, the startup disk may need repairing.
    Launch Disk Utility located in /Applications/Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click Verify Disk  (not Verify Disk Permissions)
    You will need your install disc if the startup disk needs repairing.
    Using Disk Utility to verify or repair disks

  • Hi. I cant figure out, what I will get in the creative cloud.

    Hi. I cant figure out, what I will get in the creative cloud. ?? Do I get it all ?? if not wich programs are in it. ? I hope, i can get an answar fast :-)

    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    I have same question

  • I have an ipod touch and i put cds on itunes on my pc , but i cant figure out how to put the music from the cds on my ipod .. can u help me ?

    i have an ipod touch and i put cds on itunes onmy computer , but i cant figure out how to put the music from the cds on my ipod touch can anyone help me?

    ok i select th e music from my music libary and go to file and click sync to my ipod and when it gets to step 3.. it says waiting for changes to be made.. yes the songs play on the itunes ..  and no it wasnt the same computer i used last time

Maybe you are looking for

  • Problem with Macbook Pro 2,66Ghz and 4GB Kingston memory

    Hi all, I bought 2x 2GB Kingston memory(SODIMM - DDR2 @ 667MHz) in order to upgrade my MBP. When I install both modules, the MBP won;t boot. I get a blank screen. If I use 1 Kingston module at a time (1x1GB(original memory module)and 2GB(Kingston)) .

  • Major freezing problem on Macbook Pro 1,1

    Hello everyone, My MacBook Pro has been experiencing some strange behaviour lately. I'll be doing any average computing task (nothing more than word processing or Internet browsing), and the current application will lock up. Any application I touch a

  • Booting to Kernel Panic cannt boot from a cd/dvd. HELP!

    Hello everyone. My computer boot to the Kernel error. I can't boot from the installation CD\DVD or from a firewire HD. but I can boot from a different computer using my laptop HD when pressing T while booting. I can boot to open firmware, I tried to

  • Is there a way to find my iPod without iCloud

    Help pleas I lost my iPod at school and I need it by tommorow

  • Printable version

    Hi All, I want to put a feature of printable version on my webpage can any one of u pls tell me how can this be .. done using jsp .. Thanks in Advance