First individual java project, help to get started

Hi first of let me introduce myself,
I am Koos, 16.75 years old and from Holland. At school we are learning or suppossed to learn java language, that's how I got interested in java, anyway it isn't going that great so far.
But I already created my first assignment a tool which counts the letters in a word, in a JFrame of course to make it look better.
I use Eclipse to program java (what is in you opinion the best program to program in java?) and have of course installed the JDK.
Now to get to the point, I want to contribute to a site I often visit to make a java calculation applet.
The main Idea is to make a new window where calculations are done by multiple inputs and outputs. It's doing some simple maths such as percentage, division and multiplication.
I would like to implement different data (different currency (Eur,Usd,Gbp) and pairs(EurChf,EurGbp GbpChf and UsdCad), and then all options possible,
from [this tool|http://www.goforex.net/pip-calculator.htm] , could that be possible to automate or is it better to manually put in?
I will update in an hour or so with a formula, if you would like, I already have the principal in excel so I could upload that if you'd like that.
Regards,
Koos

Hi I have written the part for the window and the input fields but the fields don't show up what's wrong in the code?
import javax.swing.*;
public class Window extends JFrame {
     public static void main(String[] args){
          new Window();
     public Window() {
     JFrame frame = new JFrame("Fapturbo LRR calculator");
          this.setSize(500, 400);
          this.setVisible(true);
          this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          JPanel area = new content;
          this.setContentPane(content);
          this.setVisible(true);
          this.setLocationRelativeTo(null)
class content extends JPanel {
     private JLabel Lotsriskreduction,equity,priceEURGBP,priceEURCHF,priceUSDCAD,priceGBPCHF;
     private JButton Calculate;
     private int inputLRR,inputEQ,inputP1,inputP2,inputP3,inputP4;
     private JTextField input1;
     public content() {
          this.setLayout(null);
          input1 = new JTextField();
          this.add(input1);
          input1.setBounds(24, 80, 210, 20);
          /// Here comes the calculation folowing the formula I posted before including their outputs/
          //in the same kind of field as the input.
          Calculate = new JButton("Calculate");
          Calculation kh = new Calculation();
}regards,
Koos

Similar Messages

  • Beginner to iDVD, needs basic help to get started

    I am in need of help. I want to make DVDs of my old 8mm tapes. I have a Sony 8mm video camera. What do I need , like adapters, cables or cards to make this happen. I have iDVD on my system, but have never attempted anything like this before. I just recently purchased this computer. Can ya'll help me get started?
    Thanks

    Charley,
    Read this:
    http://www.macworld.com/2004/05/features/fromvhstodvd/index.php
    You'll just use your Sony8mm like the VHS deck.......
    John B.

  • New To Iplanet app server.Can some one help me getting started by delpoying and calling one of each of these:JSP,Servlet,EJB.Tried with iplanet docs..didnt quite get it. thanx

     

    Hi,
    What is that you are trying to accomplish ? Is it deployment or
    trying to develop applications ? Are you getting any errors ? If so,
    please post them to help you. I think the documentation is the best place
    for you to begin with.
    Regards & Happy New Year
    Raj
    Arif Khan wrote:
    New To Iplanet app server.Can some one help me getting started by
    delpoying and calling one of each of these:JSP,Servlet,EJB.Tried with
    iplanet docs..didnt quite get it. thanx
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Some Help to get started needed for a newbie

    I am attempting to add some simple email functionality to a small utility
    program I am writing in Delphi for my school. We have used Groupwise for
    many years and I have programmed a bit in Delphi but mainly database work.
    Can anyone tell me where to find some documentation that will help me to
    get started in using the GW Tokens API with Delphi?
    How do I install it?
    Do I need a Type Library for it to use it effectively with Delphi?
    Is there some sort of basic skeleton code that I can refer to?
    I would greatly appreciate any help that anyone might offer here.
    Thanks
    Alan Humphries

    freemat2 wrote:
    Ooops putting some info would have helped.
    It will be a long hard road but..
    for VB (so you will need to translate for Delphi)
    Add references to Groupwise.exe to your project and Groupware type library
    GWCMA1.DLL
    Then this will create a new email and drop in a few addresses if supplied
    (eg from your CRM)
    Public Sub SendEmail(ByVal lsEmailAddress As String, ByVal lsDomain As
    String, lblProgress As Label)
    Dim vCommander As Object
    Dim rc As Long
    Dim sResult As String
    Dim lsOperation As String
    Dim i As Integer
    Dim sUserName As String
    Dim sEmailTo As String
    Dim nPtr As String
    Dim lsMsg As String
    On Error GoTo Error_Trap
    lsMsg = ""
    If lsEmailAddress = "" Then
    lsMsg = lsMsg & "Please supply a recipients email address" & vbCrLf
    End If
    If lsMsg > "" Then
    lblProgress.Caption = lsMsg
    MsgBox lsMsg
    Exit Sub
    End If
    If lsDomain > "" Then
    lsEmailAddress = lsEmailAddress & "@" & lsDomain
    End If
    Set vCommander = CreateObject("GroupwiseCommander")
    DoEvents
    lblProgress.Caption = "Create email"
    rc = vCommander.Execute("NewMail()", sResult)
    sEmailTo = lsEmailAddress
    While sEmailTo > ""
    nPtr = InStr(sEmailTo, ";")
    If nPtr = 0 Then
    sUserName = sEmailTo
    sEmailTo = ""
    Else
    If nPtr > 1 Then
    sUserName = left$(sEmailTo, nPtr - 1)
    End If
    If nPtr < Len(sEmailTo) Then
    sEmailTo = Mid$(sEmailTo, nPtr + 1)
    End If
    End If
    lblProgress.Caption = "Add " & sUserName
    lsOperation = "TextSetTo(" & vbDoubleQuotes & sUserName &
    vbDoubleQuotes & "; True) "
    rc = vCommander.Execute(lsOperation, sResult)
    If sResult > "" Then
    MsgBox "Error adding " & sEmailTo & " ,because " & vbCrLf &
    sResult
    End If
    Wend
    lblProgress.Caption = ""
    DoEvents
    Exit_Proc:
    Exit Sub
    Error_Trap:
    MsgBox "Error creating email " & vbCrLf & Err.Description
    lblProgress.Caption = "Error: " & Err.Description
    Resume Exit_Proc
    End Sub
    > Michael Risch wrote:
    > > DId you look at the Groupwise developer PDF or the sample code on the
    > > website? Both should be helpful.
    > > [email protected] wrote in news:KSlQh.218$7e7.73@prv-
    > > forum2.provo.novell.com:
    > > > Thanks - this is starting to look like a long, hard road
    > > >
    > > > Alan Humphries
    > > >
    > > >> Since you are using Delphi, all I can suggest is the PDF :-(
    > > >>
    > > >> Never ever had any luck with early binding and Delphi
    > > >>
    > > >> No need to install anything besides the GW Client though
    > > >>
    > > >>
    > > >> --
    > > >> Best Regards
    > > >>
    > > >> Tommy Mikkelsen
    > > >>
    > > >> IT Quality A/S
    > > >> Denmark
    > > >>
    > > >> Novell Developer Forums SYSOP
    > > >>
    > > >> Please Report back any success or failure, That way we all learn
    > > >>
    > > >> Sorry, but no support through email
    > > >>
    > > >> "I hate bugs".......Tommy Lee Jones, MIB
    > > >>
    > > >> Be a GroupWiseR, go http://www.groupwiser.net
    > > >
    > > >

  • Where can I find a beginners' step-by-step to help me get started?

    I've tried reading through the entire manual... it won't help me.
    Ergh.. I'm more of a visual learner, and I'd like just a small project to do to make me more familiar with final cut express 2.

    As others have said above, Tom Wolsky's book is by far the best, however FCE for Dummies is a very good book for just getting started. Even after several years of using FCE I still refer to my Dummies book for a quick how-to and then to Tom's book for a more in-depth how-to, why, and even better way.
    There are on-line tutorials but they will cost as much or more than the book.

  • Can I hire someone to help me get started creating a javascript to manage my PDF files?

    I have  written quite a few programs in VBA and C+.  Although I have not programmed at all in Java, it seems very close to C.  I simply do not know what programming/debug  tool to use and how to get started.

    OK, Thank you very much for taking the time to look more closely at what I need to do.  Here is a pretty detailed description of what I need and again thank you for your consideration:
    Job Packages or “Work specifications” are received from our authority in 15-50 page PDF files. The work specifications typically have 4 to 10 different jobs in each PDF file.  Each job is several pages or more and is uniquely identified by a work number which is located on the top right corner of each page in the job. All the pages that belong to a specific job can be identified by the associated work number.
    Scope of what is needed:
    1. Each individual job in the Job package must be extracted (Based on its work number) and saved in a unique folder (which will already exist) with a unique name that matches the folder name.
    2. Each job extracted must be printed on a specific printer or emailed to an out of office recipient. Whether the extracted file is printed or emailed is based on the parent file the extracted file came from. In other words, I intend to run this app on several PDF files. As an example, these 4 files to start:
    Job Package Report – Hampton-Wmsbg – Email all files extracted to……
    Job Package Report - Norfolk-VA Bch, Daily – Print all files extracted to printer IP:....
    Job Package Report - Chesapeake-Chuckatuck Daily – Print all files extracted
    Job Package Report - North Carolina  – Email all files extracted to printer IP:...
    3. On each page, where the work number appears, ( Unless the work number is marked…as existing) the work number needs to be replaced by a unique number, using a Arial black number 10 font. This number will be available in the same lookup table where all work numbers are found. An example lookup table would be:
    Work # to find
    Work # to replace
    7639509
    CG143668_2807639509
    7639191
    CG143669_2507639191
    7639189
    CG143670_2207639189
    7638341
    CG143671_2107638341
    7635491
    CG143672_2807635491
    7632212
    JOB ALREADY EXISTS
    If the work number is marked as existing, as in job 7632212 in the table above, do not search and replace work numbers, simply go to step 4.
    4. In the Header or centered in the top of each page, using Arial Black number 16 font, the same unique “Work # to replace” number needs to be printed. If that work number is marked already exists; in the Header using the same font Print “JOB ALREADY EXISTS.”
    5 If a work number is not found in the work specification, the work number not found must be identified and listed in a table.
    6 Likewise, any pages that have not been identified in the work specification, after the work number list has been gone through once, and all associated pages extracted, must be extracted and given a name “ pages not found” and stored in a directory called “jobs not found”.
    Approach
    Of course many approaches to accomplishing this are available and up to the programmer the best to perform. Additionally, it is probable many steps can be combined.  For example, when searching for the work number to extract pages, the new work number can be replaced at the same time.
    The end goal is to have a VBA program, embedded in an Excel file, call a Java script to open the  Job Package file.  The PDF file name does not change and the file will always be located in a specific directory.

  • Siebel Analytics:Java host is not getting started

    Hi All,
    I had a problem on java host service, when i start this service,it shows a message called
    "the oracle java host service on local computer started and then stopped.some services stop automatically if they are not in use by other services or programs.".so someone help me to solve this problem"
    thanks
    Edited by: 964118 on Nov 8, 2012 9:54 AM

    Are there any other installations that you might have done recently? Please make sure the environment parameter/variable is set to the right path with no spaces.
    Refer: BI Java service issue in 11

  • Just updated all apple products how can I get back to the page on apple tv that helps me get started with mirroring

    Need to get back to home screen on apple tv to help get started with mirroring

    Ditto.
    You need to look for your itunes library under Computers and select it, then music.
    Music column is for web based content not local content, just to confuse everyone.
    AC

  • New to JBoss/JMS: Help to get started

    Hi,
    I'm a J2EE programmer (and have been one for a while) but have never used JBoss or JMS, and need to know how JMS works in JMS, how to setup queues, monitor them (perhaps using HermesJMS), etc. I use Eclipse (new to me as well), so would like to know if I need to install the JBoss Eclipse IDE plugin, or if I could do all of this without that.
    Also, to get started and understand some existing code that uses this already, what would be a quick way. Skimmed through some references but dont have much time for a steep learning curve. Thanks.
    We use Tomcat (and jBPM within it) and JBoss for JMS.

    Hi
    I would also like to add,
    - I aware that all the configuration files are available under deploy/jms folder.
    - jbossMQ-service.xml and uil2-service.xml files have great role to do while creating queues and creating ConnectionFactory, respectively.
    But I am not able to relate all the things and not able to start with a small example, even I am not able to define QueueConnectionFactory.
    I am getting error like,
    Exception in thread "main" javax.naming.CommunicationException [Root exception is java.lang.ClassNotFoundException: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class loader disabled)]
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:728)
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at SendRecvClient.setupPTP(SendRecvClient.java:61)
    at SendRecvClient.sendRecvAsync(SendRecvClient.java:76)
    at SendRecvClient.main(SendRecvClient.java:107)
    Caused by: java.lang.ClassNotFoundException: org.jboss.jms.client.JBossConnectionFactory (no security manager: RMI class loader disabled)
    at sun.rmi.server.LoaderHandler.loadClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveClass(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at java.rmi.MarshalledObject.get(Unknown Source)
    at org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:72)
    at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:652)
    ... 5 more
    So Any startup small application along with configuration details is highly appriciated.
    Regards,
    Maulik

  • Some help to get Started!! electronic voting

    Hello everyone,
    I have to make a project about electronic voting..
    What I have to do is a server,a client and a CA server..
    Actually the client and the server must be authenticated to the CA server and then send data between them..With this way I will be able to keep secret the identity of the person who vote..
    I have never done anything similar before, just a server-multiclient application using just socket, not Secure Socket..
    How should I do this? I have try to run an example with an echo server using a key which I made using keytool.. The CA should give a key to the client and the server? I am really lost and I have no idea how to continue with this!
    Can you please give me any ideas, links to tutorials, some books titles to get started? Or some code it would be helpfull!!
    Thanks in advance!

    Hello everyone,
    I have to make a project about electronic voting..
    What I have to do is a server,a client and a CA server..
    Actually the client and the server must be authenticated to the CA server and then send data between them..With this way I will be able to keep secret the identity of the person who vote..
    I have never done anything similar before, just a server-multiclient application using just socket, not Secure Socket..
    How should I do this? I have try to run an example with an echo server using a key which I made using keytool.. The CA should give a key to the client and the server? I am really lost and I have no idea how to continue with this!
    Can you please give me any ideas, links to tutorials, some books titles to get started? Or some code it would be helpfull!!
    Thanks in advance!

  • Help in getting started with java 3d

    Hi everyone,
    I am very new to java3d and I started learning it from few books and online tutorial.
    However, in my very first program that I trying to code, I get error when I try to import following:-
    import com.sun.j3d.utils.universe.SimpleUniverse;
    The compilation error that I am getting is that "com.sun.j3d cannot be resolved". I have already installed java 3d. I can see java3d package in the Program Files/java directory.
    Any suggestions would be greatly appreciated.
    Thanks!

    On the instalation you have to use the default location, or the location where your SDK is installed.
    Also, check if the CLASSPATH is defined correctly in your Environment Variables for JAVA_HOME and PATH.
    You can also try to define the Java 3D jar files in you classpath before you try to run your file. Or can also try to use an IDE like NetBeans or Eclipse, it will help you a lot with your import declarations.

  • Need help to get started!

    Hi,
    I have little experience with Java and JDeveloper. I have to develop a very simple Portlet for our Portal and I just don't know where to look anymore to acheive this. Since this will run in Portal it has to be a Portlet.
    This is what I have to acheive with JDeveloper.
    I have to show data comming from a database.
    1. On the Presentation Page, I want to have a table with a LOV. When a user select, as an example a Department, from the LOV on the Presentation Page, the table will be populate with the value where the Department = the LOV.Department.
    Is there a place on OTN I can look for tutorial or example that can be build with JDeveloper but deploy on Portal? There is a lot of tutorial but I am not sure what can be deploy in Portal.
    Regards,
    Strat

    Hi guys,
    Finally I have been able to deploy my first Portlet to Portal. I have create a simple Portlet using Oracle PDK Java Portlet Wizard. Now if I can get an answer to the following question I will start putting my business logic to it.
    Can someone tell me why I can only run the index.jsp in Jdev. If I try to run the other jsp pages created by the wizard I get an error. There must be something that I have not understand yet so any help will be very appreciate it.
    Note. In portal I see all the Anatomy of my Portlet, the help, customize, etc etc.. everything is there.
    Thank you!
    This is the error.
    500 Internal Server Error
    java.lang.NullPointerException     at htdocs.nemisisfacilities._NemisisFacilitiesShowPage._jspService(NemisisFacilitiesShowPage.jsp:12)     [htdocs/nemisisfacilities/NemisisFacilitiesShowPage.jsp]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)

  • Very simple java project (help please)

    Hello. For a project I have to somehow use MouseListener to make something. My idea was to have a rectangle in which a circle (hockey puck) follows the user's mouse and whenever the user places the circle into a certain area the count goes up by one (like a game of hockey). If someone could give me some idea as to where I should start it would be greatly appreciated.
    My thanks

    This is alwyas [a good place to start|http://java.sun.com/developer/onlineTraining/] when you don't have a clue what's going on, and here if you need specifics on MouseListener. And to get movement, then you'll probably want to look here.
    Once you have some code and specific questions, literally almost everyone on here will be willing to help you further along the way. When you post code, please use code tags.

  • Please help me get started... JSP

    Hey, I'm brand new to web development. But I'd like to get into the field. For various reasons, I would like to start with JSP dev. I'm a C++ programmer, so concepts of OOP are not foreign to me. However, I don't have any idea as to where to start.
    I have installed Forte 4.0 software, Apache-Tomcat software, Sun JDK1.3, and JRun 3.0. Now I'm stuck. Although I have set the CLASSPATH, JAVA_HOME, and TOMCAT_HOME roots, I cannot write, compile, debug, or execute JavaServer Pages.
    Thank you for your time in assisting me.
    Moshe

    Hi,
    For debugging
    =============
    It seems that JSP runtime errors are impossible to debug. The exception
    thrown is always in some compiled servlet code. For example
    java.sql.SQLException, java.lang.ArrayIndexOutOfBoundsException,
    java.lang.NullPointerException and java.lang.ClassCastException. Is it
    possible to debug runtime errors, other than printing multiple checkpoint
    statements, which is not an efficient method?
    SOLUTION:
    There are no hard and fast rules to do that. It is very dependent on
    your JSP engine. In general, you need to find where your .java files
    are. You need to tell your JSP engine to leave them around. By default
    most engines delete them after creating the .class file. It may get
    tricky, though. Some engines put your HTML text into some kind of data
    structure (an object dump, basically) so it is not stored in your .class
    file. This makes your class files much smaller, and the HTML is not
    stored on the VM's stack. This makes it very difficult to debug.
    One suggestion is to use Forte for Java to do debugging of JSP codes. It can be
    downloaded and purchased from http://www.sun.com/forte. The following is
    a short tutorial to demonstrate how to debug a JSP file, set breakpoints,
    and watch variable content values during runtime.
    1) Set the compiler property for your JSP.
    - Go to the Explorer window.
    - Select your JSP file.
    - Set the Servlet Compiler property to Internal Compilation.
    (Hint: Use the context-sensitive Properties window.)
    - Set the Debugger property to Servlet/JSPDebugging.
    2) Now you will debug the JSP file by setting breakpoints, watching
    variables, and switching between the JSP and corresponding servlet.
    Set the breakpoint in your JSP file.
    - Go to the Source Editor window.
    - Select a few lines to watch
    - Using the context-sensitive menu (right click), select Add/Remove
    Breakpoint. This line will turn red to indicate that there is a
    breakpoint for this line.
    3) View the breakpoints in the corresponding servlet for your JSP file.
    - Go the Explorer window.
    - Select your JSP file.
    - Using the context-sensitive menu, select View Servlet.
    You will see the corresponding servlet in the Source Editor window.
    At the bottom of the Sourde Editor window, you should see two tabs,
    one for JSP and another for the corresponding servlet.
    - Select the servlet's tab.
    - Using the context-sensitive menu, select Clone view.
    You should see a separate window with the servlet code and
    breakpoints. These breakpoints automatically came from the JSP
    file.
    - Place the JSP file and corresponding servlet window side by side so
    that you can simaltaneously view the execution of JSP as well as
    the servlet.
    4) Select some variables to watch during the execution.
    - Go the window containing the servlet's source code.
    - Using the context-sensitive menu, select Add Watch.
    - In the resulting dialog box, enter a variable name for the Watch
    Name.
    - Click on the OK button.
    - To view the watch variables, go to the Main menu and select View ->
    Debugger. At the bottom of the Debugger window you should see a
    tab named Watches.
    - Select the Watches tab.
    You should see the added variables.
    5) To start the debugging session, go the Main menu and select Debug ->
    Start Debugging.
    The execution will stop at the first breakpoint in the JSP file.
    If you see the servlet code, there are also execution will stop at
    the first breakpoint.
    - To continue the execution, go the JSP source code in the Source
    Editor window and press Control-F5 to restart the debugger.
    Execution will stop at the next breakpoint. In the servlet code,
    execution will also stop at the next breakpoint.
    - Go to the Debugger window and select the Watches tab to view the
    contents of the variables.
    6) If you set any breakpoints in the servlet code, those breakpoints
    will automatically appear in the JSP file.
    This way, you can set breakpoints in either JSP file or corresponding
    servlet.
    7) While executing the JSP, observe the contents of the variables in the
    Debugger window.
    8) Once execution has reached its end, close the debugger by going to
    the Main menu and selecting Debug -> Finish Debugging.
    For more tutorials and demo, please visit:
    http://www.sun.com/forte/ffj/demo/online_demo.html
    http://access1.sun.com/SRDs/srd_repository/F4JCE_SRD.ps
    For information and online support, please visit:
    http://forte.sun.com/cgi-bin/WebX
    http://www.sun.com/forte/ffj
    I hope this will help you.
    Thanks
    Bakrudeen

  • New User: Needs Help with getting started with the Z

    Hi, my son got a creative Zen for xmas, only getting round to getting it together now, and having some problems with the manual. All this is new to us -technology etc. We have managed to rip a CD but cant get any further! Downloading from internet sounds like such a good idea, but 'know-how-to do' seems light years away in this house! Is there an easy start manual or step by step directions that I've missed out on somewhere? the quick start manual is fine for learning how to use the player but doesn't give any info on ripping CDs and whatever comes after. Can any of you 'experts' bring yourselves back to the begining and explain what to do in simple english?
    Message Edited by Jeremy-CL on 02-0-2005 0:25 AM

    Mother,
    I moved and edited your message as your are more likely to get help out here. As far as suggestions go for downloading from the internet goes, there is not a lot of difference between getting it from CDs. The main difference is the process of actually getting the music.
    First off there are several music stores out there and some that are free. Here are a few suggestions (this is all personal knowledge, this is not an official endorsement of any of these):
    Napster - Integrates into Windows Media Player if you desire and can transfer directly to most Zens. Also allows a user to subscribe to an account that allows for streaming and computer only downloads of music (must purchase song to transfer to the player...usually around .99 a song)
    Buymusic.com - Website interface that sells individual tracks and albums.
    Wallmart music store - Website interface that sells individual tracks and albums.
    There are others but these three are the mains ones (outside of itunes, which is designed for the Ipod).
    Basically once you download them, you go into MediaSource or Windows Media Player and add the files to the music library. Then you just transfer like you do with CDs.
    JeremyMessage Edited by Jeremy-CL on 02-0-2005 0:34 AM

Maybe you are looking for