Where can I find Applet examples?

Hello all!
Links to sites that have examlpe applets and soursecode would be appreciated!
Thanks!

www.codebrain.com/java/
javaboutique.internet.com/javasource/
www.ezebox.com/
Cheers
Rajesh

Similar Messages

  • Where can I find an example of a vi which reads a xml file using the Labview schema (LVXMLSchema.xsd)?

    Where can I find an example of a vi which reads a xml file using the Labview schema (LVXMLSchema.xsd)?
    �Unflatten From XML� is of little use in parsing because it requires the data type. So it seems that the user has to parse each data value, and then �Unflatten From XML� can help a little.
    I would like to see NI provide a VI for parsing it�s own schema.

    LabVIEW's XML functions are another way of saving data from controls and indicators that is in a more standardized format. If you look at the Unflatten From XML shipping example, it shows taking the data that you would normally send to a Digital Wveform Graph and converting it to XML instead. This data is then unflattend from XML and wired to the graph. Since you know what you wrote to the file, this is an easy thing to do. If what you are looking for is a way to look at any data in any LabVIEW XML file, then you are right, there is not a VI for that. However, I do not believe that that was the intention of the XML functions in the first place.
    By wiriting data in XML, this allows other applications outside of LabVIEW to parse and recognize the dat
    a. In LabVIEW, you would already know the types and can place a generic item of that type. The issue of knowing the type is that you need to know the type of the wire that comes out of the Unflatten function so that the VI will compile correctly. You could always choose a variant value to unflatten and then do some parsing to take the variant a part. Maybe this will help you out.
    See this example for using the Microsoft parser for XML. (http://venus.ni.com/stage/we/niepd_web_display.DISPLAY_EPD4?p_guid=B123AE0CB9FE111EE034080020E74861&p_node=DZ52050&p_submitted=N&p_rank=&p_answer=)
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • Where can I find JBI examples

    I installed JBI sdk. There is a examples directory. But the examples it offered are not a java-based program. I couldn't find any java files under it and I didn't know how to use the jbi api. All of them are made by XML file. Where can I find a java-based JBI example?
    Thanks.

    Not sure what you mean by installing the JDI sdk, but if you didn't download and install the OpenESB/Netbeans installer, I would recommend installing that instead. You can get it here: https://open-esb.dev.java.net/Downloads_OpenESB_Addons_NB6.html
    There are some BPEL examples included in netbeans. Create a new project in netbeans and Go to Samples > SOA. I believe they are under the BPEL folder and there are 5 blueprints.
    For other components, you can reference videos. Most components available here have videos showing you how to use netbeans and openesb to create Composite Apps.
    http://wiki.open-esb.java.net/Wiki.jsp?page=Jbicomps
    Specifically I learned netbeans/jbi by following the SMTP tutorials included in this blog: http://blogs.sun.com/vishblogs/.
    Hope that helps.

  • Where can I find an example of teh overload functions for the "Createvariable"

    I am trying to find a coding example of the overloads for the "CreateVariable" function in Measurement Studio.  The goal is to define a variable type at creation time.
    Thanks

    Hi JohnnieM,
    You can see the three overloads for the CreateVariable method in the help here: http://zone.ni.com/reference/en-XX/help/372636F-01/mstudiowebhelp/html/3c1ef3de/. I couldn't find an example snippet of code but if you wanted to explicity define the type you need to use CreateVariable(VariableCreationOptions) like this:
    string processName = "myProcess";
    string variableName = "myVariable";
    ServerProcessInfo procInfo = ServerProcess.Create(processName, true);
    VariableCreationOptions varOptions = new VariableCreationOptions(processName, variableName);
    varOptions.VariableType = typeof(Double); //this is where you specify the type
    ServerVariableInfo varInfo = procInfo.CreateVariable(varOptions);
    Hope this helps!
    Kevin

  • Where can I find an example project plan for migrating previous Solaris Serviers to 8.2, and to include migration to LDAP

    I am migrating 800 Unix servers from a variety of OS versions to Solaris 8.2, using the time to sort out my NIS nightmare in prep. for moving to LDAP
    Are there any example project plans that I can use as a starter?

    I am migrating 800 Unix servers from a variety of OS versions to Solaris 8.2, using the time to sort out my NIS nightmare in prep. for moving to LDAP
    Are there any example project plans that I can use as a starter?

  • How can I use the ni-6024-e with the real time of matlab/simulink. Where can I find any example?

    I am doing the final project and I need to control the ni-6024-e with the RTW (real time) of matlab/simulink.
    Does anyone know or have any example?.
    Thanks

    Rafelmor,
    Have you contacted The MathWorks yet? They probably have the best information.
    However, I did a quick search and found some information on The MathWorks' site. For Data Acquisition Toolbox examples: http://www.mathworks.com/access/helpdesk/help/toolbox/daq/daq_example_index.shtml.
    For RTW information: http://www.mathworks.com/support/product/RT/.
    Good luck with your application.

  • Where can i find swfLoader examples?

    i need to load a swf flash 8 movie, would emedd tag be
    better?
    anyway i need the movie to dissappear on my canvas [flex]
    after its played through its timeline?

    This is how I incorporated mine.
    First I created a SWFLoader component in a folder I called
    'view' with the following code...
    <?xml version="1.0" encoding="utf-8"?>
    <!-- FlashIntroSWFLoader.mxml Component(Version
    1.0.0.0[Build 2.13.07]) -->
    <!-- No known bugs -->
    <mx:SWFLoader
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    maintainAspectRatio="true"
    width="100%"
    height="209"
    scaleContent="true">
    </mx:SWFLoader>
    Note: You'll need to set the properties according to your
    needs.
    Then I placed an instance of the component in my Main.mxml
    code with the following code...
    <view:FlashIntroSWFLoader
    id="flashIntroSWFLoader"
    source="@Embed(source='assets/swf/flash_intro.swf')"/>
    Note: You can not set the ID property directly inside the
    component. Instead you set the ID property inside the instance of
    the component. I hope I am saying this right! :) Also be sure to
    set the source URL to point to your .swf file.
    The LAST thing to do is to add the following to the opening
    Application tag of your Main.mxml, or the opening tag of another
    component if the instance is being placed in that component.
    xmlns:view="view.*"
    Note: You'll need to change the namespace above according to
    your folder structure.
    I do not have any issues whatsoever with loading my flash
    intro, which I created in Flash 8, into Flex 2.
    Please let me know if this helps!
    John

  • Where can I find an example to make a hardcopy (on a TDS3014) by GPIB in VB6 (using VBIB and NIGlobal) ?

    I would to have a BMP file on my PC transfered by GPIB link.
    Thanks in advance.

    There is an IVI driver for this device at http://zone.ni.com/idnet97.nsf/browse/
    There is a knowledge base that describes how to use Instrument Drivers at http://www.ni.com/cgi-bin/search/search.cgi?scope=knowledgebase&query=28FFK4QO
    If this instrument driver does not have the desired functionality, please see http://zone.ni.com/idnet/other.htm for other options.
    Randy Solomonson
    Application Engineer
    National Instruments

  • Where can I find "Crystal Type" code examples?

    Morning all,
    I have tried searching the forums but cant find much (I dont find the search thread function very helpful but that might just be me and is another story for another time).
    I am trying to create my own formulars and functions on my report in CR4E, but I am have problems with the code.
    Where can I find a tutorial on the basics like converting a date to a string or delcaring a date or changing a string to a date.
    In Java one would do something like:
    String str_MyString;
    str_MyString = "This is a string";
    but in a crystal report you do something like (and I might incorrect in even this simple example):
    StringVar str_MyString;
    str_MyString = "This is a string";
    That slight difference of String and StringVar are the things I need to find out.
    In VB I can refer to a forms fields with str_MString = me.txt_Field1 but in crystal I dont know how to refer to a current field of the report I am working with.
    For example, I have a text box on my report which I have called "txt_MyNumber", I then want a formular or function to use the value that is found in that text box but cant work out to refer to it. I can refer to other formulars but not report fields. Is this even possible?
    I know the report field question might be viewed as a whole new question thus thread but I feel they close enough to remain in the same thread.
    So any help pointing me in the right direction.
    Or am I just an idiot and should rather give up trying to design crystal reports. (Ive been thrown in the very deep end at work so am trying to work everything out all at once with no beginner knowledge)
    Thanks all for help and suggestions.
    Cheers
    Darren

    Thanks for the quick reply, Alphonse 
    Creating a UFL is what brought me to realise I am lacking in knowledge in the first place.
    I created a UFL that converts numbers to words. I am going to be using this later for translating
    transaction amounts into words in different languages.
    As a test I created a simple resource bundle that held 1=one, 2=two and so on until 10.
    My function is
    get_numbers_to_words(String key, String resBundleName, String str_Locale)
    So to test it I created a formula on in my report and used the following bit of code to test it.
    str_Number_to_Words  //formula name
    get_number_in_words("1", "NumbertoWords", ContentLocale)
    This works and gives me a return of "one".
    So I then wanted to have a field on the report pass in the key. The field is called txt_Number, so i tried:
    str_Number_to_Words  //formula name
    get_number_in_words({txt_Number}, "NumbertoWords", ContentLocale)
    but clearly that did not work. I tried many other variables or ways of putting the value I hold in the
    txt_Number field.
    I have no way of using the value held by the text box txt_Number.
    I then thought if I cant get a field to drive the key I will use something as simple as taking the current time
    and use the seconds unit digit as the variable to dynamically change and gives more a better testing
    ground so when I expand to the double figures I can use the seconds in general.
    This is what made me put up this post.
    With your first link you sent me, I am ashamed to say I dont really know how best to take that knowledge
    and put it in practice. This is where my lack of knowledge shines through. I understand what most
    methods and classes do from their descriptions and summaries and all that. But I am trying I promise.
    All I need is for one example to be shown and explained how the concept gets taken from those Package
    descriptions and into a working example I will be able to then work out how to use it for all the rest.
    Take com.crystaldecisions.reports.common.value.DateValue for example.
    If this last request is a silly request and a real waste of everyones time I totally understand and will start
    looking other ways of learning this all. I will not hold it against anyone if they tell me to go back to "school"
    and leave programming to real men/women.
    Thanks Alphonse and also the rest fo you.
    Cheers
    New Edited part:
    OK I am sort of getting somewhere. I have now got a function that can return the current time as a string
    but the part to return only the seconds is not working.
    Minutes_To_Number    //Function Name
    Function (TimeVar curr_Time)
    StringVar str_Minute;
    str_Minute = CStr(Second(curr_Time));  // This does not seem to be returning the current seconds. Why?
    //str_Minute = CStr(curr_Time);  //If this is not commented out I get the current time, so I know its working
    str_Minute;
    Var_Number      //Formular name
    Minutes_To_Number(PrintTime)
    str_Number_to_Words   // Formular that I want to get working
    // I want to pass the seconds into the Key field of my UFL function.
    get_number_in_words({@Var_Number}, "NumbertoWords", ContentLocale)
    Any ideas why the
    Second(curr_Time)
    does not return the seconds value?
    Edited by: Darren Jackson on Sep 19, 2008 3:36 PM
    Ok I have managed to work out why my code was failing.
    It all boiled down to my use of "=" and not ":=". This being the type of Syntax differences I need to learn. Well guess I will just have to go through all the Example reports (found them after asking).
    So Im going to close this thread as worked out the answers.
    Cheers
    Edited by: Darren Jackson on Sep 22, 2008 2:43 PM

  • Forms API help/examples - where can I find any?

    Where can I find Forms 6i C API help or examples? It seems to be very difficult to find examples of how to use many of the functions or to figure out why they may not be working. I am experiencing many problems and would like to know where I can go to find answers.
    I think it's an amazing move on Oracle's part to have exposed this type of API, but it seems rather silly not to have any public support for it.
    Thanks,
    Matt.

    Thanks,
    I have seen both that application and document before. The application doesn't do much for you and the documentation is sparse.. I ended up digging through all of the C header files in the api directory and figured everything out from there. It took quite some time to do, but seeing as there are no examples other than those in the pdf that you mentioned, there was no other way.
    Matt.

  • Where can i find uix "template inheritance" examples?

    I have learnt Jdev10g documentions about "templates inheritance" ---- "14. Includes and Templating in ADF UIX". But i wonder how to use this powerful features of Jdev10g.
    Anybody know the details, or anybody know where can i find "template inheritance" examples? Tell me please.
    Thanks in advance
    Shucheng Ma

    Chapter 14. Includes and Templating in ADF UIX in the developers guide takes the reader through the process of creating a template step-by-step.
    Once completed, the template can be considered as just another UIX component that happens to have been defined declaratively.
    With template inheritance, where one template extends another template, but the syntax is identical so the steps described in the devguide are identical.
    If you have specific questions, please post them to the forum. However, it is strongly recommended that you go back to the devguide and actually work through the example to gain a better understanding of this feature.
    Kind Regards.

  • Where can I find XML component examples ?

    where can I find XML components examples ?

    Here are a couple video tutorials using XML with Flash:
    http://www.gotoandlearn.com/play?id=64
    http://www.gotoandlearn.com/play?id=65
    Don't know if they're what you're looking for but worth a
    look.

  • Where can i find the BI Java Connector Files (for example: bi_sdk_jdbc.rar)

    Hi,
    where can i find the BI Java Connector Files:
    bi_sdk_jdbc.rar
    bi_sdk_xmla.rar
    bi_sdk_sapq.rar
    bi_sdk_odbo.rar
    Can anyone help me?

    hi Christian,
    these files should be included in bi java sdk
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/78b3db58-0501-0010-b895-f75cd8fdf674 [original link is broken]
    hope this helps.

  • Where can i find Discoverer!!!

    Hi All,
    Looking at the posts in forum i got to know that Discoverer is a powerful tool for Reporting. Where can i actually find the installation file of this tool (or) Is this tool bundled in some application. If so, which application, Where can in find it.

    To download Discoverer go to this web page:
    http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
    Look for the first column of the table for a label that says "Business Intelligence". Select your platform and download each CD. On Windows there are three CDs: two for the server and one for the client tools.
    CD1
    CD2
    Tools CD
    Unzip CD1 and CD2 and run the installed. This will install the BI Discoverer server which will allow you to run Discoverer Plus (a Power User tool used to create and save queries) and Discoverer Viewer (and end user tool used to view queries created by Discoverer Plus users). Disco Plus is a Java Applet where as Disco Viewer is a pure HTML client.
    At the end of the installation process the installer will provide the URLs to launch each of these products. For example on my laptop I have the following URLs:
    http://klaker-uk.uk.oracle.com:7778/discoverer/plus
    http://klaker-uk.uk.oracle.com:7778/discoverer/viewer
    To manage the Discoverer Server, Enterprise Manager is also provided. During the install you will be asked to provide a password for the ias_admin account that is used to connect to this server. You can use EM to start, stop and manage Discoverer. On my laptop the URL for EM is.
    http://klaker-uk.uk.oracle.com:18100/emd/console/
    The Client tools CD provides some additional Discoverer clients that can only be run on a Windows operating system. Discoverer Administrator is used to manage the Discoverer end-user-layer (EUL). This layer controls end user access to database schema(s). Using Discoverer Administrator you can select tables/views/columns etc to display to your users when they connect to the EUL. Each Discoverer client (Plus and Viewer connect to an EUL).
    In addition there is also a Discoverer Desktop client that replicates the functionality of the Plus applet based client. Also included on the tools CD are the BI SDK components (BI Beans) and OLAP Spreadsheet Addin.
    In terms of the differences between BI Publisher and Discoverer - BI Publisher is used to create pixel-perfect reports and users are not expected to interact with these types of reports (i.e drill, pivot, apply additional filters). It is designed as a data presentation tool. Discoverer is an analysis tool, its aim is to allow user to query data, apply filters, perform pivot operations and link reports together to provide master-detail type drilling operations. Discoverer provides high quality printing but does not provide the pixel perfect layout control of BI Publisher.
    Hope this helps
    Keith

  • Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache of sent text?

    Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache sent the text?
    For example, I posted an article on a news site, but found that only a small part of my article was posted.

    I'm not sure whether Firefox saved that information. There is a chance that it is in the session history file, especially if you haven't closed that tab yet. To check that:
    Open your currently active Firefox settings folder (AKA your Firefox profile folder) using
    Help > Troubleshooting Information > "Show Folder" button
    Find all files starting with the name sessionstore and copy them to a safe working location (e.g., your documents folder). In order to read a .js file, it is useful to rename it to a .txt file. Or you could drag it to Wordpad or your favorite word processing software.
    The script will look somewhat like gibberish, but if you search for a word in your article that doesn't normally appear in web pages, you may be able to find your data.
    Any luck?
    For the future, you might want to consider this add-on, although I don't know how long it saves data after you submit a form: [https://addons.mozilla.org/en-US/firefox/addon/lazarus-form-recovery/].

Maybe you are looking for

  • How do i get my screen size of web sites back to normal size.

    how do i get my screen size of web sites back to normal size.

  • LSMW transaction data upload

    Dear All,       While we are entering data in F-02, we have to Give GL accounts and posting keys 2 times, in lsmw after recording , while field mapping system is giving only one field name for gl account , and only one field name for posting key, whe

  • Linux satellite 10.3.4: ZMD.RefreshHandlerException warning

    Running ZCM 10.3.4. Both our satellite servers suddenly started (during my holidays, where no changes were made) getting a warning. It occours every hour at Refresh. Both satellites are running Linux 64 bit. One is SLES 10SP2 the other is SLES 11. Th

  • Creative Xtremegamer going bad?

    C? so i got the<font face="arial,helvetica,sans-serif" size=""> X-Fi XtremeGamer Fatalty Pro for free some time ago from a friend, it worked well and all but recently i started to notice first the Xfi CMSS 3D function stopped working all together whi

  • CS5 not recognising CS3 colour sampler points

    Neither 32-bit nor 64-bit CS5 (run in Win 7-64bit Ultimate) are recognising (displaying) colour sampler points I created and saved in layered images processed with CS3. These colour sampler points are all displayed quite happily in 32-bit CS4, but th