<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>27 Jul 2015 09:38:49 Z</lastBuildDate><pubDate>23 Jul 2015 14:28:00 Z</pubDate><description>Hello,&#13;
&#13;
I want to acces the last line of a memory table without reading the whole table.&#13;
&#13;
Something like&#13;
&#13;
TableSelect(MyTable,taEnd)&#13;
nNewRowID = Col_RowID +1&#13;
&#13;
But TableSelect does not works with taEnd.&#13;
&#13;
I can solve it with&#13;
&#13;
for each row of MyTable ...&#13;
&#13;
But that is not an elegant solution.&#13;
&#13;
Thanks,&#13;
&#13;
Willy Hermans</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp</link><title>TableSelect(MyTable,taEnd)</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>windev</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53269/read.awp</comments><pubDate>27 Jul 2015 09:38:49 Z</pubDate><description>Just as an addition, this also works:&#13;
&#13;
[code:wl]&#13;
SendKey("^{END}" ,TABLE_YourTable )&#13;
[/code]&#13;
&#13;
HTH&#13;
Sebastian</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53269/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53269/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53236/read.awp</comments><pubDate>24 Jul 2015 10:58:00 Z</pubDate><description>Hello,&#13;
&#13;
Indeed this works also.&#13;
&#13;
Thanks,&#13;
&#13;
Willy.</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53236/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53236/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53217/read.awp</comments><pubDate>23 Jul 2015 15:16:00 Z</pubDate><description>if you need to select one line use tabeselectplus instead of tableselect</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53217/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53217/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53216/read.awp</comments><pubDate>23 Jul 2015 15:12:00 Z</pubDate><description>MyTable[Mytable..Occurrence].COL_RowID&#13;
&#13;
does the job&#13;
&#13;
tablecount(MyTable) counts the number of lines but it does not give th…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53216/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53216/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53215/read.awp</comments><pubDate>23 Jul 2015 14:49:00 Z</pubDate><description>Hi Bart&#13;
&#13;
try tableselect(TableName, TableCount(tablename))&#13;
&#13;
Best regards</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53215/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53215/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53214/read.awp</comments><pubDate>23 Jul 2015 14:48:00 Z</pubDate><description>Hello,&#13;
&#13;
You could use something like that :&#13;
&#13;
MyTable[Mytable..Occurrence].COL_RowID&#13;
&#13;
Regards,&#13;
Bart</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53214/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend-53214/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/53209-tableselectmytabletaend/read.awp">TableSelect(MyTable,taEnd)</source><title>Re: TableSelect(MyTable,taEnd)</title></item></channel></rss>
