PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Table customisation
Table customisation
Iniciado por djsummers, 27,oct. 2015 12:25 - 2 respuestas
Publicado el 27,octubre 2015 - 12:25
Hi all

Quick question if anyone has any ideas;

I have a customer who spends a lot of time updating the browse table layouts (column orders) to his requirements BUT every time we deliver a software update, all of the browses are reverted back to default and the customer has lost his specific column order

Is there anyway of stopping this when we deliver a new update ?

Kindest regards

Dave
Publicado el 27,octubre 2015 - 16:16
Hi Dave,

pcsoft is saving this in the registry (by default) or in an ini or xml
file if you choose that option...

of course, these settings are linked with the VERSION of the program,
because it's clear that in a new version, the table COULD be completely
different.

So YOU will have to manage that aspect yourself :

- EITHER - You look at how it's saved by pcsoft, and you change the
version information
- OR - You remove the automatic save and you save the column order/size
and so on yourself when you need to and reuse it by code when you open
the window.

Best regards


--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

Ready for you: WXShowroom.com, WXReplication (open source) and now WXEDM
(open source)

More information on http://www.fabriceharari.com


On 10/27/2015 6:25 AM, Dave Summers wrote:
Hi all

Quick question if anyone has any ideas;

I have a customer who spends a lot of time updating the browse table
layouts (column orders) to his requirements BUT every time we deliver a
software update, all of the browses are reverted back to default and the
customer has lost his specific column order
Is there anyway of stopping this when we deliver a new update ?

Kindest regards

Dave
Publicado el 27,octubre 2015 - 22:29
Fabrice Harari wrote:
Hi Dave,

pcsoft is saving this in the registry (by default) or in an ini or xml
file if you choose that option...

of course, these settings are linked with the VERSION of the program,
because it's clear that in a new version, the table COULD be completely
different.

So YOU will have to manage that aspect yourself :

- EITHER - You look at how it's saved by pcsoft, and you change the
version information
- OR - You remove the automatic save and you save the column order/size
and so on yourself when you need to and reuse it by code when you open
the window.

Best regards


--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

Ready for you: WXShowroom.com, WXReplication (open source) and now WXEDM
(open source)

More information on http://www.fabriceharari.com


On 10/27/2015 6:25 AM, Dave Summers wrote:
Hi all

Quick question if anyone has any ideas;

I have a customer who spends a lot of time updating the browse table
layouts (column orders) to his requirements BUT every time we deliver a
software update, all of the browses are reverted back to default and the
customer has lost his specific column order
Is there anyway of stopping this when we deliver a new update ?

Kindest regards

Dave



Many thanks Fabrice,

Dave