Please try the following sample without and with manifest file. Without manifest file it works fine (the bar is filled) while with manifest file the bar is empty. Any workaround?
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oPrg
DEFINE DIALOG oDlg;
SIZE 800, 600
@ 1, 1 PROGRESS oPrg
ACTIVATE DIALOG oDlg;
ON INIT ( oPrg:SetRange( 0, 10 ),;
oPrg:SetPos( 10 ) );
CENTER
RETURN NILEMG