Dear Mr Rao
Perfect!
Tks!
email to receive: joaocarlos@vinhesoft.com
Search found 13 matches
- Thu Aug 29, 2024 12:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
- Wed Aug 28, 2024 3:15 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
Dear Antonio
FHW_1912
FWH_2407
DEFINE WINDOW --> ok
DEFINE DIALOG --> not working
FHW_1912
FWH_2407
DEFINE WINDOW --> ok
DEFINE DIALOG --> not working
- Sat Aug 24, 2024 12:03 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
Working! with DEFINE WINDOW
function Main()
local oWnd, oTest1, oTest2
DEFINE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test1' PIXEL
? oTest1:nWidth,oTest1:nHeight // 28,16
@ 087,376 SAY oTest2 PROMPT 'Test2' PIXEL SIZE 015,007
? oTest2:nWidth,oTest2:nHeight // 15,07
oTest1:SetText ...
function Main()
local oWnd, oTest1, oTest2
DEFINE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test1' PIXEL
? oTest1:nWidth,oTest1:nHeight // 28,16
@ 087,376 SAY oTest2 PROMPT 'Test2' PIXEL SIZE 015,007
? oTest2:nWidth,oTest2:nHeight // 15,07
oTest1:SetText ...
- Fri Aug 23, 2024 5:21 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
Yes!
#xcommand @ <nRow>, <nCol> SAY [ <oSay> <label: PROMPT,VAR > ] <cText> ;
[ <pict: PICT, PICTURE> <cPict> ] ;
[ <dlg: OF,WINDOW,DIALOG > <oWnd> ] ;
[ FONT <oFont> ] ;
[ <lCenter: CENTERED, CENTER > ] ;
[ <lRight: RIGHT > ] ;
[ <lBorder: BORDER > [CLR <nClrBorder>] ] ;
[ [<relpix ...
#xcommand @ <nRow>, <nCol> SAY [ <oSay> <label: PROMPT,VAR > ] <cText> ;
[ <pict: PICT, PICTURE> <cPict> ] ;
[ <dlg: OF,WINDOW,DIALOG > <oWnd> ] ;
[ FONT <oFont> ] ;
[ <lCenter: CENTERED, CENTER > ] ;
[ <lRight: RIGHT > ] ;
[ <lBorder: BORDER > [CLR <nClrBorder>] ] ;
[ [<relpix ...
- Fri Aug 23, 2024 3:55 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
line 226: @ 010,010 SAY 'Código' FONT oF01_ SIZE 090,010 PIXEL TRANSPARENT
ppo: TSay():New( 010, 010, {|| "Código"},,, oF01_, .F., .F., .F., .T.,,, 090, 010, .F., .F., .F., .F., .F., .F., .T.,,, .F.,,, ) ;:SetSize( 090, 010 )
E:\Sistemas\WinADMpro>harbour admp0002 -p -n
Harbour 3.2.0dev ...
ppo: TSay():New( 010, 010, {|| "Código"},,, oF01_, .F., .F., .F., .T.,,, 090, 010, .F., .F., .F., .F., .F., .F., .T.,,, .F.,,, ) ;:SetSize( 090, 010 )
E:\Sistemas\WinADMpro>harbour admp0002 -p -n
Harbour 3.2.0dev ...
- Thu Aug 22, 2024 8:06 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
static aFwStack := {}
static _fwhtmp_ := nil
#line 3 "test.prg"
function Main
oWnd := TWindow():New(,,,,,,,,,,,,,,,, !.F., !.F., !.F., !.F., .F.,, "oWnd",,,, )
oTest1 := TSay():New( 057, 376, {|| "Test"},,,, .F., .F., .F., .T.,,,,, .F., .F., .F., .F., .F., .F., .F., "oTest1",, .F.,,, ) ; oTest1 ...
static _fwhtmp_ := nil
#line 3 "test.prg"
function Main
oWnd := TWindow():New(,,,,,,,,,,,,,,,, !.F., !.F., !.F., !.F., .F.,, "oWnd",,,, )
oTest1 := TSay():New( 057, 376, {|| "Test"},,,, .F., .F., .F., .T.,,,,, .F., .F., .F., .F., .F., .F., .F., "oTest1",, .F.,,, ) ; oTest1 ...
- Thu Aug 22, 2024 5:37 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
ADMP0002.PRG(226) Error E0061 Implicit send operator with no WITH OBJECT in sight
- Thu Aug 22, 2024 4:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
Dear Antonio
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
SIZE 015,007 -->> does not assume the informed standard? when we inform the pattern, oSay should follow it.
I have to use it like this ?
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007 ; oTest2:SetSize( 15, 7 )
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
SIZE 015,007 -->> does not assume the informed standard? when we inform the pattern, oSay should follow it.
I have to use it like this ?
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007 ; oTest2:SetSize( 15, 7 )
- Wed Aug 21, 2024 1:15 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
DEFINE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test' PIXEL
? oTest1:nHeight --> 16
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
? oTest2:nHeight --> 11
here it should be 7 ?
ACTIVATE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test' PIXEL
? oTest1:nHeight --> 16
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
? oTest2:nHeight --> 11
here it should be 7 ?
ACTIVATE WINDOW oWnd
- Wed Aug 21, 2024 1:03 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
Re: FWH_2407 oSay does not assume nHeight
DEFINE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test' PIXEL
? oTest1:nHeight --> 22
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
? oTest2:nHeight --> 22
ACTIVATE WINDOW oWnd
@ 057,376 SAY oTest1 PROMPT 'Test' PIXEL
? oTest1:nHeight --> 22
@ 057,376 SAY oTest2 PROMPT 'Test' PIXEL SIZE 015,007
? oTest2:nHeight --> 22
ACTIVATE WINDOW oWnd
- Wed Aug 21, 2024 12:09 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH_2407 oSay does not assume nHeight
- Replies: 32
- Views: 6207
FWH_2407 oSay does not assume nHeight
good morning
via command does not assume nHeight
@ 057,376 SAY oTest PROMPT 'Test' PIXEL
? oTest:nHeight --> 22
@ 057,376 SAY oTest PROMPT 'Test' PIXEL SIZE 015,007
? oTest:nHeight --> 22
------------------------------------
via property yes
oTest:nHeight := 7
? oTest:nHeight --> 7
via command does not assume nHeight
@ 057,376 SAY oTest PROMPT 'Test' PIXEL
? oTest:nHeight --> 22
@ 057,376 SAY oTest PROMPT 'Test' PIXEL SIZE 015,007
? oTest:nHeight --> 22
------------------------------------
via property yes
oTest:nHeight := 7
? oTest:nHeight --> 7
- Mon Aug 19, 2024 5:48 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error FWH_2407 DrXlsX32.lib
- Replies: 5
- Views: 1554
Re: Error FWH_2407 DrXlsX32.lib
João
Obrigado por responder.
deu certo assim, colocando no prg principal MAIN
#pragma BEGINDUMP
int _streams;
#pragma ENDDUMP
vlw
Obrigado por responder.
deu certo assim, colocando no prg principal MAIN
#pragma BEGINDUMP
int _streams;
#pragma ENDDUMP
vlw
- Thu Aug 15, 2024 11:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error FWH_2407 DrXlsX32.lib
- Replies: 5
- Views: 1554
Error FWH_2407 DrXlsX32.lib
good morning,
Error: Unresolved external '__streams' referenced from C:\DEVFW\FWH_2407\LIB\DRXLSX32_BCC.LIB|drawing
Error: Unresolved external '__streams' referenced from C:\DEVFW\FWH_2407\LIB\DRXLSX32_BCC.LIB|drawing