show date in text field bug

To start off with, I am running Servoy Developer version 3.0b3-build 364 with Java version 1.5.0_06-b05 on Windows XP.
My servoy client is running Servoy Client version 3.0b3-build 364 with Java version 1.5.0_06-b05 Running on Windows 2000.

I have a int(11) column named created_time that holds the UNIX timestamp of the creation date/time.
I have a varchar(255) column named cr_date that I have being populated with the cut up date from created_time. Below is the code:

var a = new Date(created_time*1000);

var b = a.getDate();

var c = a.getMonth()+1;

var d = a.getYear()+1900;

forms.cr_coord_entry.cr_date = c + '/' + b + '/' + d;

It works fine in developer, I see it with no problems.

On the Servoy client side, I see a blank field. According to MyPHP Admin, the column is populated with the correct text, but it won’t show up on client.

If I can see it on one license and not on another, I assume this is a bug.

Has this occured with anyone else?

Here are screen grabs from both the Developer as well as the client.

As you can see there is clearly data missing in the date field on the client license that appears on the developer liscense.

Any responses would be very welcome.

Is the client connecting to the your main Servoy Application Server, or are you pulling up the client from your own Developer (ie http://localhost:8080).

Every now and then I find some weird things were the App server just needs restarted. The way to test is to pull up a client conecting to your local copy of developer, and see if it works there.

That did it. I had been flushing the solution, and I was seeing changes to the layout each time, so I thought it was working. Ok. Thanks for your help.