Getting started with NDWS7.3 ,webdynpro JAVA

Someone please help me how to create normal application where we have 2 ratio button
* single
* multiple
If we select Single it will show :
1 Start Date
2 End Date
If we select Multiple:
1 Start date
2 End Date
3 Drop down menu to add file to upload.

Dear Prakash,
Check following example.
**************** - Enable/Disable & Show/Hide UI Elements in Web Dynpro Java
Thanks & Regards,
Patralekha

Similar Messages

  • How can i get started with messaging in java

    how can i get started with messaging in java

    If you're talking about writing mail clients in java, you might want to start with a better forum. We're focused on Messaging Servers, here. Unlikely you'll get any Java programming from us.
    If you're talking about Messaging Server, start by downloading the software from sun.com/downloads.

  • Getting Started with Flex and Java RPC for Free?

    Good Morning,
    Please forgive me if this is the wrong place to post- I'm
    just having trouble wrapping my head around what is and what isn't
    available for free in the Adobe Flex world.
    I've been working on an application for the last few months
    using Open Laszlo (
    http://www.openlaszlo.org/),
    but I've been running into frustrations with their lack of
    up-to-date documentation, and I've found it difficult to bring new
    people into the project, since the set of users who know it is so
    small.
    While I do like that I can compile to DHTML, that's not
    enough to hold me there.
    I've been looking into Adobe Flex, and it seems like a good
    alternative- I'm comfortable paying $500 for the IDE-
    I use Eclipse currently, so having a plugin for it sounds
    ideal. That said, when I look into ways to talk to a Java backend,
    everything points to Flex Data services, which is now part of some
    larger package costing tens of thousands of dollars.
    I don't need advanced messages, or data synchronization, as
    nice as it would be.. All I really need is the ability to call a
    Java method, and get an object back, which I can then work with in
    Flex.
    I see the forum message that asks
    "How
    do I 'do' Flash for free?, but this only talks about RPC very
    broadly. Given that the message is from over a year ago, I thought
    it would be better form to start a new topic, than replying to it.
    Can someone explain to me what components I'd need, both on
    the client side and the server side?
    Is there a set of manuals that explain how to do Flex RPC
    from Java?
    Can Flex compile to any versions of flash earlier than 9?
    (Flash 6/7 is still in wide deployment)
    Do I want to start using Flex 2, or Flex 3? Are the
    components compatible? Will the F3 docs be ready?
    Finally, where can I purchase the Charting components? The
    ability to create charts such as
    this
    overcome a decent price barrier.
    Thank you for any insight you can offer, and direction you
    can provide.

    quote:
    Originally posted by:
    cunparis2day
    On our project they made a proxy in java where they passed in
    the name of the method as a string, and an array of objects for the
    parameters. The proxy then sent the request via RMI and returned
    the result. Kind of a hack but they say it worked (I wasn't here
    when they did it).
    What did the RMI talk to? Are there docs on this?
    quote:
    Another approach, generate the proxy from the java
    interfaces. Or better yet, generate it dynamically with CGLIB.
    quote:
    Finally, I'm investigating using Mule for the integration.
    Let me know what you think about those suggestions.
    We have our own messages, but how would MULE translate them
    to Flex?
    You know quite a bit more about this, can you take a step
    back, and explain?

  • Java Applet HelloWorld "Getting Started With Applets" example not working

    Hi there,
    It's been ages since I ran my Linux CentOS boot of Linux but I am going through the official oracle java applet tutorials, just every time I try and run the "Hello World" applet in Firefox 17.0.3 and I am running the Iced Tea thing for java applets.
    Every time I try and run the example from the following code:
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    import javax.swing.JLabel;
    public class HelloWorld extends JApplet
      // called when the user enters the html page:
      public void init() // keep apps within the init() function very small as per the http://docs.oracle.com/javase/tutorial/deployment/applet/appletMethods.html
        try{
          SwingUtilities.invokeAndWait(new Runnable()
            public void run()
           JLabel myLabel = new JLabel("Hello World");
           add(myLabel);
            } // end running the application
          }); //end of swing invokeand wait
        } catch (Exception error){ // end user running the app in page
           // System.err.println("GUI didn't work on initial run");
    }It keeps bringing up the error "Start: Applet not initialized" I did google that basic error and from what I found I should consult the JavaConsole, I know the console was removed from the Firefox menu quite a while ago. So went to find a way of loading it using the IcedTea one but it keeps bringing up a load of errors in even trying to run that.
    Is there anyway of sorting this out? I mean I have even tried installing the one on the oracle website, the plain JDK but nothing seems to work.
    Is there anyone that can help me get applets working? I was even going to go as far as to reinstall my distro but I want to avoid that as much as possible.
    Thanks and I look forward to any replies,
    Jeremy.

    in the Getting Started with Java DB tutorial they
    tell u how to set ur "DERBY_HOME" (what is that?).
    once i press enter after typing this command:
    set DERBY_HOME=D:\Java\Java
    Phonebook\javadb in my command prompt do i get
    any message or does it just go to the next line?type env or set or whatever in the command line to see what your environment variables are set to
    they also tell u how to set ur "JAVA_HOME" (what is
    that?). The Java installation you want to use
    in their example they give u this: set
    JAVA_HOME=C:\Program Files\Java\j2se1.4.2_05but in my java folder i have jdk1.6.0 and jre1.6.0
    but no j2se1.4.2_05, so which 1 must i choose?It's up to you. I'd go with 1.6
    also once ive done this: set
    DERBY_HOME=D:\Java\Java Phonebook\javadb this
    set JAVA_HOME=D:\Program
    Files\Java\jre1.6.0 and this set
    PATH=%DERBY_HOME%\bin;%PATH% and then type
    sysinfo to verify that the variables were set
    correctly i get these errors: 'D:\Java\Java' is
    not recognized as an internal or external command,
    operable program or batch file and '""'
    is not recognized as an internal or external command,
    operable program or batch file any help would
    really be appreciated because this is really killing
    me!you need to set your path variable - so something like:
    set PATH=C:\Program Files\Java\j2se1.4.2_05\bin

  • Getting started with Java and XML

    Hi,
    Although I am pretty familiar with Java, I am a total newbie with using it to parse XML. I have been reading quite a few tutorials so am getting a good understanding of it and am thinking of using the DOM model for my purposes.
    What I haven't been able to find, however, is how I can actually get started with this. I have tried compiling a few examples and have been getting errors such as:
    xmltest.java package javax.xml.parsers does not exist
    xmltest.java package org.w3c.dom does not existetc etc...
    It looks like these packages don't come with J2SE. Can anyone confirm this? Do I need to download and install the Java Web Services Developer Pack to solve this problem?
    Finally, I know I will need an XML parser but have read that JDK 1.4 has it's own parser (Crimson). Is this adequate for parsing XML files or will I also need a parser such as Xerces?
    Thanks so much for any help!

    Hi DrClap,
    Thanks for the reply. I have JDK 1.4.1_02 installed on my server but the following error keeps coming up when I try to run my example:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/w3c/dom/NodeAre there any further packages I need to download in order to run Java with XML? I have read some people install JAXP and XERCES... are these necessary for parsing an XML document or should J2SE 1.4.1 be sufficient?
    Thanks for your help!
    Jill

  • Getting started with Hibernate

    Hi Friends,
    I am working through my way to get started with Hibernate. I am using the tutorial at http://www.gloegl.de/8.html and I am stuck at running the application. I get the following error
    D:\Hibernate>run
    D:\Hibernate>D:\jdk1.3.1\jre\bin\java -classpath .\lib\hibernate2.jar;.\lib\jta.
    jar;.\lib\commons-logging.jar;.\lib\hsqldb.jar;.\lib\cglib2.jar;.\lib\commons-co
    llections.jar;.\lib\dom4j.jar;.\lib\odmg.jar;.\lib\jdbc2_0-stdext.jar;.\bin Even
    tManager
    Initializing Hibernate
    INFO - Hibernate 2.1 final
    INFO - hibernate.properties not found
    INFO - using CGLIB reflection optimizer
    INFO - JVM does not support LinkedHasMap, LinkedHashSet - ordered maps and sets
    disabled
    INFO - using workaround for JVM bug in java.sql.Timestamp
    INFO - configuring from resource: /hibernate.cfg.xml
    INFO - Configuration resource: /hibernate.cfg.xml
    INFO - Mapping resource: Event.hbm.xml
    INFO - Mapping class: Event -> EVENTS
    INFO - Configured SessionFactory: null
    INFO - processing one-to-many association mappings
    INFO - processing one-to-one association property references
    INFO - processing foreign key constraints
    INFO - Using dialect: net.sf.hibernate.dialect.HSQLDialect
    INFO - Use outer join fetching: false
    INFO - Using Hibernate built-in connection pool (not for production use!)
    INFO - Hibernate connection pool size: 20
    INFO - using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:data/test
    INFO - connection properties: {user=sa, password=}
    INFO - Transaction strategy: net.sf.hibernate.transaction.JDBCTransactionFactor
    y
    INFO - No TransactionManagerLookup configured (in JTA environment, use of proce
    ss level read-write cache is not recommended)
    INFO - Use scrollable result sets: true
    INFO - echoing all SQL to stdout
    INFO - Query language substitutions: {}
    INFO - cache provider: net.sf.hibernate.cache.HashtableCacheProvider
    INFO - instantiating and configuring caches
    INFO - building session factory
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/transform/S
    ource
    at net.sf.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.ja
    va:160)
    at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.
    java:726)
    at EventManager.<init>(EventManager.java:19)
    at EventManager.main(EventManager.java:27)
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/transform/S
    ource
    at net.sf.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.ja
    va:160)
    at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.
    java:726)
    at EventManager.<init>(EventManager.java:19)
    at EventManager.main(EventManager.java:27)
    what jar files/files I need other than mentioned in the tutorial.
    please help me to get started with Hibernate...
    Thanks for your help and time.

    java -classpath .\lib\hibernate2.jar;.\lib\jta.jar;.\lib\commons-logging.jar;.\lib\hsqldb.jar;.\lib\cglib2.jar;.\lib\asm-1.4.1.jar;.\lib\commons-collections.jar;.\lib\dom4j.jar;.\lib\odmg.jar;.\lib\xml-apis-2.3.0.jar;.\lib\xerces-2.3.0.jar;.\lib\jdbc2_0-stdext.jar;.\bin de.gloegl.road2hibernate.EventManager
    see above classpath and identify....how many jars you missed... :)
    All the best
    Nilesh

  • How to get start with J2EE

    Hi, I am really new to J2EE.Is there any pdf available to get start with J2EE basics.

    kviaruningroups wrote:
    Hi, I am really new to J2EE.Is there any pdf available to get start with J2EE basics.The most basic Java EE app you can start with uses servlets and JSPs (written using JSTL) to access relational databases using JDBC. You can go a very long way indeed just with those. Add the rest as needed.
    %

  • Getting started with SAP Netweaver

    Hi there,
    I am an IT professional with 7 years of development/project management experience in MS technologies.
    I want to learn SAP Netweaver, but very new to SAP!
    What is the Pre-requisite to learn Netweaver? Should I know ABAP to get into the Netweaver platform?
    Please advice me and provide some useful materials to getting started with Netweaver.
    Thanx.
    Aslu

    Hi Aslam,
    there was a recent thread about a similar question of yours, please check out First time in  SAP  Netweaver
    There are so many NetWeaver components so your question is a bit hard to answer.. But if you want to keep on programming, you really don't need ABAP much. NetWeaver is mostly about Java (Web App Server & Enterprise Portal programming), but you have touching points to both .NET and ABAP.
    Hope this helps,
    -Mikko

  • Where can I find "Getting Started with AppleScript"?

    I googled it. And it doesn't show any links from Apple. I'm trying to learn AppleScript and the Language guide says to go through the Overview first which in turn recommends going through Getting Started with AppleScript.
    I even searched Mac Reference Library but it just doesn't show up!
    Any help?
    Neerav

    No, certainly not. I mean, I don't know any AppleScript, but I can say with certainty that the answer to that question is no.
    Objective-C is a programming language that is an extension of the C language. It is the language that is used to develop applications for Mac and iPhone. Other languages like C++ and Java can be used as well, but Objective-C is the language that Apple really intends for you to use for Mac and iPhone development, since it is heavily integrated with the Cocoa framework (for Mac developemt) and Cocoa Touch framework (for iPhone development). You need to know the C language to learn the Objective-C language, and you need to know the Objective-C language to work with the Cocoa or Cocoa Touch frameworks, but AppleScript is a totally separate and different animal from these things. AppleScript is a scripting language, and although it can technically be used to create applications from what I understand, it is mainly used as a mechanism for controlling applications. For example, you could use AppleScript to tell a certain application to perform a certain task everyday at a certain time. You can use it to create automated workflows and whatnot. I think that's what it's mainly meant for.
    It's worth noting, however, taht there is a development environment called AppleScriptObjC. I don't really know anything about this, except that it allows for AppleScript to be used as the primary programming language.
    I found a lot of this information at [Wikipedia's AppleScript page|http://en.wikipedia.org/wiki/AppleScript], so you might want to consider looking over it real quick -- it might be helpful. Here is the link to [Wikipedia's Objective-C page|http://en.wikipedia.org/wiki/Objective-c] and [Wikipedia's Cocoa page|http://en.wikipedia.org/wiki/Cocoa_%28API%29]. As someone said on these forums, Wikipedia is far from the last word on any subject, but those links might be helpful for you for just getting an idea of what these things are all about.
    Hope that helps some. Please let us know if you have any other questions.

  • Tips and advices on how to get started with coherence

    Hi,
    I am getting started with Oracle Coherence (for Java), but the start isn't so smooth:
    I don't find the documentation so useful for a really beginner user (even the getting started guide...It has a lot of information but doesn't really get you started in my opinion ... :) ).
    Can someone point me to some tutorial/doc that can help me ?
    Thanks in advance.
    Edited by: e.gherardini on 10-mar-2010 2.28

    Thank you.
    In fact I am reading also this:
    http://wiki.tangosol.com/display/COH35UG/Recommended+Reading
    and it seems really helpful.

  • Can't seem to deploy EJB by following the 'Getting Started with WebGain Studio'

    Hi ,
    We're trying to evaluate the Weblogic 5.1 server with Webgain. We tried to
    follow the 'Getting Started with Webgain'
    example but when we tried to deploy the EJB it complained the error.
    Attached is the log from the VisualCafe.
    I need your help.
    Thank you very much.
    Quang.
    VisualCafe (21:54:20): sj -sysclasspath
    D:\VisualCafeEE\Bin\..\JAVA2\LIB\RT.JAR;D:\VisualCafeEE\Bin\..\JAVA2\LIB\TOO
    LS.JAR -g -d
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\ -classpath
    VisualCafe (21:54:20):
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\;d:\VisualC
    afeEE\java2\lib\rt.jar;d:\VisualCafeEE\java2\lib\dt.jar;d:\VisualCafeEE\java
    2\lib\i18n.jar;d:\VisualCafeEE\java2\lib\jaws.jar
    VisualCafe (21:54:20):
    ;d:\VisualCafeEE\java2\lib\plugprov.jar;D:\VisualCafeEE\JAVA\LIB\;D:\VisualC
    afeEE\JAVA\LIB\SYMCLASS.ZIP;D:\VisualCafeEE\JAVA\LIB\CLASSES.ZIP;D:\VisualCa
    feEE\JFC\SWINGALL.JAR;D:\VisualCafeEE\swing-1.1\S
    VisualCafe (21:54:20):
    WINGALL.JAR;d:\weblogic\license\;d:\weblogic\mssqlserver4v70\classes\;D:\Vis
    ualCafeEE\Bin\xutil.zip;D:\VisualCafeEE\Bin\Components\sfc.jar;D:\VisualCafe
    EE\Bin\Components\symbeans.jar;D:\VisualCafeEE\Ja
    VisualCafe (21:54:20):
    va\Lib\eradtools.jar;D:\VisualCafeEE\Java\Lib\eradpublic.jar;D:\VisualCafeEE
    \Java\Lib\dbaw.zip;D:\VisualCafeEE\Bin\Components\dbaw_awt.jar;D:\VisualCafe
    EE\Bin\Components\databind.jar;D:\VisualCafeEE\Ja
    VisualCafe (21:54:20):
    va\Lib\Collections.zip;D:\VisualCafeEE\Java\Lib\icebrowserbean.jar;D:\Visual
    CafeEE\Java\Lib\servlet.jar;D:\VisualCafeEE\Java\Lib\webserver.jar;D:\Visual
    CafeEE\Java\Lib\jspengine.jar;D:\VisualCafeEE\Jav
    VisualCafe (21:54:20):
    a\Lib\xml.jar;D:\VisualCafeEE\Java\Lib\symtools.jar;D:\VisualCafeEE\Bin\Comp
    onents\templates.jar;D:\VisualCafeEE\Bin\Components\vcejbwl.jar;D:\VisualCaf
    eEE\Java\Lib\javax_ejb.zip;D:\VisualCafeEE\Java\L
    VisualCafe (21:54:20):
    ib\JNDI.JAR;D:\VisualCafeEE\Java\Lib\jts.zip;D:\VisualCafeEE\Java\Lib\jdbc2_
    0-stdext.jar;D:\VisualCafeEE\Bin\sb\;D:\VisualCafeEE\Bin\sb\classes\sb.jar;D
    :\VisualCafeEE\Bin\Components\DreamweaverPlugin.j
    VisualCafe (21:54:20): ar;C:\Program Files\PhotoDeluxe
    2.0\AdobeConnectables\;d:\weblogic\eval\cloudscape\lib\cloudscape.jar -make
    -cdb BookEnterpriseBean.cdb
    VisualCafe (21:54:20):
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\com\webgain
    \library\book\ejb\BookEJB.java
    VisualCafe (21:54:20):
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\com\webgain
    \library\book\ejb\BookHome.java
    VisualCafe (21:54:20):
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\com\webgain
    \library\book\ejb\Book.java
    VisualCafe (21:54:20):
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\com\webgain
    \library\book\ejb\BookPK.java
    VisualCafe (21:54:23): Build Successful
    Internal VM (21:54:26): Starting deployment to WebLogic Server 5.1 ...
    Internal VM (21:54:26): Building deployment descriptor...Created 4 DD files
    Internal VM (21:54:26): Building generic JAR file...Created file
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\BookEnterpr
    iseBean.jar
    Internal VM (21:54:26): Processing Jar...
    Internal VM (21:54:26): D:\VisualCafeEE\java\bin\..\bin\java.exe -classpath
    Internal VM (21:54:26):
    "d:\weblogic\lib\weblogic511sp.jar;d:\weblogic\lib\weblogic510sp2.jar;d:\web
    logic\lib\weblogic510sp1.jar;d:\weblogic\classes;d:\weblogic\lib\weblogicaux
    .jar;D:\VisualCafeEE\JAVA\LIB\;D:\VisualCafeEE\JA
    Internal VM (21:54:26):
    VA\LIB\SYMCLASS.ZIP;D:\VisualCafeEE\JAVA\LIB\CLASSES.ZIP;D:\VisualCafeEE\JFC
    \SWINGALL.JAR;D:\VisualCafeEE\swing-1.1\SWINGALL.JAR;.\;d:\weblogic\license\
    ;d:\weblogic\mssqlserver4v70\classes\;D:\VisualCa
    Internal VM (21:54:26):
    feEE\Bin\xutil.zip;D:\VisualCafeEE\Bin\Components\sfc.jar;D:\VisualCafeEE\Bi
    n\Components\symbeans.jar;D:\VisualCafeEE\Java\Lib\eradtools.jar;D:\VisualCa
    feEE\Java\Lib\eradpublic.jar;D:\VisualCafeEE\Java
    Internal VM (21:54:26):
    \Lib\dbaw.zip;D:\VisualCafeEE\Bin\Components\dbaw_awt.jar;D:\VisualCafeEE\Bi
    n\Components\databind.jar;D:\VisualCafeEE\Java\Lib\Collections.zip;D:\Visual
    CafeEE\Java\Lib\icebrowserbean.jar;D:\VisualCafeE
    Internal VM (21:54:26):
    E\Java\Lib\servlet.jar;D:\VisualCafeEE\Java\Lib\webserver.jar;D:\VisualCafeE
    E\Java\Lib\jspengine.jar;D:\VisualCafeEE\Java\Lib\xml.jar;D:\VisualCafeEE\Ja
    va\Lib\symtools.jar;D:\VisualCafeEE\Bin\Component
    Internal VM (21:54:26):
    s\templates.jar;D:\VisualCafeEE\Bin\Components\vcejbwl.jar;D:\VisualCafeEE\J
    ava\Lib\javax_ejb.zip;D:\VisualCafeEE\Java\Lib\JNDI.JAR;D:\VisualCafeEE\Java
    \Lib\jts.zip;D:\VisualCafeEE\Java\Lib\jdbc2_0-std
    Internal VM (21:54:26):
    ext.jar;D:\VisualCafeEE\Bin\sb\;D:\VisualCafeEE\Bin\sb\classes\sb.jar;D:\Vis
    ualCafeEE\Bin\Components\DreamweaverPlugin.jar;C:\Program Files\PhotoDeluxe
    Internal VM (21:54:26):
    2.0\AdobeConnectables\;d:\weblogic\eval\cloudscape\lib\cloudscape.jar"
    Internal VM (21:54:26): weblogic.ejbc -compiler
    d:\VisualCafeEE\java2\bin\javac.exe -classpath
    Internal VM (21:54:26):
    d:\weblogic\lib\weblogic511sp.jar;d:\weblogic\lib\weblogic510sp2.jar;d:\webl
    ogic\lib\weblogic510sp1.jar;d:\weblogic\classes;d:\weblogic\lib\weblogicaux.
    jar;d:\weblogic\lib\persistence\WebLogic_RDBMS.ja
    Internal VM (21:54:26): r;ejbcgen;
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\_BookEnterp
    riseBean.jar -d
    D:\WebGainStudio\Documentation\LibraryExample\BusinessLogic\Book\BookEnterpr
    iseBean.jar
    Internal VM (21:55:04): WebGain Java! JustInTime Compiler Version
    4.00.002(i) for JDK 1.1.x
    Internal VM (21:55:04): Copyright (C) 2000 WebGain, Inc.
    Internal VM (21:55:04):
    Internal VM (21:55:04): . Jar Processing complete
    Internal VM (21:55:04): Deploying JAR...Delivering enterprise bean to
    WebLogic Server
    Internal VM (21:55:07): Unable to move jar to WebLogic ServerWebGain Java!
    JustInTime Compiler Version 4.00.002(i) for JDK 1.1.x
    Internal VM (21:55:07): Copyright (C) 2000 WebGain, Inc.
    Internal VM (21:55:07):
    Internal VM (21:55:07): Usage: DeliverJar serverURL systemPassword
    serverHome jarFileName
    Internal VM (21:55:07):
    Internal VM (21:55:07): Delivery Failed : WebGain Java! JustInTime Compiler
    Version 4.00.002(i) for JDK 1.1.x
    Internal VM (21:55:07): Copyright (C) 2000 WebGain, Inc.
    Internal VM (21:55:07):
    Internal VM (21:55:07): Usage: DeliverJar serverURL systemPassword
    serverHome jarFileName
    Internal VM (21:55:07):
    Internal VM (21:55:07): Cleaning up...Completed.

    Yes I checked it.  As far as I can see I did everything Apple said to do.  I took some screen shot so you can see how the screens are connected and what and where the code is, and what it does when I drag the cancel and done bar buttons to the exit

  • Getting started with ePrint (Videos)

    Here are a few videos on getting started with ePrint.   These videos are specific to specific model(s).
    Getting Started with ePrint - HP LaserJet P1606dn
    Getting Started with ePrint - HP Laserjet CP1525
    The printer shown in this video is the HP Laserjet CP1525.
    Getting Started with ePrint - HP Laserjet 1536dnf MFP
    The printer shown in this video is the HP Laserjet 1536dnf.
    Getting Started with ePrint - HP Laserjet P1102w
    The printer shown in this video is the HP Laserjet P1102w.
    Getting Started with ePrint - HP Photosmart Plus e-All-in-One Printer - B210a
    The printer shown is the HP Photosmart Plus e-All-in-One - B210a, but these steps will also work for the B210b and B210c.
    Getting Started with ePrint - HP Officejet 6500a-7500a-8500a (a910a)
    These steps work for the HP Officejet 6500A e-All-in-One -- E710s, E710e, E710n, E710a; HP Officejet 7500A Wide Format e-All-in-One Printer - E910c, E910a; HP Officejet Pro 8500A e-All-in-One Printer - A910a, A910d.
    Getting Started with ePrint - HP Photosmart Premium e-All-in-One Printer - C310a
    The printer shown is the HP Photosmart Premium e-All-in-One Printer - C310a, but the steps will also work for the HP Photosmart Premium e-All-in-One Printer - C310b, and the HP Photosmart Premium e-All-in-One Printer-C310c.
    Getting Started with ePrint - HP Color Laserjet CP1025nw
    The printer shown is the HP Color LaseJet CP1025nw.
    Getting Started with ePrint - HP Photosmart eStation All-in-One Printer - C510a
    These steps will work for the HP Photosmart eStation All-in-One Printer - C510a.
    Getting Started with ePrint - HP Officejet Pro All-in-One 8500a A910n
    These steps will work for the HP Officejet Pro 8500a (a910g, a910n) All-in-One printers.
    Getting Started with HP ePrint - HP Photosmart e-All-in-One Printer (D110a)
    The printer shown is the HP Photosmart D110a, but the steps will also work for the HP Photosmart B110a and K110a.
    9/20/2012 update: 4 new videos
    Getting Started with ePrint - HP Envy 100 e-All-in-One Printer (D410a)
    The model shown is HP Envy 100 e-All-in-One Printer (D410a).
    The steps shown apply to these printers:
    HP Envy 100 e-All-in-One Printer (D410a)
    HP Envy 100 e-All-in-One Printer (D410b)
    HP Envy 100 e-All-in-One Printer (D411a)
    Getting Started with ePrint - HP Deskjet 3050A e-All-in-One Printer (J611a)
    This video shows the HP Deskjet 3050A e-All-in-One Printer (J611a), and also applies to the J611b.
    Getting Started with ePrint - HP Photosmart 5510 e-All-in-One Printer (B111a)
    This video shows the HP Photosmart 5510 e-All-in-One Printer (B111a), but these steps also apply to the B111b, B111g, 5511  B111j, 5512  B111a, 5512 B111e,  5512  B111f, 5514 B111c, 5514 B111d, 5514 B111h, 5515  B111a, 5515 B111h, 5515 B111j,  6510 B211a, 6510 B211b, 6510 B211e,  6512  B211a, 6515 B211a.
    Getting Started with ePrint - HP Envy 110 e-All-in-One Printer (D411a)
    The printer shown in this video is the HP Envy 110 e-All-in-One Printer (D411a), but the steps also apply to the Envy 110 (D411b),  Envy 111 (D411d), and the Envy 114  (D411c).
    I am an HP employee.

    Great topic!!
    I am an HP employee

  • Can not get example to work after following instructions given in "Getting Started with the NI LabVIEW C Generator" guide

    We explored using sbRIO for our project, for different reasons we ended up going with a different embedded solution . We are currently evaluating the LabVIEW C Generator to convert some of the core analysis routines from LabVIEW to C so the team that will be creating the embedded solution don't have to re-implement them from scratch. 
    Before converting our code, I followed the instructions given in the "Getting Started with the NI LabVIEW C Generator" manual to create a static library created inCygwin using GNU Compiler Collection (GCC). 
    I managed to compile the code, but when I type "run GCD.exe" in the Cygwin console, I just see the window flash with no time to see if the result is correct or not. I modified the main.c cde to add a getchar(), but the window still just flashes and now I am left with the GCD process still running and have to kill it using Windows Task Manager.
    Has anyone else got this example to run? I am sure I am missing an obvious setting or step, please help me.
    More details below.
    Thanks,
    Fab
    Here is a video showing the steps I followed 
    If you don't want/can't see the video. Here are some screenshots of what I have done so far:
    GratestCommonDivisor.lvproj C Generation build specs Information:
    C Function prototype definition:
    I copied Makefile located at: C:\Program Files (x86)\National Instruments\LabVIEW 2011\examples\CGenerator\Tutorial\Cygwin
    and replaced both Makefile and Makefile.cygwin in the directory where the C code was generated
    I also copied main.c from the same location and replaced the one generated
    Here is the snapshot of the results after executing "make GCD.exe"
    Then to run it I just type 
    I see a window open and close really quickly and I never see the result. I have tried adding the getchar() line to the main.c file, but still I don't get to see the results.
    Certified LabVIEW Architect * Certified Professional Instructor * LabVIEW Champion

    Hi Kevin,
    I hope you had a good Thanksgiving. I am attaching a zip file with the LabVIEW project, my build specification and my version of "Greatest Common Divisor.vi", which should be the same as the one that you have that ships with the LabVIEW C Generator, but just in case. I am also attaching a zip file with the C files generated by the LabVIEW C Generator.
    You can also see the video I posted earlier with the steps I followed. I hope you are able to point out where I went wrong. 
    Thanks,
    Fab
    Certified LabVIEW Architect * Certified Professional Instructor * LabVIEW Champion
    Attachments:
    GreatestCommonDivisor.zip ‏8 KB
    CGen Files.zip ‏71 KB

  • Getting started with an iBook G3?

    Hey,
    I just got an iBook G3 (500mhz, snow, airport, 10gb hd, upgraded ram), to compliment my iMac (G5 rev c) and I'm a little new.
    It was used, I got it via trade.
    Does anyone have some tips for me to get started with it ? I'm wanting to upgrade the HD to at least 20 GB, and to max out the ram. Any hints on that ?
    Also, where can I get a new battery and charger ?
    Also, what else should I know about it ?
    It will mainly be used for writing (novel, fan-fics), surfing the web (wirelessly), and when I'm traveling...
    Oh, it has OSX10.2 installed.

    Hi, Josh. Welcome to Apple Discussions.
    How much RAM is installed?
    Does it have the original AirPort card installed? (You may want to install one, if not, to enable wireless access to the internet.)
    Did the original system CD's and the OS X 10.2 software CD's come with it? If not, try to get the person you got it from to give them to you. You will need them if you intend to upgrade the hard drive (and for maintenance, even if you don't upgrade the hard drive).
    Hard drive upgrade services:
    MCE Technologies
    DT & T Computer Services
    A hard drive upgrade is very complicated, and best left to a professional.
    Check out the procedure:
    http://www.pbfixit.com/Guide/50.12.0.html
    http://www.powerbooktech.com/knowledge,name-Hard-Drive,type-6.htm
    http://uk.geocities.com/ibookupgrade/
    http://sterpin.net/uk/ddibookdualuk.htm
    Hard Drives:
    Other World Computing
    Newegg
    Batteries:
    http://www.powergears.com/product.php?catID=1100&p=1
    http://www.computergiants.com/items/one_item.asp?part=71148&cat=99&subsubcat=115 2
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore?productLearnMore=M93 37G/A
    http://eshop.macsales.com/item/Newer%20Technology/BAPIB111V36/
    http://eshop.macsales.com/item/Newer%20Technology/BAPIB111V48/
    Adapters:
    I have found the following options for replacing a white iBook power adapter:
    http://www.macresq.com/store/detail.php?prodID=P009141
    MCE Technologies
    http://www.madsonline.com/index.html?
    adapter at Other World Computing
    Apple's is the only one with the glowing ring, though, and is found here:
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore?productLearnMore=M89 43LL/A
    Enough dual USB G3 iBooks suffered from a logic board problem that Apple began the iBook Logic Board Repair Extension Program in January of 2004. Check out the FAQ page and be aware of how this logic board problem manifests itself.
    It has been suggested that you can minimize the chance of a logic board failure of this sort by never picking it up by the front left corner alone. Pick it up with both hands or in the center under the trackpad.
    It's also a good idea not to close it any more often than you need to in order to minimize the chance of the backlight cable (and other cables and wires) becoming pinched in the hinge or broken. When you have some time, check out the Discussion thread in the Displays Forum entitled 90 degrees and black out!!!!
    Information on using the battery to maximize both life and lifespan can be found here.
    You can download the manual for the iBook (Dual USB) from this page:
    http://www.apple.com/support/manuals/ibook/
    Good luck, and happy iBooking!

  • Developerday  VM Ora-12505 Getting Started with Oracle SQL Developer 3.0

    Just downloaded the VM , Started the tutorial Getting Started with Oracle SQL Developer 3.0
    As mentioned in tutorial , I was trying to make a new connection and I am getting following error
    Ora - 12505 : TNS Listener doesn't currently know of SID
    I gave SID as orcl, and seems to be working OK, can I use orcl for this tutorial
    Edited by: OrcArgusDev on Apr 13, 2012 9:01 AM
    Edited by: OrcArgusDev on Apr 13, 2012 9:11 AM

    Thanks, I'll survive. Just my luck, the first item I try to anon. debug didn't work! :)
    thanks, hopefully this problem will be few and far between

Maybe you are looking for

  • Upgrade to 09?

    I have iWeb 08 which will not allow me to publish to my host site. I am told I need iWeb 09 for that. How do I download it?u

  • Generating an input signal

    I have completed the FPGA Module tutorial and I am attempting to generate an input signal, but i really don't understand exactly what is going on in the tutorial.  I have two FPGA I/O nodes in the FPGA VI that are labeled "ADC 0 PORT A_I" and a corre

  • E2 powering up issues

    Hello All, I am in need of some help. I have had my E2 for years and have no issues with it until today. I have plugged it in to charge it since it wouldn't turn on and it still isn't turning on. I have tried doing a soft reset while it was charging

  • Recurrent event is not available in icalendar 2013?

    I'm trie to add a recurrent event but i don't find the repeat option and get a recurrent event. i don't want to copy paste the event every week.

  • Safari Issue PLEASE HELP!!

    I have a ibook g3 that is running 10.2 jaguar...I have safari 1.0 because that is all i am able to download for some reason and it *****. Does anyone know how to get a better version or is this the best i can do Thanks