After doing af LOT of work on a database for managing menbers in a football club, I'm almost giving up now.
It takes forever to update date on the members, when I press "update" I have to wait for 10-20 seconds. The form is not that complex, and the only scripting is "on success";
input.Hjemmetelefon = thisapp.FormatAsPhoneNo(input.Hjemmetelefon);
input.For_ldremobil = thisapp.FormatAsPhoneNo(input.For_ldremobil);
input.Mobil = thisapp.FormatAsPhoneNo(input.Mobil);
MedlDB = Medlemmer [Medlemsnr == input.Medlemsnr];
MedlDB.Adresse = input.Adresse;
MedlDB.Postnr = input.Postnr;
MedlDB.By = input.By;
MedlDB.Hjemmetelefon = input.Hjemmetelefon;
MedlDB.Foraeldremobil = input.For_ldremobil;
MedlDB.Mobil = input.Mobil;
MedlDB.E_mail = input.Email;
MedlDB.Far = input.Far;
MedlDB.Mor = input.Mor;
These lines formats the phoneno. and transfers the edited data to the primary DB in the same app.
Plz hlp
/Henry