Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Report controls - dynamically creating 1998-05-05 -- Maarten Veenstra Every control must have a unique number (on reports, also remember to ensure that the
Target is set to the report). Initialize your number to a number higher than can be already
used in your report, say 100.
CurrControl = 100
Loop index# = 1 to 5
CurrControl += 1
Create(CurrControl,create:string,?PageHeader)
SetPosition(CurrControl,100,100+(50*Index#))
CurrControl{Prop:Text} = 'some text'
UNHIDE(CurrControl)
End
Today is December 3, 2024, 11:42 am This article has been viewed 35203 times.
|
|