B.Dauvissat
New Member
Hi,
I have to modify a screen. It is composed af a window and an OCX for three tabs.
On each tab, there is a different window, each containing fill-ins, combos, etc...
All datas displayed are from a database but not directly. In fact, the main window declares six new shared temp tables and each "tab window" uses the ones it needs.
Each temp table is exactly the same as the database table with a code field added. Each line is present twice. One with a code "N" (new) and one with a code "A" (ancien, old in french). It acts like the before and after tables but into a single one.
This is how the screen was given to me.
I am asked to use a dataset instead of checking manually changes between old and new lines.
But, I can't define a temp table like this :
It doesn't compile.
How can I modify my screens in the most simple way ?
Thanks for your help.
Benjamin
I have to modify a screen. It is composed af a window and an OCX for three tabs.
On each tab, there is a different window, each containing fill-ins, combos, etc...
All datas displayed are from a database but not directly. In fact, the main window declares six new shared temp tables and each "tab window" uses the ones it needs.
Each temp table is exactly the same as the database table with a code field added. Each line is present twice. One with a code "N" (new) and one with a code "A" (ancien, old in french). It acts like the before and after tables but into a single one.
This is how the screen was given to me.
I am asked to use a dataset instead of checking manually changes between old and new lines.
But, I can't define a temp table like this :
Code:
DEFINE NEW SHARED TEMP-TABLE myTable LIKE dbTable BEFORE-TABLE myTableBefore.
How can I modify my screens in the most simple way ?
Thanks for your help.
Benjamin