Iam stuck in the code

am new java programmer and am student
I must add two functionalities to the actual application.
1.     Create an account maximum 5 accounts
2.     Keep record of all transactions that took place
and this ist he Client code
// The Client code
// Java core packages
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.rmi.Naming;
import java.rmi.RemoteException;
import java.net.MalformedURLException;
import java.rmi.NotBoundException;
public class BankClient extends JFrame{
private JLabel label1;
private JButton deposit,withdraw, setaccount ;
private JButton newaccount, trans ;
private Container container;
private Bank c;
private static String ip="";
public static void main(String[] args)
if (args.length ==0)
System.out.println("Provide the IP address of the server... try again");
System.exit(0);
ip = args[0];
BankClient application = new BankClient();
application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
public BankClient()
super("My Account");
container = getContentPane();
container.setLayout( new FlowLayout() );
deposit = new JButton("Deposit 100 Dhs");
withdraw = new JButton("Withdraw 20 Dhs");
setaccount = new JButton("Set account to ZERO");
newaccount = new JButton("Add New Account");
trans = new JButton("View Transaction");
container.add( deposit );
container.add( withdraw);
container.add( setaccount);
container.add( newaccount);
container.add( trans);
label1 = new JLabel();
container.add( label1 );
ButtonHandler handler = new ButtonHandler();
deposit.addActionListener(handler);
withdraw.addActionListener(handler);
setaccount.addActionListener(handler);
label1.setText("You have in your account: 0 Dhs");
setSize( 300, 300 );
setVisible( true );
try
c = (Bank)
Naming.lookup("rmi://"+ip+":1099/BankService");
catch (MalformedURLException murle)
System.out.println();
System.out.println(
"MalformedURLException");
System.out.println(murle);
catch (RemoteException re)
System.out.println();
System.out.println(
"RemoteException");
System.out.println(re);
catch (NotBoundException nbe)
System.out.println();
System.out.println(
"NotBoundException");
System.out.println(nbe);
catch (java.lang.ArithmeticException ae)
System.out.println();
System.out.println(
"java.lang.ArithmeticException");
System.out.println(ae);
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
private void jbInit() throws Exception {
private class ButtonHandler implements ActionListener{
// handle button event
public void actionPerformed( ActionEvent event )
try {
if( event.getSource() == deposit)
label1.setText("");
c.deposit(100);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
if( event.getSource() == setaccount)
label1.setText("");
c.setaccount(0);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
else if (event.getSource() == withdraw)
label1.setText("");
c.withdraw(20);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
// add new account
else if (event.getSource() == newaccount)
label1.setText("You Have new account");
c.setaccount(0);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
// view transaction
else if (event.getSource() == trans)
Container = getContentPane();
container.setLayout( new FlowLayout() );
if( event.getSource() == deposit)
label1.setText("");
c.deposit(100);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
if( event.getSource() == setaccount)
label1.setText("");
c.setaccount(0);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
else if (event.getSource() == withdraw)
label1.setText("");
c.withdraw(20);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
// add new account
else if (event.getSource() == newaccount)
label1.setText("You Have new account");
c.setaccount(0);
String s = Double.toString(c.getaccount());
label1.setText("You have in your account: " + s + " Dhs");
catch (RemoteException re)
System.out.println();
System.out.println("RemoteException");
System.out.println(re);
catch (java.lang.ArithmeticException ae)
System.out.println();
System.out.println("java.lang.ArithmeticException");
System.out.println(ae);
//////////////////////////////////////////////////////////////////////////////

See http://forum.java.sun.com/help.jspa?sec=formattingCurrently the image link is broken for the code tag button in the editor. It is next to the U button. You can still click that button or type in [code[/b][b]].

Similar Messages

  • PLEASE HELP ME TO MODIFY THE CODE !

    DATA:BEGIN OF I_PARTNER OCCURS 0,
           VBELN LIKE VBPA-VBELN,
           adrnr like vbpa-adrnr,
           kunnr LIKE vbpa-kunnr,
           PARVW LIKE VBPA-PARVW,
           post_code1 LIKE adrc-post_code1,
           po_box LIKE adrc-po_box,
           name1 LIKE adrc-name1,
           name2 LIKE adrc-name2,
           city1 LIKE adrc-city1,
           city2 LIKE adrc-city2,
           country LIKE adrc-country,
           street LIKE adrc-street,
           str_suppl1 LIKE adrc-str_suppl1,
           str_suppl2 LIKE adrc-str_suppl2,
           str_suppl3 LIKE adrc-str_suppl3,
           vtext like tpart-vtext,
           ADRNP LIKE VBPA-ADRNP,
          SMTP_ADDR LIKE ADR6-SMTP_ADDR,
         END OF I_PARTNER.
    SELECT
    VBPA~VBELN
    vbpa~adrnr
    VBPA~PARVW
    VBPA~KUNNR
    VBPA~ADRNP
    TPART~VTEXT
    FROM VBPA AS VBPA
    INNER JOIN TPART AS TPART
    ON VBPAPARVW EQ TPARTPARVW
    AND SPRAS = SY-LANGU
    INTO CORRESPONDING FIELDS OF TABLE I_PARTNER
    WHERE
    VBPA~VBELN EQ S_VBELN.
    WRITE:/
      i_partner-adrnr         under         'ADDRESS NUMBER',
      i_partner-vbeln         UNDER         'Order-No',
      i_partner-parvw         UNDER         'Partner-Type',
      I_PARTNER-VTEXT         UNDER         'Partner-Type description',
      I_PARTNER-KUNNR         UNDER         'Partner-no'.
      ULINE.
    endloop.
    HERE I AM GETTING ALL THE POSSIBLE PARTNER TYPES.
    I WANT TO GET THE OUT PUT ONLY WHEN THE PARTNER TYPE S ARE  'SP'  'BP' AND 'SH'.
    PLEASE HELP.....

    Hi,
    Both the answers are correct... iam just writing the code u needed..
    ranges : gr_partner for tablename-fieldname.
    initialization.
    gr_partner-sign = 'I'.
    gr_partner-option = 'EQ'
    gr_partner-low = 'SP'
    append gr_partner.
    gr_partner-sign = 'I'.
    gr_partner-option = 'EQ'
    gr_partner-low = 'BP'
    append gr_partner.
    gr_partner-sign = 'I'.
    gr_partner-option = 'EQ'
    gr_partner-low = 'SH'
    append gr_partner.
    SELECT
    VBPA~VBELN
    vbpa~adrnr
    VBPA~PARVW
    VBPA~KUNNR
    VBPA~ADRNP
    TPART~VTEXT
    FROM VBPA AS VBPA
    INNER JOIN TPART AS TPART
    ON VBPAPARVW EQ TPARTPARVW
    AND SPRAS = SY-LANGU
    INTO CORRESPONDING FIELDS OF TABLE I_PARTNER
    WHERE
    VBPA~VBELN EQ S_VBELN
    and vbpa~parvw in gr_partner.
    Regards,
    Nagaraj

  • My ipod touch 5th generation is stuck on the apple logo, and i tried fixing it with itunes but it tells me there an error and gives me a code saying i needed to update my itunes and it was.what other ways is there to fix it.

    ipod stuck on the apple logo. i did the itunes thing but it tells me error and gives me a code saying i need to update itunes but it was and i did again but it still said the same thing. help how do i fix my ipod.

    Hey Edgar, how exactly did you do the updates? Are you running iTunes 11.2.2? And you iPod 5 is still running iOS 6.1.2 as your tag shows? or are you running iOS 7.1.1?  More info would be helpful. As Deggie asked, what was the error message, the more detailed the better. One more thing-- is this a Mac machine or a PC? Cheers.

  • My phone is stuck on the apple and itunes give me a code 1654

    my iphone is stuck on the apple and itunes give me a code 1654 what do i do ?????

    I've had this problem with certain USB ports, try another pc if you can, or keep trying, I have had times where running the restore several times and finally it will work. Let me know ok?

  • My niece gave me her old ipod touch 8GB and her passlock code.  It is stuck in the "connect to itunes" mode and won't let me even access the slide to unlock.  How to I fix??

    my niece gave me her old ipod touch 8GB and her passlock code.  It is stuck in the "connect to itunes" mode and won't let me even access the slide to unlock.  How do I fix??

    You will need to Restore it as a New Device...
    Restore...
    1: Connect the device to your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • My iPhone 5 is stuck on the apple logo and is saying error code 1?

    My iPhone 5 is stuck on the apple logo and is saying error code 1?

    This is my second iPhone in the space of four months the 1st 1 wouldn't turn on so apple replaced it the phone is currently in the shop not an apple shop but the shop owner did phone me today and say he carnt fix it and informed me it was sayin error code 1 !! I collect it tomorrow what I will do with it I don't no

  • Blackberry is stuck at the PIN code entry screen

    My blackberry has been stuck at the PIN code entry screen for two days now.  It says enter PIN code but no matter how many keys I press, it won't type anything.  There is a picture of a locked lock at the right hand corner of the screen.  Also it ays 123 at the top right hand side.
    I've tried everything. Resetting the phone, taking the battery out for a few minutes, even taking the SIM card out.
    Please help!!!

    this sounds like your keyboard has gone bad.
    Try connecting your 8520 with your PC and running the BlackBerry Desktop software.
    You should be asked to enter the same PIN code on the PC, using the PC keyboard... does that work?
    If so, I'd advise doing a backup ASAP should it be the handheld device keyboard going bad. Thsis can be caused by moisture issues, left on a bathroom counter during a hot steamy shower, kitchen, gym locker, sweaty face, etc.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Iphone 5c restore is getting stuck at the end and then it is exiting with error code (3). I just bought the iphone and i was trying to restore it for a fresh copy. Apple product

    Pleaseeeee urgent  i need help. my iphone 5c is getting stuck at the end while restoring and after 2 hours it is exiting with error code (3). Itunes downloaded the 7.0.2 ipsw and it is failing to restore the phone. i tried this on many computers and on each computer I did the uninstall and the reinstall trick for itunes. Nothing worked and im left with a ******** stuff with no software installed!!!!!!!!!!!!!!!!!!!!!

    Hi there masfahani,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    -Griff W.

  • I just bought an iphone 4s. phone service and wifi kept disconnecting and so i restored the phone. i had error code 1645 and 1602. so i stopped the restore. but now my iphone is stuck in the restore screen and is not recognised by itunes or com

    I just bought an iphone 4s. phone service and wifi kept disconnecting and so i restored the phone. i had error code 1645 and 1602. so i stopped the restore. but now my iphone is stuck in the restore screen and is not recognised by itunes or com

    i have restarted my com, re-installed itunes and repeatedly tuned on and off my iphone to no avail. please help!!!

  • IPhone 5 randomly shuts off and it is stuck at the loading screen with codes popping up

    My friend's iPhone randomly shuts down today and the loading screen with the apple logo came on with some codes. I tried restarting it manually but the same thing keeps happening. The codes start with [nand] and mention something about blocks. What could be the problem?

    Could be a hardware fault. It may need to be replaced.
    Have you tried restoring it?
    ~Lyssa

  • Iam not getting the data on screen after using the user exit zxpadu01

    Dear Freinds
                As per my requirement when the user enters value Ansal  it should get defaulted to Amount field (bet01 ) based on the wage type
    i have written calculation ( q0008-bet01 = ansal/100) before it getting defaulted to bet01, i found that value is not getting default  on the screen for bet01 once i enter value for Ansal , please any body correct my code
    in   ZXPADU02 i have written the code as  below :
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.   -- HERE I GOT ALL THE DATA EXCEPT BET01
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008  --- HERE I CAN SEE EVEN THE BET01 IS FILLED
    IMPORTING
    prelp = innnn.         --- HERE I CAN SEE LGART BUT NOT AMOUNT VALUE
    endif.
    when others.
    endcase.
    IN ZXPADU01 I HAVE WRITTEN AS BELOW:
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008   --- I CAN SEE ONLY WHEN I COME AGAIN
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    Now my problem is as follows :
                   i have entered the value for Ansal (ex: p0008-Ansal = 1000) ..........and i say enter then i should found the calculated value for the ansal through my coding
    and it should  display in bet01 as 10 ( q0008-bet01 =  p0008-ansal /100)
    but i dont find the value 10 being displayed for the field bet01 on the screen  when
    user enters Ansal  as 1000 .........even then i have saved it to test the scenario......
    now i came in displayed mode (pa20 ) for the infotype 008 for the same personnel no for the same  dates .....where i created the record........i found that the value
    bet01 is there i.e i can see  the value bet01 as 10 ( my requiremnt here matching)
    but when the user say enter during the time of creation of the record the value
    bet01 is not getting defaulted with 10 .........why iam not able to understand
    PLEASE ANY BODY HELP ME IN THIS REGARD 
    regards
    shanti.

    Hi Pranesh,
                   i have used the logic which you hav given as below
    in ZXPADU02
      FIELD-SYMBOLS <fs>  TYPE ANY.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .  ---  amount as (ansal /100 i.e 1000/100 = 10) 10
    endif.
    still iam not getting the data for the field bet01
    this is the coding i am using
    data : wa_p0008 like p0008,
            i0008 like p0008,
           l_v_ANSAL type ANSAL_15,
           l_v_amount type PAD_AMT7S.
      FIELD-SYMBOLS <fs>  TYPE ANY.
    CASE innnn-infty.
    when '0008'.
    MOVE-CORRESPONDING  innnn to wa_p0008.
    CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
    EXPORTING
    prelp = innnn
    IMPORTING
    pnnnn = wa_p0008.
    if wa_p0008-lga01 = 'MFPY'.
    l_v_ansal =  wa_p0008-ansal.
    l_v_amount = l_v_ansal / 100.
    move l_v_amount to wa_p0008-bet01.
    ASSIGN ('(MP000800)Q0008-betrg') TO <fs>.
    if <fs> is assigned.
    <fs> = l_v_amount .
    endif.
    CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
    EXPORTING
    pnnnn = wa_p0008
    IMPORTING
    prelp = innnn.
    endif.
    when others.
    endcase.
    please help me as iam still not getting (value in bet 01) when i press enter once i enter value in ansal feild.
    regards
    shanti.

  • HT4623 I am trying to update my Iphone5 and it is stuck on the screen, RESCUE EMAIL. It won't let me hit next, help

    I am trying to update my Iphone and it is stuck on the page that says RESCUE EMAIL. It won't let me hit next?!

    Payment problem
    1. Check if your form of payment is acceptable
    http://support.apple.com/kb/HT5552
    2. Check credit card number
    3. Check security code
    4. Billing Address must be the same as credit card
    5. Check expiry date
    6. Make sure you have sufficient fund

  • HT201407 Per the "Completing Authorized iPhone Unlock" instructions, I connected to iTunes to back up and restore so my iPhone can be unlocked! But after the restore my iPhone is stuck at the activation screen, it will not activate.

    Received an authorized unlock code from apple/AT&T for my off-contract 3GS (8GB). Per the “Completing Authorized iPhone Unlock” instructions, I connected to iTunes to back up and restore so my iPhone can be unlocked! But after the restore my iPhone is stuck at the activation screen, it will not activate saying “Your iPhone cannot be activated because the activation server is temporarily unavailable”. I tried this again and again for countless times, no way! I have my old AT&T simcard and other carrier’s simcard. Both will not help. Please help me to activate and start using my phone.

    Hello,
    I got like the same problem, last days I get message to restore my iPhone, so I did it yesterday and it work very well. In the afternoon I saw that at top in the left corner show invaild sim card or so (only knew the german version). so I restore it again but now it won`t activate after I enter SIM-PIN and it accept it, it shows "No Service".
    Anybody can help? My Carrier is o2 Germany.
    Thanks!

  • I have tried another exercise, but again I will need help, here's the code

    hi,
    I have another problem. here's the question pluss the code.
    public interface Patient{
    public void doVisit(float hour);
    public boolean hospitalize();
    1. I will need to write a class name OrdinaryPatient which extends Patient.
    the class will include value int that his name age and another value that will be boolean
    of disease.
    I have to do two constructors. one that don't get values and give them default and the other one
    that does get values.
    another method name docVisit which get a visit to the doctor time visit and will print a message.
    the method hospitalize will hospitalize the patient (and if he will have disease he will get true).
    and for age I have to write methods of get and set.
    2. I will need to write a class of Hipochondriac that extends from OrdinaryPatient.
    I have to do two constructors. one that don't get values and make default and the other one that do get values.
    I will need to ade int by the name of numberOfHospitalize.
    I will need to move the method hospitalize that it will be possible to hospitalize the hypochondriac
    on with the value numberOfHospitalize that his small from 5 and if he will hospitalize he will return
    the value true.
    3. write class PatientClass which will be the method main.
    do 10 objects from OrdinaryPatient, 5 that don't get values and 5 will get randomaly age and
    chronic disease with true.
    do 10 objects from Hipochonidraic, 9 that don't get values and one get all of them.
    save all objects in value from Patinet.
    print for each of them their age.
    print for the OrdinaryPatient alone the method of Hospitalize.
    ok, here's what I did.
    1. OrdinaryPatient
    pbulic class OrdinaryPatient implements Patient{
    private int age;
    private boolean disease;
    public OrdinaryPatient(){
    this.disease=false;
    this.age=0;
    public OrdinaryPatient(int age,boolean ddisase){
    this.disease=disease;
    this.age=age;
    public int getAge(){
    return age;
    public void setDisease(boolean disease){
    this.disease=disease;
    public void setAge(int age){
    this.age=age;
    public void docVisit(){
    System.out.println("Patient's visit is one hour");
    public boolean hospitalize(){
    return false;
    2. public class Hipochondriac extends OrdinaryPatient{
    private = numberOfHospitalize;
    public Hipochondriac();
    super();
    numberOfHospitalize=0;
    public Hipochondriac(int age, boolean diseased, int numberOfHospitalize){
    super(age.diseased);
    setnumberOfHospitalize(numberofHospitalize);
    from here I don't know how to continue.
    3. public class PatientClass{
    public static void main(String args[]){
    patient patinets= new patient[20];
    for (int i=0; i<5; i++){
    patients= new OrdinaryPatient();
    from i'm stuck!!!
    if you can help me to improve it I will appriciate it...
    Einat

    here my result.
    1. public interface Patient{
         public void docVisit(float hour_;
         public boolean hospitalize();
    public class OrdinaryPatient extends Patient
         private int age;
         private boolean disease;
    //constructors
         public OrdinaryPatient(){
              age=20;
              disease=true;
         public OrdinaryPatient(int age, boolean disease) {
              setAge(age);
              this.disease=disease;
    //methods
         public int getAge() {
              return age;
         public void setAge(boolean disease) {
              if(age>0 && age<120)
                   this.age=age;
         //overriding methods.
         public void docVisit(float hour) {
              System.out.println("your visit turn is at "+hour");
         public boolean hospitalize(){
              System.out.println("go to hospital");
              if(disease)
                   return true;
              else
                   return false;
    2. public class Hipochondriac extends OrdinaryPatient{
         private int numberOfHospitalize;
    //constructors
         public Hipochondriac(){
         public Hipochondriac(int age, boolean disease, int numberOfHospipitalize){
              setAge(age);
              this.disease=disease;
              this.numberOfHospitalize=numberOfHospitalize
         //methods
         public int getNumberOfHospitalize(){
              return numberOfHospitalize;
         public void setNumberOfHospitalize(int numberOfHostpitalize){
              if(numberOfHospitalize>0)
                   this.numberOfHospitalize=numberOfHospitalize;
         public boolean hospitalize(){
              if(numberOfHospitalize<5)
                   System.out.println("go to hospital");
                   numberOfHospitalize++;
                   return true;
              else
                   return false;
    3. public class PatientClass
         //constructors
         private PatientClass(String[] args){
              //private methods helps to build the object.
              intialArr(args);
              printAge();
              gotHospital();
    //methods.
    private void intialArr(String[] args){
         int i;//array index
         for(i=0;i<arr.lents/2;i+=2)
              arr=new OrdinaryPatient();
              arr[i+1]=new OridnaryPatient((int)(Math.random()*121),true);
         for(;i<=arr.length-2;i++)
              arr[i]=new Hipochondriac();
         arr[i]=new Hipochondriac(Interget.parseINt(args[0]),
         private void printAge(){
              for(int i=0;i<arr.length;i++)
                   System.out.println(((OrdinaryPatient)arr[i]).getAge());
         private void gotoHospital(){
              for(int i=0;i<arr.length;i++)
    //checking for ordinarypatient objects only
                   if(!(arr[i] instanceof Hipochondriac))
                        //dont need casting
                        arr[i].hospitalize()[
         //main method
         public static void main(String[] args)
              //setting the commandLine array from the main to PatientClass object
              PatientClass pc=new PatientClass(args);
    let me know if it's seems logic to you.
    thank you, Einat     

  • Trying to modify the code in a component

    Hi,
    I made a flash website with photo galleries using a component
    that I bought online.
    The component is loading the image in a thumbnail scroll bar
    via a XML file and the full size image display in a UILoader.
    So far nothing special.
    But when I reach a certain amount of pictures in the gallery,
    the scroll panel get stuck while loading and doesn't display the
    full size image. Then the thumbnails don't react at all.
    Here is the address where you can see the problem:
    Liquit.dk
    The gallery that has the problem is: "Commercials".
    If you navigate in the rest of the website and come back,
    then the gallery is working!???
    The problem appears only the first time you visit the
    website, or after you empty the cache.
    But the first time you visit a website is the most important
    one, isn't it?
    So of course I tried to get support where I bought the
    component. They pretend that they don't see any problem when
    checking the website online. That answer is just not acceptable
    when every single person who visited the site reported the exact
    same problem. So it seems like they are just not willing to help
    their customers once they sold their stuff.
    My theory is that the component is loading all the elements
    at the same time and I would like to be able to access the code of
    the component to change the method, so that the component will load
    the elements one by one.
    Is there a way to access the code when one buy a component?
    If you think I totally got it wrong and you found the reason
    why it's not working properly, please tell me ;-)
    I also provide all the files used to make that site at the
    following address:
    mmarauder/liquit_files
    Thanks in advance,
    Sebastien

    Hi,
    I'm back with the same problem. It's still not solved and
    I've been asking some questions to the team that is hosting the
    website.
    In order to verify if the issue could come from their server.
    They first thought about "packet loss". I ran some "ping" tests to
    verify and it is not a packet loss problem.
    Which leads to only few solutions:
    First - there is something wrong with my flash application
    that I haven't been able to see. When I check with the debuger in
    flash everything looks fine, but maybe I don't read the info
    correctly.
    I don't know if any of you guys actually used the files I
    provide at the end of my first email. As I provide everything
    includind the .fla file. So anybody with the flash application can
    open it and check if there are problems with what I've done.
    I've been very carefull, but I'm a real beginner since this
    website is my first flash experience.
    Somebody who has been a flash develloper for 6 years
    suggested that it could be a bug in flash.
    If that happens to be true, I'll have to rewrite the entire
    application in a different way, which will be a problem since I
    don't know how I can make this work in another way.
    So if somebody can help me or send me tips or tutorials on
    how to make that website that would work the same way. I'm ready to
    give it a try.
    Thanks in advance
    Sebastien

Maybe you are looking for

  • Simple help: on a mac

    Ok guys, I have a very simple question...but can't seem to find an answer. I there anyway I can download flash for my mac? I've found downloads for flash PLAYER on mac...but I don't really understand the difference. All I'm looking for is the version

  • Setup can't detect network printer Photosmart C7250 all in one

    I volunteer for our local historical society.  The person who did a lot of the computer maintenance work is not active at this time so I've begun to look at things.  There is a Gateway PC running Windows 7 64 bit home premium, a Sony Vio laptop runni

  • T420 running 285.62 nvidia drivers - optimus included?

    Hi all. I have a T420 and wiped it clean for my own Win 7 64-bit installation. While running the driver updates from Lenovo's driver site, I noticed separate drivers for the nvidia card - looks like the "regular" drivers and the optimus separately. I

  • Report not hitting pre seed cahe created using iBot by Admin

    Hi, We created an iBot to pre seed the cache using Administrator and it is creating the cache but when normal user run this particular report for the 1st time it's not hitting the cache(created using iBot). all the subsequest users request hitting th

  • MRP- purchase req. without price

    Hi gurus. I have materials with stock transfer as special procurement (MARC-SOSBL) from other Plant. When I run MRP, PR is created without price despite that material has price in supplying Plant. However if I create PR manually with the same data, P