Re: The JavaBean doesn't run... PART 2

2000-09-26 Thread Alarcon Fabio
Hi Roberto You must change the property "Name" to "name" in your Bean, because it must begin with lowercase. I tested it and it works fine. Bye Fabio Alarcon Ortiz Seguro Social de Salud, Lima - Peru Gerencia Central de Desarrollo e Informatica Gerencia de Sistemas Phones : (51 1) 265 6000,

Re: The JavaBean doesn't run... PART 2

2000-09-25 Thread Robuschi (Delfi)
I adjusted the code but the result is the same. Do you know why? Please, help me! Thanks to everybody Roberto file: bean4.java

Re: The JavaBean doesn't run... PART 2

2000-09-25 Thread Veronique Dupierris
I don't know how it should work in your case ( variable starts with Uppercase) Normally, the "Java programming way" says that all variables names should start with a lowerCase. So for Java beans you should have String name; and methods getName() and setName(string toto) So maybe just try