Thanks Barry, but I added the improvement a few months ago. You also asked me for a sample link, which I submitted as well. I hope I posted it correctly.
Originally Posted by Schlingmeier If that works, that would be a great thing. There are still good VFP programs that cannot easily be switched. This would make the transition much easier. Thank you! Is it rude to ask at this point whether there are already plans to improve the calendar function? That would be a great thing from my point of view. I'd rather have everything from one source than involve other third parties. From my point of view, the current calendar function in Lianja has come a long way, only a few small adjustments are missing. Hi Olaf, If you submit an enhancement request ticket on Lianja.com I will look into it for you. It will not be in Lianja 7.0 as we expect to release that soon.
If that works, that would be a great thing. There are still good VFP programs that cannot easily be switched. This would make the transition much easier. Thank you! Is it rude to ask at this point whether there are already plans to improve the calendar function? That would be a great thing from my point of view. I'd rather have everything from one source than involve other third parties. From my point of view, the current calendar function in Lianja has come a long way, only a few small adjustments are missing.
This is great now we can have the freedom to build a lot of stand alone exe's.
I will add some more examples to view data: Free VFP dbf: Code: create virtualtable vt_cus connstr "oledb:Provider=VFPOLEDB;Mode=Share Deny None;Data Source=C:\myfreedbf\customers.dbf;Exclusive=No" as select * from customers use vt_cus browse MSSQL: Code: create virtualtable vt_por connstr "oledb:Provider=MSOLEDBSQL; Server=MYPC\SQLEXPRESS; Database=EVIO;Trusted_Connection=yes;" as select * from poruke use vt_por browse
create virtualtable vt_cus connstr "oledb:Provider=VFPOLEDB;Mode=Share Deny None;Data Source=C:\myfreedbf\customers.dbf;Exclusive=No" as select * from customers use vt_cus browse
create virtualtable vt_por connstr "oledb:Provider=MSOLEDBSQL; Server=MYPC\SQLEXPRESS; Database=EVIO;Trusted_Connection=yes;" as select * from poruke use vt_por browse
Fantastic, Barry. This simplifies complex programming in the right way.