Hi ppl

hi ppl,
i have installed jre-1_5_0_04-windows-i586-p-iftw . but i am not able to compile any java program. when i try to run javaw it is generating an error " could not find the main class : program will exit ".
pls help me to figure out what went wrong.
do i need to install SDK.
pls i need a reply soon.
sweety

Of course you need the SDK if you want to compile.
Please read http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html

Similar Messages

  • TS3276 ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working fine

    ppl i fed up with my mac air while using my exchange email account, it takes ages to refresh and it doesn't send or receive instantly , no clue although that the same setting and server names has been set up on my iPhone and it is working totally fine

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

  • Can some one tell me how to get this imessage (i think thats what it is they are in blue) off my flippin phone because they are going to other ppl as well as ppl intended and i keep recieving msgs from randoms grrr please help

    i recently went from a iphone 3 to a 4 and when i send messages they are going to other ppl as well as the ppl they are intended for this did happen once with the iphone 3 but now its all the time i have been in settings but it's not high lighted so dont know how to get the **** thing off so i can just send normal msgs, please advise 

    i didnt have any on but i disabled it then enabled lol dunno how but i have done it i think thanks for your help there is tooooo many settings on the phone for me i was ok with the 3GS just flicking through settings again and my face time as dissapeared lol any ideas

  • Need Advice about PPL Usage

    LV 2013, LVRT 2013 (PXI), Win 7
    I'm an old hand at LabVIEW, but I'm new to using Project Libraries (.lvlib) and Packed Project Libraries (.lvlibp).
    I'm hoping someone with more experience can offer some insight and guidance.
    At first blush, it looks like PPLs can solve a problem of mine.
    My project is large: 500 channels from 20+ different domains: plugin boards, networked devices, etc.  Lots of data analysis and reporting.  There are 30+ cells with a copy of this, it has to be EXE and RTEXE files, not just LabVIEW DevSys.
    It's been working for 10+ years, we are now doing a rewrite, so that DAQ is happening all the time, rather than on demand.
    My client wants to have "addons", so that when a new Gizmotron 9000 comes along, we don't have to add to the main program, we write an "addon" to handle the Gizmotron.  This "addon" would have a UI, and be able to share VIs from the main host, and data, but not require any changes to the host code. Eventually, these should be capable of being written by someone other than me, an engineer (in some other field) with fewer LabVIEW skills than me.
    Using a VI for this would work, but is kind of fragile.  If this VI uses a VI in the host, then it's path-dependent.  Moving the VI to a different folder would at best, cause a SEARCH box to come up, and at worst, break things.  I'm not even sure if the SEARCH box would come up, in an EXE.  And if I want a given host VI to be available to these addons, I have to make sure that it's not stripped by the BUILD process.
    So, I looked at making a DLL. Yuck. Double Yuck.  I'm not about to make the client have to edit C header files, just making the "wizard" import a DLL that it just made is a nightmare. 
    So, i found PPLs.  It looks like they're the answer.
    I've already implemented a system where a given PPL has a "Description" VI, and a "Work" VI. If you choose a given PPL, it runs the "Decription" VI and obtains a text decription (that the maker writes) of what the package does.  If you choose this one, then it takes the "Work" VI, creates a new window with a subPanel to fit, and installs the "Work" VI in it. A string notifier sends messages to it.  The host provides Preferences save / restore functions.  The window can be hidden and shown. It can do anything as far as UI that it needs.  
    I can move the PPL from the ADDONS folder to the ADDONS\GoodStuff\2015\May folder.  My menu system will offer it, and if you choose it, it still works. It is self-contained, it just works.
    But being self-contained has a "small" downside.  I have a fair number of FGVs: Functional Global Variables.  I call them "managers" - the idea is that they keep info in Shift Registers, and a caller calls them with some function to perform using that info.
    For example, one might keep a TCP Connection ID in such a ShiftReg and have CONNECT, DISCONNECT, and various SEND and RECEIVE functions which use that ShiftReg.
    Without attention, that pattern doesn't survive the move to PPLs.  Because of the "self-contained" aspect, there are actually TWO instances of the manager, with TWO separate dataspaces. So, if the host calls it, and the PPL then calls it, they don't share the same info.
    Here's where my understanding of this gets dicey.  If I create a separate PPL just for this manager, then that's an answer.  If everybody calls the PPL version, then there will only be one instance, and all is well.
    But what's the best way to do that?
    I can put the LVLIB into the master project, and then add a Build Spec to make the LVLIBP, I found out I have to actually put the PPL itself into the project to get it to work.  But that means there are TWO copies of the VI in the project.  The only way I can get it to work is to specify to use the copy from the PPL, and NOT use the one that's in the host already.
    So, to avoid temptation, should I move all these manager things into one separate project?  Should I move them into individual separate projects?  Should I just remove the components from the main project after building the PPL? (no, I can't do that - that would make it impossible to update the PPL).  What's the best strategy, and why?
    Another thing I don't understand is the physical handling of the PPL.  Does it have to actually exist?  
    Apparently not - I did a test:
    --- Create a LVLIB for one of these managers.  It lives in the ADDONS folder.
    --- My HOST code (in an EXE) initializes it, and stores a value.
    --- One of the ADDONS from a PPL reads that value and displays it.
    --- It works.  The data is shared.
    --- I moved the PPL file to a different folder, inside the ADDONS folder.  It works.
    --- I moved the PPL file to my desktop.  IT STILL WORKS.
    --- I changed the PPLs file name .  IT STILL WORKS.
    --- I deleted the PPL file.  IT STILL WORKS.
    So, apparently the PPL was incorporated into the EXE.  But I didn't specifically include it - the only SOURCE code I specified was the host main VI.
    Is that what happened? Am I understanding it right?
    But if that's what happened, then how does a stand-alone PPL know that it's there?  Because my standalone PPL accessed it just fine, even though it's in an EXE.
    Do I have to deploy the PPL file alongside the EXE? or just ignore the thing.  I just don't quite understand how it works.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

    CoastalMaineBird wrote:
    But if the path is important, then this is not solving one of my problems, the portability of the addons.
    If your problem is "how do I find plugins not included in my EXE as a plugin architecture".  By relative path is the only simple method.  If the plugin architecture uses VIs, or classes, or PPL, you will always need to enumerate the plugins not included in the EXE.  The easiest way is to enumerate a folder of files and say each one is a plugin.
    Alternatively you could have something in the middle like a text file that says where to find the plugins, or a registry to read that says where they are as an absolute path.  But then you have another place where the fragility of the system could be seen.  In addition to the plugins not being where they should be, your text file could be broken, or missing.  At least with a PPL, or LLB, or Class you have a single file that is seen as the main which references the others.
    As much as I resist classes complicating things, this is a prime example of where they should be used.  I don't want to change your design if it is too late, but you should  at least take a look at the Hardware Abstraction Layer.
    http://www.ni.com/example/31307/en/
    https://decibel.ni.com/content/docs/DOC-15014
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Why are some of the new app free for some ppl and paid for some

    why are some of the new app free for some ppl and paid for some?

    People that purchase the iPhone 5s, and the 5c get Pages, Keynote, and Numbers for iOS for free.  Also, any purchases of the new iPad models.
    More info here: http://support.apple.com/kb/HT5913
    HTH

  • Itunes isnt recognising my iphone 4 after i restored my phone and updated it to ios7 on windows, but the computer recognises it...please help ppl..m done with all the recomendations given by apple

    itunes isnt recognising my iphone 4 after i restored my phone and updated it to ios7 on windows, but the computer recognises it...please help ppl..m done with all the recomendations given by apple

    if require the new itunes11.1.X
    if you already have that and it's windows then uninstall itunes
    use regEdit you can type that in run or the likes and search and delete all hits you get on itunes
    then reboot windows and install itunes again

  • Pdf form with fields ppl can type into

    I have a pdf form with fields that are not able to be typed in. How can I edit them so that ppl can type into the field?

    Hi courtneyp58664902,
    I would recommend you to follow the steps detailed on the page associated with this link (http://wwwimages.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-con vert-forms-into-fillable-pdf-c… ).
    I would recommend you to Save the pdf with reader rights enabled [ File -> 'Save as other' -> 'Reader extender PDF' ->  'Enable More tools ( includes form fill-in and save)' ].
    Please let me know if you face any challenges or need any further assistance.
    Regards,
    Rahul

  • I cant receive text from ppl that have iphone sine i got andriod

    i cant receive text from ppl in my contact that have iphone very frustated

    Follow this article: iOS: Deactivating iMessage - Support - Apple
    If that doesn't work, contact Apple Support who can revoke the iMessage/Facetime certificate from association to your phone number.
    Also:
    1) Go to www.icloud.com and remove the device from Find My iPhone.
    2) Go to appleid.apple.com and change the primary email address of your Apple ID to something different (per Apple ID: Changing your Apple ID).
    3) Also at appleid.apple.com, change the password to your Apple ID (per Apple ID: Changing your password).
    4) Have any iPhone user attempting to send you a text message do the following:
    4a) Verify that in Settings > Messages that if iMessage is turned on to ensure that ‘Send as SMS’ is also turned on.
    4b) Delete the existing message thread, if any.
    4c) Delete your contact and readd, using only the phone number (no email).
    4d) Attempt to send a new text message to you.

  • Does anyone know if apple is working on a solution to fix the wifi drama ( greyed/dimmed out)hundred of ppl have after recent updates?

    After recent updates hundred of ppl can not connect to wifi anymore( incl myself)
    Really annoying and all kinds of ideas how to fix it did not work out for me
    I am out of warranty for 1mth and the apple shop did not even make a bit of afford to help
    I am wondering if apple is working on a solution to fix this problem at all? Maybe with the next update?

    I am aware of that !I just wonder if anyone has any news about this dramas-I actually hope someone says that apple is try to work on it!
    No way they can leave all this ppl out there with this problem without doing anything about it

  • Is apple going to come out with a iso that lets ppl who have the iphone 3g to put up backgrounds its bs that i cant do it when ever i see something about the iphones even befor the 4g that all ways had backgrounds so what the **** is with that

    is apple going to come out with a iso that lets ppl who have the iphone 3g to put up backgrounds its bs that i cant do it when ever i see something about the iphones even befor the 4g that all ways had backgrounds so what the **** is with that

    iPhone 3G has received its last iOS update. If wallpapers behind the homescreen icons is such an important feature for you, you'll need a newer model iPhone.

  • I have sd card in my phone with ringtones saved on it. its saying that my sd card has been removed which hasnt and i lost all the tones i had set for ppl. what do i do to get them back??

    phone saying my sd card was removed when it wasnt,,lost assigned ringtones to ppl....how do i fix it

    Try re-seating the sd card....

  • How to get back "Bookmark All Tabs" in menu ? Please if you don't want it (still quite some ppl want because it's usefull), at least allow to get it back trough Preferences (or at least about:config)

    How to get back "Bookmark All Tabs" in menu ? Please if you don't want it (still quite some ppl want because it's usefull), at least allow to get it back trough Preferences (or at least about:config)

    Some menu entries in the main menu bar are hidden if you use the mouse and only appear if you use the keyboard to open the menu (Bug 626825).
    You can see the difference if you use Alt+F to open the File menu or other menus like the Edit menu (Alt+E) and Bookmarks menu (Alt+B) and compare that to what you see if you use the mouse to open the menu after you have made the menu bar visible by tapping Alt or by pressing F10.
    * "Bookmark All Tabs" (Shift+Ctrl+D) no longer shows in the Bookmarks menu unless you open the Bookmarks menu via the keyboard (Alt + B).
    * "Bookmark All Tabs" can be accessed via the right-click context menu of a tab on the tab bar.
    See also:
    * [[/questions/799856#answer-155765]]
    * Bookmark All: https://addons.mozilla.org/firefox/addon/bookmark-all/

  • Fillable Forms: How to enable ppl to fill out/save/and email forms?

    Hello.  I'm trying to determine if it is possible to set a fillable form so ppl can save a form so they can email the file.  Is that possible? If so, please share how to make the settings in the form.

    If you mean that you want to allow users with Adobe Reader to save a filled-in form, then you can Reader-enable the form using Acrobat. How you do that depends on which version you have:
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features

  • How do i find out how many ppl  download my podcast

    I wanna know if there is a way to find out how many ppl download my podcast (not only from itunes, but from everywhere) thanks for helping, cheers!
    download my podcast, its on itunes, its called:
    Idiots on fire
    podcast xml url:
    http://www.switchpod.com/users/frahs/feed.xml
    thank you!

    right click (control click on a one button mouse) on the podcast and you will see "Copy iTunes Music Store URL"
    you can edit the URL so it is short, e.g.
    http://itunes.com/podcast?id=78511357&s=143441

  • Hey ppl,my macbook is not booting and by that i mean u can hear the audio wave when its starting up,the screen goes white and then after a while there's a folder with a question mark in the middle of the screen...anyone,any ideea?!?

    Hey ppl,my macbook is not booting and by that i mean u can hear the audio wave when its starting up,the screen goes white and then after a while there's a folder with a question mark in the middle of the screen...anyone,any ideea?!?Regards.

    That folder with the question mark icon means that the MacBook can't find the boot directory. That can either mean it can't find the hard drive or the hard drive data is somehow corrupted.
    Put your install DVD into the drive and reboot. As soon as you hear the boot chime, hold down the "c" key on your keyboard (or the Option key until the Install Disk shows up). That will force your MacBook to boot from the optical drive.
    Once it has finished booting and you are at the Install screen launch Disk Utility from the Utilities menu. Is your Hard Drive in the list on the left?
    If it is then select the First Aid Tab run Repair Disk and if that repairs any problems run it again until the green OK appears and then run Repair Permissions.
    If your hard drive isn’t recognized in Disk Utility then your hard drive is probably dead.

Maybe you are looking for

  • Apache gets installed together with Oracle 11G on my Win2003 x64 server?Rem

    Hi all, I just installed Oracle 11G on my Windows 2003 x64 server. It seems that it has also installed Apache on it and took over my port 80 on which i would like to run IIS. Can anyone please advice on how i can either remove apache or if it is need

  • About Collection and ForAll

    Dear Guru 1) I have some documents about collection of 10g and example of Forall function. 2) Question: I have procedure called Test_ps How to see the source code of the procedure A : User_source But i want to see how my parameter are there in proced

  • Disabling an item dynamically

    Hi I am using APEX on oracle 10g XE. and am absolutely new to this tool. I need to disable a set of input fields, based on the drop down value.( This drop down tem is right now set with 'Select with Submit' option. ) Depending on the value chosen by

  • IBatis framework

    In iBatis How to get the SQL queries defined in xml file to our java code. I want to get the sql queries by giving the corresponding id...??

  • "Difficulty downloading episodes from your feed" error

    There seem to be a lot fo threads like this, but none of the problems are quite the same. I've got a self-hosted wordpress site, and a soundcloud account. I applied for the podcasting beta from soundcloud, and the RSS they provide is here. If I add t