How to align the display records in the polygrid?
Posted: Tue May 28, 2024 4:08 pm
hello everyone,
I was able to get the records from the database using xamp mysql and display it to the polygrid.
unfortunately the records displayed scattered in my polygrid. please help me how to arrange
here's my code
here is the

it doesn't aligned in each item.
I was able to get the records from the database using xamp mysql and display it to the polygrid.
unfortunately the records displayed scattered in my polygrid. please help me how to arrange
here's my code
Code: Select all
function SQLStatement
global gConnectionID,gPrjID
local tSQLStatement, tlist
put "SELECT cpsn, vps FROM tblartistproj WHERE ID = '"& gPrjID &"' " into tSQLStatement
put revDataFromQuery(tab, return, gConnectionID, tSQLStatement) into tlist
end SQLStatement
command SQLQueryDisplay
local tlist
put SQLStatement() into tlist
set the pgText of widget "PgDetails" of stack "ViewArtistOutputSheet" to tlist
end SQLQueryDisplay

it doesn't aligned in each item.