Hi Barry,
is it expected that this - or a newer version of Lianja 8 - will appear among the downloadable versions?
Type: Posts; User: strato
Hi Barry,
is it expected that this - or a newer version of Lianja 8 - will appear among the downloadable versions?
I need solutions in which a function - in addition to its returned value - also returns the parameter values.
In this case, in the current parameter list, we must put an @ sign in front of the name...
thanks Barry!
is there a difference - in terms of copying and later use - between var=array() and var = object()?
1: "UI object?" - NO
2: "A dynamic array?" - may be (type("var") -> "O")
3: "An object created with DEFINE CLASS and createObject()?" - may be (type("var") -> "O")
4: "An object that has methods?"...
what is the correct solution to copy (duplicate) an object in Lianja? Is there a function or statement similar to acopy() for this? if not, what options are there?
my problem is much simpler:
the relationship "disappears" after refresh (or sync)
close tables
close databases
open database southwind
if empty(tableinfo("vt_order_details"))
create...
I use parameterized VTs in my applications with indexes and relations. I would need something similar to VFP's requery() statement that retains the set index and relational relationships. So far,...
hi Josip,
did you try to click multiple times to buttons?
and what happens in this case?
my_row = fx_row()
procedure fx_row
my_grid = Lianja.get("page.section").grid
return my_grid.activerow
same:
allowed instead of the following command:
Lianja.get("page.section").filter = m.my_filter
to write this?
my_sec = Lianja.get("page.section")
my_sec.filter = m.my_filter
and can I use it...
thanks Barry,
still migrating ... it is an enterprise system VFP, LAN + desktop apps. There are VTs (about 250) in the database used by users and the data is on an SQL server. In addition to the VTs...
it is not a winning solution either, it causes a lot of confusion. If I change the original datadir (to <new_path>, the _VT.dbf table will be created in still the original datadir (C:\lianja\data),...
this works (almost fine) .dbd file is created in the <database> directory, the .dbf file is created in the <%%home%%> directory
from consol, but with an open database (of course).
I can't find a command like the one in VFP: Set database to.
In addition, only one database can be open at a time, but closing it will also...
the VT definition tables: _ <vt_name> .dbf and _ <vt_name> .dbd (unfortunately) are placed in the /data:/<database>/ folder.
It is true that the Data workspace does not show this VT. This table does...
how is it possible to create a temporary virtual table (so that it is not included in the open database similar to the
create temporary table command )?
if more than one of the modules in the list of the require (..) parameter contains the same procedure name as in the example:
public mylib = require (“mylib1”, “mylib2”) //, “mylib3”… etc
...
Thank You Barry!
and Merry Christmas for all!
Hi Hank,
as you can see, my question is not about the UI Framework and not about how the amembers() function works. I asked in Lianja how to find out what methods an object has?
There may be an...
sorry Hank, can you help me? What is the answer in the doc? How do I know the names of existing methods in an object?
is it possible that the scope of _sqlvalues has changed? It used to be a public array, now it's local?
does this affect the _tally variable?
hi Hank
"use case" is: I have a relatively large system in VFP that works to examine the structure of an object (at any depth) and works according to what methods an object has.
I know that all...
here is the code:
define class myForm as custom
alias = ""
szimbol = ""
procedure setup
alias = "my_alias"
endproc
procedure main
szimbol = "my_szimboL"
How to find out in Lianja what properties / methods of an object exist?
In VFP, the amembers() function returns a 2-dimensional array, with the names of properties / methods in the first column and...
hi Josip,
thanks for Your answer
yes, that's exactly what I want, but since the code is already written in VFP, I was hoping that there was code that would work in Lianja as well, without having to...