Search found 12 matches: ctext2

Return to advanced search

Re: Printer class question

... LASTROW nLast oPrn:Box( nRow, nCol, nLast + 0.5, nCol + nWidth, nil, CLR_HGRAY, nil, "CM" ) @ nRow+0.2 , nCol PRINT TO oPrn TEXT cText2 SIZE nWidth - 1,10 CM FONT oFont2 ALIGN "TC" //LASTROW nLast @ nRow , nCol PRINT TO oPrn TEXT cText SIZE nWidth - 1,10 CM FONT oFont ...
by Silvio.Falconi
Tue Oct 20, 2020 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printer class question - RESOLVED
Replies: 41
Views: 3346

Problem TfolderEx with SAY from resource

... FUNCTION F_PAGE2( oFld1 ) LOCAL oSay1, oGet1, cText1 := "Testing GET-colors" LOCAL cText2 := "Testing SAY - background-color" @ 30, 20 GET oGet1 VAR cText1 SIZE 120, 15 OF oFld1:aDialogs[ 2 ] PIXEL FONT oFont1 UPDATE oGet1:SetColor( ...
by ukoenig
Thu May 28, 2015 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem TfolderEx with SAY from resource
Replies: 1
Views: 439

Re: The numeric ocurrence of the token inside string

Avista, cText1 := "this is a sample text"cText2 := "this  is  a  sample  text" MsgInfo( AScan( hb_ATokens( cText1, " " ), { | cToken | cToken == "sample" } ) ) -> Return 4 MsgInfo( AScan( hb_ATokens( cText2, ...
by StefanHaupt
Thu Feb 16, 2012 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The numeric ocurrence of the token inside string
Replies: 12
Views: 2544

Re: The numeric ocurrence of the token inside string

... work good. It return good value just in case if there is ONLY one space between all tokens Example: cText1 := "this is a sample text"cText2 := "this  is  a  sample  text" MsgInfo( AScan( hb_ATokens( cText1, " " ), { | cToken | cToken == "sample" ...
by avista
Wed Feb 15, 2012 7:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: The numeric ocurrence of the token inside string
Replies: 12
Views: 2544

Re: Antonio, CENTER for msg...

... Headline oFont2, ; // Font Text .T., ; // Message centered nTextT, ; // Text-Top nTextL, ; // Text-Left cTitle, ; // Title cText1, ; // Text 1 cText2, ; // Text 2 cText3, ; // Text 3 cText4, ; // Text 4 cText5, ; // Text 5 nTColorF, ; // 1. Gradient-color nTColorB, ; // 2. Gradient-color nTGradPos, ...
by ukoenig
Wed Jul 06, 2011 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio, CENTER for msg...
Replies: 2
Views: 603

New Arrangement of MSGWAIT- ALERT- and YESNO-function

... ) , ; 3000, 8388608, 10, 50, 50 ) ) Function : MSG_INFO( ; oBrush, ; // Brush oFont, ; // Font cTitle, ; // MsgTitle cText1, ; // MsgText 1 cText2, ; // MsgText 2 cText3, ; // MsgText 3 nIntervall, ; // Timer nTxtColor, ; // Textcolor nSpace, ; // Space between Text nMsgTop, ; // MsgTop ...
by ukoenig
Wed Apr 27, 2011 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Arrangement of MSGWAIT- ALERT- and YESNO-function
Replies: 8
Views: 3669

Re: It is possible to create a dbf table with two...

hiii...

but then how save the record ?

replace ctext to samename
replace ctext1to samename
replace ctext2 to samename

I think you'll save on the same field
by Silvio
Wed Mar 09, 2011 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: It is possible to create a dbf table with two...
Replies: 15
Views: 2425

Re: Best way to print Invoice ?

... the footer:   //Print order footer               cText1 := "Fortsetzung Seite: " + ALLTRIM(str(nSeite))               cText2 := "Zwischensumme " +  ALLTRIM(transform( rgsumm ,"999,999.99")) //text Fortsetzungsblatt               PRINTAREA ...
by Otto
Tue May 19, 2009 10:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Best way to print Invoice ?
Replies: 36
Views: 8886

Re: Creating a LIB or DLL

Dave,

You missed two "*" here:

HB_EXPORT char * PASCAL _export HBDLLSTRING4( char * cProcName, char * cText1, char * cText2 )
by Antonio Linares
Thu Apr 09, 2009 10:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 34895

Re: Creating a LIB or DLL

Dave,

Have you declared HBDLLENTRY3() this way ?

DLL FUNCTION HBDLLENTRY3( cProc AS LPSTR, cText1 AS LPSTR, cText2 AS LPSTR ) AS LPSTR PASCAL LIB "dll2test.dll"
by Antonio Linares
Thu Apr 09, 2009 7:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 34895

Test

Antonio, i deleted for control all BMP-entrys a return-test in the original directory was ok. [code] The first lines of the BAT-file : // --------------------------------- if A%1 == A GOTO :SINTAX if NOT EXIST %1.prg GOTO :NOEXIST ECHO Compiling... set hdir=d:\harbour set hdirc=%hdir%\mingw32\harbou...
by ukoenig
Sat Sep 20, 2008 2:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 8.09 for MinGW - beta 1 ready
Replies: 24
Views: 5101

... to the next control forward. Regards, Roberto Parisi #include "FWCE.ch" function Main() local oWnd, cText := Space( 50 ), cText1 := Space( 50 ), cText2 := Space( 50 ) DEFINE WINDOW oWnd TITLE "Test" @ 0, 0 GET cText SIZE 200, 20 pixel @ 30, 2 GET cText1 SIZE 200, 20 pixel @ 60, 2 GET cText2 SIZE ...
by Roberto Parisi
Thu Jan 31, 2008 10:05 am
 
Forum: FiveWin for Pocket PC
Topic: Disabling/removing menu
Replies: 19
Views: 3409

Return to advanced search