I need help some with simple ejb3 app - urgent

I�m trying to write a small app using ejb3 and I have a big problem.
1. I created a Session bean in ejb module
package beans;
import javax.ejb.*;
@Stateless()
public class testBean implements beans.testLocal {
    public String test(String name)
        return "hello "+name;
package beans;
public interface testLocal {
     String test(String name);  
}2. In web module I created a servlet and as in the 'Ejb3 Persistence in netbeans tutorial" and then I called my session bean (http://www.netbeans.org/kb/55/ejb3-preview.html#Exercise_2)
protected void processRequest(...)
  ...out.println("<body>");
     out.println(aTestBean.test("a Test"));   //bean method call
     out.println("</body>");
     out.println("</html>");        
     out.close();
    @EJB
    beans.testBean aTestBean;   //reference to the session beanI compiled and deployed it.
And after I invoked the servlet I got that message :
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: Servlet.init() for servlet test threw exception
     com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
     com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
     org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
     com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
     com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
     com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
     com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
root cause
java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
     com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
     com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
     org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
     com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
     com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
     org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
     com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
     com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
     com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
     com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
I also tried to do it like in the flash ejb3 presentation but I got the same result (http://j2ee.netbeans.org/NetBeans_EJB3.html)
    beans.testBean aTestBean;   //reference to the session bean
   @javax.ejb.EJB
    private void setTestBean(beans.testBean aTestBean)
        this.aTestBean = aTestBean;
    }How can I call methods from session beans.
I'd like to do something like this.
1.Create an EntityBean for my database.
2 Create a session bean to manage those EntityBeans � like in the tutorial
3.Create a web module and a servlet with method calls from that session bean
4. Create a MIDP 2.0 app using "Mobile client to web app' wizard from the mobility pack, to generate stubs for servlet methods.
All I need to create one simple method
public String getDataFromDB(int ID)
//and here the call to the session bean
return sesionbeanReference.getData(ID);
help me

Hi
I am Facing th same Problem ,But the solution you have give
that use Local Interface intead of Bean
In my case I am using Remote Interface and not the local its giving me the same problems as the Query Posted
javax.servlet.ServletException: Servlet.init() for servlet NewServlet threw exception
     com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
     com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
     org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
     com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
     com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
     com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
     com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
root cause
java.lang.RuntimeException: WEB5002: Exception in handleBeforeEvent.
     com.sun.web.server.J2EEInstanceListener.handleBeforeEvent(J2EEInstanceListener.java:205)
     com.sun.web.server.J2EEInstanceListener.instanceEvent(J2EEInstanceListener.java:90)
     org.apache.catalina.util.InstanceSupport.fireInstanceEvent(InstanceSupport.java:250)
     com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
     com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
     org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:223)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:664)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:571)
     com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:846)
     com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:345)
     com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:237)
     com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:240)
     com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
note The full stack trace of the root cause is available in the Sun Java System Application Server Platform Edition 9.0 Beta logs.
My EJB Refernce to rmote interface looks like this
@EJB ProcessAdvertisementRemote oProcessAdvertisementRemote;
I am caaling a method on that inferface ,so its giving these exceptions
Can u plz help me out
Geetanjalee

