Objects does hidden despite has the Hidden attribute as YES...

rrojo7229

Member
Objects does not start as hidden despite they have the Hidden attribute as YES...

Dear fellows,

I got this weird problem, the source code runs very fine in the Appbuilder but when run using "Prowin32.exe" some Fill-In's and Button's does not obbey the Hidden Attribute even if I set up in the Object Properties Hiddden as Checked.

Another weird thing is: It does not do anything after the include {src/adm2/windowmn.i} into MAIN BLOCK, BUT when I run in the Appbuilder It does. Why?

:Main

MESSAGE "before" VIEW-AS ALERT-BOX.

{src/adm2/windowmn.i}

MESSAGE "AFTER " VIEW-AS ALERT-BOX.

ASSIGN logmessages:SENSITIVE = NO
f-portno:SENSITIVE = NO

logmessages:HIDDEN = YES
f-portno:HIDDEN = YES.

I mean in the Appbuilder the Message "After" and the Assign command it is executed but when I run through "prowin32.exe" it is not executed. Why?

I checked the Propath and the INI File and it looks ok.

Progress Version 9.1E Patch 2 / Windows XP and Windows 2000.

I will appreciate any help,
Thanks indeed,

Kind Regards,
Ricardo Olguin
 
Have you tried HIDDEN = true and VISIBLE = false?

Whenever I make something visible I use HIDDEN = FALSE, VISIBLE = TRUE and whenever I make something hidden I use HIDDEN = TRUE, VISIBLE = FALSE just to make sure.
 
Back
Top