PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → [WD25] edit fields and mandatory input
[WD25] edit fields and mandatory input
Iniciado por VEGEboss, mai., 21 2020 5:33 PM - 1 resposta
Membro registado
88 mensagems
Popularité : +2 (2 votes)
Publicado em maio, 21 2020 - 5:33 PM
Very easy for very experts, I think...

is possible to change the color and/or background of the fields with the "Mandatory input" flag active?

obviously I'm looking for the most dynamically fast way… change it manually it's easy

thanks in advance
Publicado em maio, 24 2020 - 5:24 AM
try to use groups after use an enumcontrol with this function you get the name of the control and after with a while you check every single control if one comes empty you change the background like this:

FLAG is boolean = true
sControl is string = enumcontrol(GR_REQ,i,byTapOrder)
while sControl <> ""
IF NoSpace({sControl,indControl},sscOutside) _IN_ ("",0,Null) THEN
{sControl,indControl}..BrushColor = PastelRed
FLAG = FALSE
END
i++
sControl = enumcontrol(GR_REQ,i,byTapOrder)
END

Result FLAG