Package calls //please help

I basically have two packages or projects. One is project 1 & and the other is project 2. What I'm basically trying to do is call or get project's 1 classes and methods into project 2. I mainly want project 2 to be able to use project 1 because I have a transaction controller that will in the beginning of the program, askk whether you would like to run project 1 or project 2. Can someone please help?

Okay what I'm basically saying is that I want to use the contents of another project in a different project. So for example, in project 2, I will have a window that will ask the user for the transaction they would like to run. One transaction button will lead to the use case in project 2. The other transaction button should take the user to the use case back in project 1. This is where I'm stuck. I don't understand how to bring the contents of project 1 into project 2. Hope this clarifies it. Thanks for any help. I appreciate it.

Similar Messages

  • I cant find the end button when i receive a incomming call please help me. Is there any solution for it or is it a bug in the ios7.0.3 iam updated with ios7.0.3

    I cant find the end button when i receive a incomming call please help me. Is there any solution for it or is it a bug in the ios7.0.3 iam updated with ios7.0.3

    Do you mean decline button before picking up the call?

  • I can't make or receive calls please help ?

    I have iPhone 4. and today morning i found that I can't make or receive calls please help ?

    Geo84gr,
    Yeah, u're right. It's nothing to do with iTunes.
    I never connect my iPhone 4 with PC, still problem comes back.
    I've asked my telco to check the prob, they said they never change anything.
    1 more testing is mayb the cellular data is off.
    I'm now letting it on to test will the problem come back or not...
    So do u switch ur Cellular Data off? Any1 one o u that is having this same prob?

  • OS X update 10.9.3 can't be installed on this disk. An error occurred while evaluating JavaAcript for the package. Please help!

    My Apple Store, Mail and update was not working for sometimes, when I download OS 10.9.3 and try to install, error message appear: OS X update 10.9.3 can't be installed on this disk. An error occurred while evaluating JavaScript for the package. Please help!

    iMac (27-inch Mid 2011), OS X Mavericks (10.9.3), SL & ML, G4 450 MP w/Leopard, 9.2.2

  • Currently i am outside country and using my family person sim but my iphone display shows unknown call it become difficult when i missed call please help me out

    currently i am outside country and using my family person sim but my iphone incoming call display shows unknown call it become difficult when i missed call please help me out

    We are all users here
    what exactly do want any one to do ?

  • I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    I need to by apps but it keeps asking for my security questions ;/ but  forgot the answers to my security questions and the security/rescue email too (i dont have USA number to call please help me and send my rest to my email

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (115668)

  • May ipod touch can only recieved IMs. It can not call or recieve any video and audio calls, please help. thanks

    may ipod touch can only recieved IMs. It can not call or recieve any video and audio calls, please help. thanks

    Maybe try here:
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    What apps are you using?

  • Trouble composing sms txt/ placing a call- PLEASE HELP

    Hi- Ive had my curve for almost two months and its worked fine. However, today when I go to my message screen and press the menu button then press to compose sms text or the place call button it goes right back to all my messages. Its only 'sms text' and 'place call.' I can compose a text if i got to the address book and choose a contact but not straight from the message screen.
    I went to the place where I got my phone and he said it was because I didnt have an internet package but its worked fine before.
    I tried: charging my phone, turning it on and off and deleting all my old messages (i still have lots of memory left)
    please please please help me!! 
    Solved!
    Go to Solution.

    just pop your back cover off and take the battery out, but leave the phone on
    ~Lorrie~ Master of All Things Blackberry!

  • Problem with "Package Spec" please help.

    Hello once again.
    I'm developing a master-detail form, so I'm using a "Package Spec" variable to hold the primary key value from the master form. The primary key value for the master is generated by a sequence.
    Here's the package spec:
    PACKAGE primary_keygen IS
    pkey varchar2(15); 
    END;Now the master table has the following "Before Insert" Trigger .
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    DECLARE
    primary_key_value varchar2(15);
    BEGIN
    select lpad(to_char(ref_gen.nextval), 4,'0')
    into primary_key_value from dual;
    primary_keygen.pkey:='ABC/'||primary_key_value;
    :new.Ref_Number:=primary_keygen.pkey;
    END;For the detail block. I have the following "Before Insert Trigger" to generate the primary key values.
    CREATE OR REPLACE TRIGGER DET1_NUM_GEN
    BEFORE INSERT
    ON DETAIL1
    FOR EACH ROW
    BEGIN
    if :new.M_ref_number is NULL THEN
    :new.M_ref_number:=primary_keygen.pkey;
    ENd if;
    END;Works quite fine if I have only one detail block. But if I have multiple detail blocks. Depending on the user's selection. i.e. After entering data into the master block, the user selects a detail block ('Letter type'- using stacked canvases for this purpose and radio buttons for selecting the view) and then Inserts data into it. here's what I do in the Detail block2.
    CREATE OR REPLACE TRIGGER OREF_NUM_GEN
    BEFORE INSERT
    ON DETAIL2
    FOR EACH ROW
    BEGIN
    if :new.O_ref_number is NULL THEN
    :new.O_ref_number:=pkey_gen.master_key;
    ENd if;
    END;Now the problem is that When I enter one record into detail1, works fine, but for the second time, when I try to insert another record. the master table gets a new reference number (primary key value) while the detail block gets the previous value that was used in the first record!, so that means 'pkey_gen.master_key' is holding the old value, while in my opinion it should hold the new value, I dont know whats wrong here. If I try to insert two consecutive records into the same detail table, I get an error saying "Unique Constraint voilated", becuase the variable is holding the old values.
    And lastly after it inserts the record into the database, I get a dialog box saying, "successfuly inserted 2 records into the database" and when I click ok, the Form closes by itself, any ideas on how to stop this?
    I'm really stuck here. Please help me out on this.
    Thanks.
    Note: I'm using Form6i with Database 10g.
    Message was edited by:
    fahimkhan82

    Hi,
    Maybe the best way to start is to try building a new form from scratch. For simplicity I will assume that you have one master and one detail table. Master table has a primary key and the detail table has a foreign key to the master. Based on this, with the forms you can create a database block based on your master table. Use the wizard. Again using the wizard, create a second block based on the detail table. You'll see a screen to prompt to create a relationship. Create one by selecting the master table and the right foreign key relation. Now take a close look to all triggers automatically created by the form. Also check the "Relations" object found in you master block object tree. Note that the foreight key column in the detail table has the "Copy Value From Item" property set to monitor the master block's primary key.
    This is the basic. You don't need the database triggers, except (in case you want to insert through, say, SLQPlus) the one for the master table, which will look like this:
    CREATE OR REPLACE TRIGGER MASTER_NUM_GEN
    BEFORE INSERT
    ON MASTER
    FOR EACH ROW
    BEGIN
    IF :new.ref_number IS NULL THEN
    select 'ABC/'||pad(to_char(ref_gen.nextval), 4,'0')
    into :new.ref_number
    from dual;
    END IF;
    END;
    Now you have to take care about the inserts in your form. Create PRE-INSERT trigger on the master block.
    IF :master.ref_number IS NULL THEN
    SELECT 'ABC/'||pad(to_char(ref_gen.NEXTVAL), 4,'0')
    INTO :master.ref_number
    FROM dual;
    END IF;
    Run the form and explore different situations to see how the form is keeping the data integrity.
    Compile with Shift+K (incremental). Sometimes forms blow just because not all of the trigers were compiled properly.
    Hope this helps...

  • I have the advanced calling on my glaxay note 4 but am not sure on how to use and who i can call please help!?

    I have the advanced calling on my galaxy note 4 but am not sure on how to use it or who I can call I watched video's that show me but it doesn't work please help! 

    This is also known as VoLTE or Voice over LTE.  Like Vonage, but for cell phones.  Advanced calling is turned on or off in your phones settings, usually near Call/Phone option.  It allows an HD quality call between you and another Verizon customer who is using an AC-enabled phone.  It also allows you to talk and surf simultaneously and conduct video calls.  This AC requires Mobile Data to be on when out and about but can still be used on WiFi.The min do not count toward your data, however the video counts toward your data.
    Some customers report poor call quality or dropped and missed calls when using this newer feature.  Disabling AC usually helps quell those issues.

  • I upgraded my iPhone 4, have AT &T but now can't make or receive calls.Please help.

    I upgraded my iphone 4 but now cannot make or receive calls. I have AT&T. Please help!

    What did AT&T say when you contacted them?

  • I tried to upgrade my iphone 3gs from4.1 to 6.1 by using itune but it froze up in the end and not allowing me to dial out or receive call please help me somebody

    Hello, I tried to update my iphone 3gs version 4.1 to higher version by using itunes suggested by apple customer service rep but it locked my phone so I could not use it to dail out or recieve call. someone please help me. thank you

    See this support document for help when unable to update or restore. http://support.apple.com/kb/HT1808 Caution, you may have to do this more than once.

  • Screen says slide to make emergency calls please help

    i was updating to the 3.1 firmware and my computer froze and when i looked at my iphone it was frozen as well so i reset it and when it turned back on it just says slide to make emergency calls. CAN SOMEONE PLEASE HELP.

    Your phone needs to be activated. Do you have the original SIM that came with the phone? Since you are in the US, make sure your AT&T SIM is seated correctly and disconnect and then reconnect the iPhone to iTunes.
    iTunes should activate it.

  • Need an equal exchange of damaged game and I recieved bad service on a phone call please help!

    Sorry for the long post, please bare with me.
    Good Morning and Happy New Year. I wanted to share my frustrations and hope someone here could help me.
    I'm located near the Albany NY store, and on Black Friday I ordered Diablo 3  for ps4 for the sale price. Sadly when the item arrived, you can clearly hear that the disc is loose in the case, if I shine a flashlight in I can clearly tell the plastic pieces that hold the disc are broken and the disc is knocking around, so I wanted to exchange for the same game.
    I went to my local store, which did not have stock, and I've been waiting it out, seeing as it was 12/31 last night and my local store did not have the game in stock, I called and spoke to a rep at about 6:15 EST. Alas, after talking with a rep named Rodney here is my summary of what happened: I explained I have an unopened game that is damaged and I wanted to exchange it. He explained I would need to return it at my local store or go to Pitsfield MA. I asked if I could do some sort of exchange over the phone and his response was "We do not take any video game software returns because we cannot verify you did not open the item" I was blown away, so I asked If I bought a game from best buy, the case was crushed to bits, and I lived no where near a best buy store, they would not take it back? HE said yes that is right. I tried to argue the point with him, but he rose his voice at me, and it took about 10 attempts of me asking to speak to his supervisor, as he kept telling me "She's will just tell you the same thing, you need to return it at your local store, *At manager's discretion only, I can't guarantee we will even take it back* or you need to drive to Pitsfield MA (Another State) to exchange it* Then  I demanded to speak to the manager, to which his reply was, she's not available, and gave me the number to the customer relations line and said he could not help me.
    I was blown away, and quite upset, who doesn't take returns on damaged items? I mean I waited for it to come back into stock at my local store and it has not. I don't want to order a new one because I won't get the sale price I paid.
    so I called back and got a different rep, who seemed to not know how to do this either, after a long hold she told me I should get an e-mail with a return label to return it. She also said she could not guarantee any exchange, and that I might just be refunded when it went back, the kicker, I never got the e-mail or return label I was supposed to get right away, so I'm upset and confused on what to do now. I just want an equal exchange for an unopened (but damaged item) for the same thing, and no one has been able to help me, had this been any other store I frequent, I would have gotten this resolved by now. (Target sent me a damaged item, and I called, they sent me a new one right away, with a return label to return the other, Barnes and Noble did the same over the Holiday season with me)
    Please, can someone tell me, short Of driving to another state how I can exchange this item?

    Hello sirpikaz,
    I actually just picked up Diablo 3 on PlayStation 4 and I’m pretty frustrated with myself for not doing it sooner. Having played Diablo on PC for years and years, I’m amazed at how well Diablo 3 ported over to PlayStation 4! That direct control instead of clicking everywhere is just too awesome. With that said, reading of your experience when trying to exchange your copy for another is quite frustrating to me and I feel it could have been handled quite a bit better than what you’ve described. Yes, we have stipulations on returning used games, but it’s clear to me that you aren’t asking for a return here, but a simple exchange!
    In order to provide more detail about your circumstances, I’m going to send you a private message. To check your private messages, make sure you’re logged into your account on the forums and click the small envelope on the top right of the screen.
    Thanks for sharing your feedback in such detail and I’ll be reaching out to you shortly!
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Importing Flex project into Flash CS5 for use with iPhone packager? Please Help.

    Hi all,
    I have been developing an application in Flex builder for the iPhone using the iPhone packager, where I've been using the Flex framework.
    Now I'm stuck at trying to use my existing libraries in Flash. It seems I can't add the UI components I used in Flex (class VideoExample) to the default Flash container. I need someone's help who has experience with that.
    I have created a .SWC file, but when I'm trying to add the container in Flash using addChild(new VideoExample) it doesn't work. I can't load the .SWF externally using loader.load() at runtime, because the application is for iPhone. Any solutions how could I import the project to Flash?
    I was thinking about changing the UI components classes from mx.* to fl.*, but I would have to change many code and I'm not sure if it would even work, and I don't want to loose compatibility with mxml.
    Please respond, help would be very much appreciated!
    Here's my mxml wrapper, from which I start the main application:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="EntryPoint.main()">
    </mx:Application>
    Then I have a class which creates the main container:
    package {
    import mx.core.*;
    public class EntryPoint {
        public static function main():void {
            var client:VideoExample = new VideoExample();
            var mxmlApp:Application = Application(Application.application);
            mxmlApp.addChild(client);
    Here is the main class VideoExample:
    package {
    import mx.controls.*;
    import mx.containers.*;
    public class VideoExample extends Canvas {
        public function VideoExample() {
            super();
            init();
            private function init():void {
            loadImage();
            loadText();
                    loadDisplay();
                    startConnection();

    This forum is for Flash Media Server Developers so most likely you migth get much traction here. I would recommend you to post your query on Flash Builder forum: http://forums.adobe.com/community/flash_builder/using_flash_builder
    Also you can try posting here:
    Flash Platform Services For Promotion - http://forums.adobe.com/community/promotion
    Flash : http://forums.adobe.com/community/flash/flash_general

Maybe you are looking for