Formato para el código (Beautifier)
Publicado por sthif (63 intervenciones) el 29/01/2009 23:01:55
hola, alguno de tiene conocimiento de alguna herramienta que permita dar formato al código de PowerBuilder?
Por Ejemplo:
-----Antes del formato
IF X=Y Then
Beep(2)
elseif X=Z then
Show (lb_parts); lb_parts.SetState(5,TRUE)
elseif X=" " then
Show (lb_choose)
Else
Hide(cb_empty)
Show(cb_full)
END IF
-----Despues de formato
IF X=Y THEN
Beep(2)
ELSEIF X=Z THEN
Show (lb_parts); lb_parts.SetState(5,TRUE)
ELSEIF X=" " THEN
Show (lb_choose)
ELSE
Hide(cb_empty)
Show(cb_full)
END IF
Por Ejemplo:
-----Antes del formato
IF X=Y Then
Beep(2)
elseif X=Z then
Show (lb_parts); lb_parts.SetState(5,TRUE)
elseif X=" " then
Show (lb_choose)
Else
Hide(cb_empty)
Show(cb_full)
END IF
-----Despues de formato
IF X=Y THEN
Beep(2)
ELSEIF X=Z THEN
Show (lb_parts); lb_parts.SetState(5,TRUE)
ELSEIF X=" " THEN
Show (lb_choose)
ELSE
Hide(cb_empty)
Show(cb_full)
END IF
Valora esta pregunta


0