Similar Messages

  • Need help on with simple email program

    i have been set a task to create a simple email program that has the variables of the sender the recipient the subject the content and a date object representing when the email was sent (this is just to be set to the current system date)
    It also needs to include a constructor with four String arguments, i.e the sender, receiver, subject and content. The constructor has to initialise the date of the email then transfer the values of the input parameters to the relevant attributes. If any values of the strings aren'nt given, the string �Unknown� should be set as the value.
    I was given a java file to test the one i am to create, but some of the values are not given, if anyone could be of anyhelp or just point me in the right direction then i would be very greatfull, ive posted the code for the test file i have been given below, thanks.
    public class SimpleEmailTest {
         public static void main( String[] args ) {
              SimpleEmail email;     // email object to test.
              String whoFrom;          // sender
              String whoTo;          // recipient
              String subject;          // subject matter
              String content;          // text content of email
              static final String notKnown = "Unknown";
              email = new SimpleEmail
    (notKnown, notKnown, notKnown, notKnown);
              System.out.println( "SimpleEmail: " +
    "\n    From: " + email.getSender() +
    "\n      To: " + email.getRecipient() +
    "\n Subject: " + email.getSubject() +
    "\n    Date: " + 
    email.getDate().toString() +
    "\n Message: \n" + email.getContent() + "\n";
              email.setSender( "Jimmy Testsender");
              email.setRecipient( "Sheena Receiver");
              email.setSubject( "How are you today?");
              email.setContent( "I just wrote an email class!");
              System.out.println( "SimpleEmail: " +
    "\n    From: " + email.getSender() +
    "\n      To: " + email.getRecipient() +
    "\n Subject: " + email.getSubject() +
    "\n    Date: " + 
    email.getDate().toString() +
    "\n Message: \n" + email.getContent() + "\n";
         }

    Start by writing a class named SimpleEmail, implement a constructor with four arguments in it, and the methods that the test code calls, such as the get...() and set...() methods. The class probably needs four member variables too.
    public class SimpleEmail {
        // ... add member variables here
        // constructor
        public SimpleEmail(String whoFrom, String whoTo, String subject, String content) {
            // ... add code to the constructor here
        // ... add get...() and set...() methods here
    }

  • I have tried everything I know to retrieve the iPhoto Library app.  I detest this new Photo app, which obviously wasn't designed with photographers in mind.  I desperately need help in retrieving the old app and have not been able to do it so far.

    I have tried everything I know to retrieve the iPhoto Library app.  I detest this new Photo app, which obviously wasn't designed with photographers in mind.  I desperately need help in retrieving the old app and have not been able to do it so far.  I have gone to my app folder and tried to update my iPhoto Library.  I have gone to my trash and brought it over to my desktop and still cannot use it.  Please help!

    Try this fix discovered by User photosb189:
    From Finder, hold down the option key on your keyboard and click on the Go menu at the top of the screen
    Select Library from the drop down menu
    Then navigate to Application Support > iLifeAssetManagement > assets
    Right click on the 'sub' folder and choose Compress
    Drag the resulting zip file to your Desktop (as a backup)
    Go to your System Preferences and choose iCloud
    Turn OFF the iCloud Photos option
    Go back to Library > Application Support and DELETE the iLifeAssetManagement folder
    Now, in System Preferences, turn the iCloud Photos option ON
    iPhoto should now be able to launch. Give it enough time to re-download your Photo Stream content. if you are missing any of your My Photo Stream photos (more than 30 days old), unzip the sub folder on your desktop and drag that into iPhoto.

  • Pls i need help for this simple problem. i appreciate if somebody would share thier ideas..

    pls i need help for this simple problem of my palm os zire 72. pls share your ideas with me.... i tried to connect my palm os zire72 in my  desktop computer using my usb cable but i can't see it in my computer.. my palm has no problem and it works well. the only problem is that, my  desktop computer can't find my palm when i tried to connect it using usb cable. is thier any certain driver or installer needed for it so that i can view my files in my palm using the computer. where i can download its driver? is there somebody can help me for this problem? just email me pls at [email protected] i really accept any suggestions for this problem. thanks for your help...

    If you are using Windows Vista go to All Programs/Palm and click on the folder and select Hot Sync Manager and then try to sync with the USB cable. If you are using the Windows XP go to Start/Programs/Palm/Hot Sync Manager and then try to sync. If you don’t have the palm folder at all on your PC you have to install it. Here is the link http://kb.palm.com/wps/portal/kb/common/article/33219_en.html that version 4.2.1 will be working for your device Zire 72.

  • Please Help Me With My Yahoo App Problem

    Please Help Me With My Yahoo App Problem, Everytime I Want To Log In To Yahoo With Yahoo Application This Messege Appears, Please Help Me With this

    Do you have a blackberry data plan as opposed to a standard carrier data plan? 

  • Need help in configuring the Oracle app server with OC DB Server

    Hello people
    I attempted to insta;; Oracle Clinical 4.5 and I have a problem that you mayhave resolved a long time back and I need some help. This is what I have done on the installation.
    I need your help in centralizing my tnsnames.ora and sqlnet.ora files. I am an Oracle Clinical guy and not an Oracle Expert, hence the request.
    Part_1
    1. Installed Oracle 9i 9.2 database on Win2K server - W2kOCSVR
    2. Installed Oracle Clinical 4.5 and created DB on W2KOCSVR.
    3. Started up database and all is fine - tnsnames and sqlnet.ora
    4. Each of these is on a separate partition including the OS.
    Part-II
    1. Installed Oracle Appl Server 9iAs 1.0.2.2.2a on another machine OCMIDTIER. This installed Oracle iSuites home and stuff.
    2. Then I installed Oracle 9i developer suite - Oracle forms and reports.
    3. Installed Jinitiator 1.1.8.24 on the middle tier machine.
    4. Basically this is the middle tier that is a Webserver that will be linked to the Database Server in Part-I
    and lastly, I will have web clients with Jinitiator and a web browser.
    Requirement:
    I need to centralize the TNSNAMES.ora file and the SQLNET.ora file on all the machines. How do I do this?.
    I have the TNSNAMES.ora and the SQLNET.ora on DB server and it is working fine. However, I have noticed many tsnnames.ora files on the middle tier - OCMIDTIER. (I've left out the example files)
    a) E:\ORACLE\806\net80\admin\tnsnames.ora
    b) E:\ORACLE\806\net80\tnsapi\tnsnames.ora
    c) E:\ORACLE\iSuites\hs\admin\tnsnames.ora
    d) E:\ORACLE\iSuites\network\admin\tnsnames.ora
    All I need to know is which if these files do I need to integrate with the Tnsnames.ora file on the DB server - W2kOCSVR and how do I go about doing this?.
    Your help is appreciated. If I were to see a copy of your tnsnames.ora on the webserver (middle tier) and the sqlnet.ora, I will be able to get an idea of how this is done. Right now, I am using tnsnames.ora but once I learn how this ties up, I can move to names sever.
    Thanks for your help.
    Cecil

    Hi Cecil,
    I got into the same issue. I copied the content from the good tnsnames.ora to tnsnames.ora on webserver and it worked fine. I copied the details of the connect string that was working fine on dbserver. i was working on W2k server. Hope this helps
    Gonnagar

  • Need help for switching to Oracle Apps

    Hi All,
    I am a System Analyst working in Singapore for the last 6 yrs.Currently for the last 3+ years i am in the project implementation & support team for ERP Team.We are using JD Edwards.Currently i have the role of Functional Consultant.
    I want to shift to Oracle Apps (11i).The reason being there is not much scope in JD Edwards.Intially i was working in Developer 2000 as a Forms/Reports Developer.
    I couple of questions to ask :
    1) Do i need to go though a Oracle Apps Training as i already have experience in Jd Edwards ??
    2) Can somebody recommend some good Training institutes in Singapore with Placement Assistance ??
    3) Do anybody knows any company in Singapore who can give training in Oracle Apps and take in professionals who want to make a switch but have experience in another ERP package ??
    Thanks
    Regards

    Hi,
    As you said you were initially working on Developer2000 so it would be lot easier since there would enough background on PL/SQL,forms and reports.Best thing for you I would recomend is pick 2 or 3 modules of your area in JD Edwards like Financials(General Ledger,Recievables,Purchasing,Payables,Fixed Assests...) or HRMS Suite(HRMS,Payroll,Advanced Benefits) which I believe the core business logic for any ERP would be the same. So pick your strong modules in JD Edwards and go through the Oracle Apps Doc. which is available online.In the documentation you will find Application Developer Guide which will be helpful if you are looking to be an Technical Person or you can go through the Module wise documentation if interested in Functional position. Either case better to have overall idea about interested module I mean how the logic and setup will be.
    Initially it will be rough however if you don't give up Apps is lot easier.
    Regards
    Uday Ravipati

  • Need Help regarding a simple mobile application

    Hello friends,
    I am bit newbee to J2ME technology.
    I have basic understanding about MIDLETS.
    Friends,i am designing an instant messenger using midlet.
    Could anyone send some idea's of how to design a CHAT application.IF some one can give a small code of implementing it could be really helpful....
    Looking for your help!!!
    Thanks In Advance !!!
    Regards,
    RAHUL

    You have been no help but I will post again hoping someone else can reply....
    Here is a more exact detailing of what I am trying to do:
    I am hosting a text file here:
    http://www.geocities.com/biocx/entertainer.txt
    And when I open up MMAPI Demo and go to simple player, and then URL and paste this in, it plays the simple rtttl/midi file. It is doing this through RingToneConverter.
    Now all I want to do, and this is the part I need help with, is while it is playing, I want the notes to be displayed on screen. Can anyone help me with this! I have tried and every time is gives me a problem saying that the RingToneConverter Class isn't abstract and I cannot print to screen...
    If someone could help me with this, it would be greatly appreciated.
    Thank you,
    Mike

  • Need help making a simple script for my webcam

    Hey everyone, fairly new to applescript programming. I just bought a usb camera for my macbook because I use it for video conferencing/playing around, and it is better quality than the built in isight. However, in order to use this camera I need to use drivers from a program called camTwist. This being said camTwist needs to be opened first and the usb camera must be selected from camTwist Step 1 list in order for any other application to use the camera. I just want to make a simple program that would open camTwist first, then select "webcam" from the list (double click it like I always have to in order to select it) in order to activate the driver, and then open photo booth which would then be using the camTwist driver in order to take pictures.
    I made a crude program but it does not automatically select "webcam" from the Step 1 list in camTwist:
    tell application "CamTwist" to activate
    delay 10
    tell application "Photo Booth" to activate
    that’s basically it. I set the delay to 10 seconds so that when camTwists boots up first I can manually select my webcam. HOWEVER, I would like to make a script that would boot up CamTwist first, select my webcam from the list automatically, and then open Photo Booth with the CamTwist webcam driver already selected.
    Don't know much about applescript so any help to make a working script to solve my problem would be greatly appreciated! Thanks!

    Solved my problem but now I need help with something else! First I used CamTwist user options to create user defined hot keys with the specific purpose to load the webcam. I chose Command+B. I tested it out in CamTwist and it worked. The program follows a logical order from there. First it loads CamTwist, then after a short delay it presses the hot keys in order to load the webcam from the video source list, then another short delay and Photo Booth is opened with the driver loaded from camTwist. Everything works Perfect! Here's the code:
    tell application "System Events"
    tell application "CamTwist" to activate
    delay 0.5
    --Press command+b which is a user defined hot key to load webcam
    key code 11 using command down
    end tell
    delay 0.5
    tell application "Photo Booth" to activate
    My Next question is, would it be possible with this same script to have both applications quit together. For example I always quit Photo Booth first, so when I quit photo booth is there a way to make CamTwist also quit and keep everything within the same script? Please let me know. This forum has been very helpful and lead me to a solution to my problem! Hoping I can solve this next problem as well! Thanks everyone.

  • Need Help Please with Ipod 20G

    Long story short....I had my Ipod 4G and computer stolen several month ago on a business trip(have police report). A friend of mine recently purchased a new Video Ipod and gave me his old 20G...pretty nice of him! I am about to have iTunes loaded on to my new computer. Here are my questions I need help with please.
    1. Will I need to setup a new iTunes account or can I use my old one?
    2. Will I have to reset my newly acquired Ipod before I can place my music on it? I did back up about 80% of the songs from my old Ipod. Or will I be able to keep the 1500 songs my friend placed on it?
    3. Or would it be easier for me to give him back his, cough up the $300 dollars for a new one and start all over?
    Can't think of anything else I might need to know. If there is something I am missing and you could help fill in the blanks for me I would truly appreciate the help.
    Thanks so much!!
    20G   Windows 2000  
    20G   Windows 2000  

    1. No. You can use your old one.
    2. Will I have to reset my newly acquired Ipod before I can place my music on it? No, but iTunes may automatically do this, I will explain.
    I did back up about 80% of the songs from my old Ipod. Or will I be able to keep the 1500 songs my friend placed on it?
    Sorry, but it would not be legal to keep the 1500 songs on this iPod that were your friend's songs, assuming that he's still using/listening to them on another computer.
    3. No, I think it would be worth it to keep going, and use the 20GB iPod on your computer. It's not many hoops to jump through, and you should be up and syncing in no time.
    Overall, it's fairly easy, and I would suggest that you keep going with this iPod.
    My note from question #2:
    If you connect an iPod that hasn't been attatched to your computer before, iTunes will most likely display [to the effect of] this message when you connect the iPod for the first time:
    "The songs on the iPod "~~" are linked to another iTunes library. Would you like to replace the content of the iPod with this current iTunes library?"
    Be sure to click on "NO" when you recieve this message.
    Then, click on your iPod's name in the left panel of iTunes.
    Click on the "Music" tab.
    Deselect "Sync Music" if it is already set to this option.
    This means that your iPod is on manual managing now, instead of iTunes automatically transferring songs to your iPod, or deleting them, which is not what you want at this time.
    Now, if you have any songs on the iPod that you need to keep (i.e., if you have some of your songs on this iPod)you have a few options to transfer your iPod songs to your computer.
    Method 1 - Manually transfer your iPod songs to iTunes using MacMuse's post. See it here -> iPod songs to computer (MacMuse post)
    Method 2 - Add your iPod's folder into the iTunes library (via iTunes). Read this post here -> Using iTunes settings to transfer iPod songs to iTunes
    Method 3 - Use a third-party program to get the transferring done. For a Windows computer, CopyPod should work good. Also, you can try out YamiPod
    I hope that info helps you.
    -Kylene

  • Need help dealing with nested audio in Premiere Pro CC 7.2.2

    Hi, so previously I have been working with nested multicam video and nested audio together (one video track, and one audio track).
    However, I am hitting some issues with the nested audio workflow, and am hoping someone could help me iron out my issues.
    1. Once I've completed my edit, how do I efficiently flatten my nested edits so I have all of my original audio back? (For mixing purposes)
    2. Audio nesting sometimes seems glitchy. When making new nests, sometimes I will only get the topmost audio track in my nest, and I'm not sure what's causing that to happen.
    I REALLY need helping getting my workflow together, as it's at a bit of a stand still right now. I think I'm going to switch to unnested audio to avoid issues, but still need to flatten my existing edits to do that as well.
    Many thanks!

    This bug is NOT FULLY FIXED.  I'm on a tight deadline so i'm not looking very hard online to see if i'm alone - so please forgive me for just posting here...
    I'm using CC7.2.1 it's 1/21... very grateful that match frame FINALLY works on merged clips, but, again, this insert/overwrite bug is only PARTIALLY FIXED.
    Insert/overwrite with merged clips on 3-point edit now works, but ONLY when cutting in BOTH merged video+audio... if you're just trying to cut in the audio from a merged clip using a 3-point/4-point edit via hotkey, it's a no-go.
    I, for example, needed to re-cut in audio under some video with effects on it. So, I unpatched the video source completely and patched source audio tracks 1-4 to the appropriate sequence tracks. Upon hitting insert or overwrite multiple times, nothing responds. The only way to cut anything in from the source (merged clip) was to patch the source video back into the timeline on an unused video track, then cut ALL the tracks from the source in, I then had to delete the video track re-link the now free audio to the original video. Not a big deal, but annoying enough & waste of precious time on tight deadline.
    So, yeah, I have a workaround but is still not appropriate to have a core function not work properly. Especially when I'm working with a very complicated timeline.
    That said, thanks for keeping on top of our gripes, Mark.

  • Please help me with simple program

    Can someone please write a simple program for me that opens up a webpage in the center of the screen , with a set size, and then asks the user where they would like to click on the screen. Then once the person clicks it asks how many times they would like to click there, and then once they enter the # the program opens up the webpage (in the center at the same spot as before, with the same set size) and automatically clicks on the predesignated spot , and then closes all open internet windows, and keeps doing it for however many times the person chose. PLEASE HELP ME WITH THIS!!! If you could, please post the source code here. Thank you so much to whoever helps me!!!!!!!

    If it's not to learn, then what is the purpose of
    this project?well, if it's not HW and its not for learning java, then why the hell would anyone like to have a program that may open a webpage and then repeatedly click on predefined place...
    let me see...
    now if he had asked for program that fakes IP as well, then i would suggest that he tryes to generate unique clicks, but now... i'm not sure... maybe just voting in some polls or smthing... though, i would not create a program that clicks on the link or form element, but rather just reload url with given parameters for N times...

  • Hello everbody - i need help please with forms

    hi
    i am new in forms
    and i have a project to do
    i learn a lot and read oracle books about forms but in the many time it didnot help alot when i try to build and write scripts or procedure or triggers.
    i would like to ask a little help
    if anyone can help me with links or a web site that i can download form FMB file so i could run them and learn from its scripts_ and
    how to build form in the best way
    some of my problem are:
    - how to call a reports from a form with a button
    - how to work with date, hoe to calc the hours between two dates
    - i have built a query and i need to find the number of the rows (and the summary with count didnot work coz all the items aren't numbers
    thanks alot
    hope to get some information

    Did you take a look at this?
    regards

  • I need help/suggestions with the HTC Rhyme

    Hello,
        I have the HTC Rhyme and I am so unhappy with it.  I hate knowing I have to wait until 2014 until I can upgrade.  I am wondering if anyone else has the issues I have with mine.  1.)  Drops calls alot even when I have all bars.  2.) It is very slow if I try to pull something up online.  3.)  My phone numbers seem to disappear at nothing.  3.)  My phone cuts off randomly without my knowing it.  4.)  My charge never lasts long at all.  In fact I had straight talk before and that phone stayed charged forever and it was a smart phone as well.  5.) My apps disappear as well.  6.) When I am talking to family and friends they are always asking me to repeat myself or I cant hear them. 7.)  Trying to send a picture is like pulling teeth about near impossible for me to do.  8.)  Text messages gets to where they are going sometimes and sometimes not.  9.)  And try to find a decent case for this phone is not easy.  In fact I've not found one yet that I like thats not plastic or silicone.
       Is anyone else having these problems.?? I believe my phone is a lemon if I'm the only one having these problems.  I am not a person to complain about things but even my family and friends say I have a piece of crap for a phone.  What do I do??  Just got the phone in May.

    I totally agree with Ginny.  I have had my phone for about a month.  It won't hold a charge.  Someone suggested turning it off overnight to see if it will take a full charge.  After I did, it wouln't come on.  Still didn't get a full charge.  When I place it in the docking station, it gets so hot I can't hold it to my ear.  It is dropping calls even when I have the full bars.  At times, my phone shows that I am still connected on the call, but the other person can't hear me and hang up.  This is crap.  I can't go until 2014 to get a decent phone.  I want a different phone.  I had a little crappy Samsung Galaxy with TMOBILE and it stayed charged, never over heated, seldom dropped calls and I gave it up for THIS?  Surely you people must have some kind of replacement plan with this phone given all the people that are having the same issues that apparently are not getting fixed.  When I switched from TMOBILE, the guy that helped me with my new phone and plan swore by this phone.  I had done my homework and had seen all the negative responses to the phone, so when I asked him about it during his sales pitch, he assured me everything had been updated and it wasn't happening any longer.  Given that he was a Verizon representative, I believed him.

  • Need Help for a simple Keypress to advance to next frame

    Hi all,
    I am pretty weak at Action script.  I need to create a simple presentation that displays a bunch of photos.  I want to be able to hit the space bar to advance to next picture.  I am able to stop the playhead at the picture, but i want to advance to next labelled frame by hitting the space bar.  Some help would be great.
    Thanks
    Anthony

    Thanks for the quick response, I have a 4 pictures on 4 seperate layers.  The starting keyframe for each picture is labeled "Slide 01"," Slide 02" etc.  When i test movie, it automatically plays the first picture labeled "Slide 01".  At the end that slides frames I have a stop action.  When I hit the space bar, i want the playhead to jump to the next slide which it's start keyframe is labeled "Slide 02".  It has a few frames to allow for fadeing in, and then a stop action on the last keyframe. And so on.
    I entered your code and placed the goto and play event handler to jump to the next slide's keyframe which i labeled "Slide 02".  I did get the following error:
    Location: Scene 1, layer 'Scripts', Frame 1, Line 3
    Description: 1046: Type was not found or was not compile-time constant: KeyBoardEvnt.
    Source: function next(event:keyboardEvent):void
    stage.addEventListener(KeyboardEvent.KEY_UP,next);
    function next(event:KeyBoardEvent):void
    if(event.keyCode==Keyboard.SPACE){
      gotoAndPlay("Slide 02");
    Thanks
    Anthony

Maybe you are looking for

  • How to attached Two file in Email.

    Dear Friends, i have an email optoion in my Application .But right now it send mail with out attchment.i want to send meil with attachment . i have Two File browser item to attach file ,Please tell me how can i attach these two file with email My Cod

  • MS Services error 1064 when trying to start Oracle BI Scheduler service

    I am trying to configure Oracle BI Scheduler. After working through the config routines the Oracle BI Scheduler Service needs to be re-started. The Microsoft error message I get in the Services dialog is both consistent and persistent: "Could not sta

  • If I upgrade to mountain lion do I have to buy the server again

    I had lion server on my mac mini and I upgraded to mountain lion.  Do I have to buy the server seperate?

  • Help with setting up External hard Drive?

    Hi, I bought an 80GB External hard Drive and have just plugged it into my MacBook Pro. It lights up and I can hear the Hard Drive running in it's case, but I cannot move any files on my desktop into the External hard Drive icon. A message keeps comin

  • BI Query- Conditions

    I have a question regarding a Forecast/Sales query that I created.  Let me set the scenario for you: I have 3 key figures: Forecast Qty, Sales Qty, and Sls/Fcst In my rows I have: Material Group, Material, and Fiscal Year/Period I have a Condition wh