Search found 277 matches: elseif

Return to advanced search

Re: Preview and save to pdf at the same time

... * ? 'ACA GUARDAR PDF',oApp:lGuardarPDF,oApp:cImprimiendo IF oApp:lGuardarPDF IF oApp:cImprimiendo == 'RECIBO' cRutaPDF:=oApp:cRutaPDFRecibos ELSEIF oApp:cImprimiendo == 'FE' cRutaPDF:=oApp:cRutaPDFFE ELSEIF oApp:cImprimiendo == 'PRESUPUESTO' cRutaPDF:=oApp:cRutaPDFPresupuestos ENDIF MsgRun( ...
by puenteda
Mon Dec 31, 2018 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preview and save to pdf at the same time
Replies: 1
Views: 831

expandir tree em xbrowse

... BrwKeyAtUs(nKey, oBrw) If !oBrw:oTreeItem:lOpened .and. oBrw:oTreeItem:nLevel == 1 If nKey == VK_RETURN oBrw:oTreeItem:Open() oBrw:Refresh() Endif ElseIf oBrw:oTreeItem:lOpened .and. oBrw:oTreeItem:nLevel == 1 If nKey == VK_RETURN oBrw:oTreeItem:Close() oBrw:Refresh() Endif ElseIf oBrw:oTreeItem:nLevel ...
by Sistem
Thu Nov 29, 2018 7:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: expandir tree em xbrowse
Replies: 1
Views: 563

EMF - Enhanced meta file no se borran

... FWH 18 CLASS - printer.prg ************************* function PrintEnd() if oPrinter:lMeta if Empty( oPrinter:cFile ) oPrinter:Preview() elseif "pdf" $ Lower( oPrinter:cFile ) FWSavePreviewToPDF( oPrinter, If( Lower( cFileExt( oPrinter:cFile ) ) == "pdf", ; oPrinter:cFile, ...
by mterraz
Mon Aug 06, 2018 10:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: EMF - Enhanced meta file no se borran
Replies: 0
Views: 569

EASYREPORT and RTF

... lMemo, nEntry ) CLASS VRD Should I try with IF oItem:cType = "TEXT" .AND. oItem:nShow = 1 cText := ::EvalExpression( oItem:cText ) ELSEIF oItem:cType = "IMAGE" .AND. oItem:nShow = 1 //NEW ELSEIF oItem:cType = "RTF" .AND. oItem:nShow = 1 Endif Maybe someone has ...
by Otto
Wed May 23, 2018 10:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EASYREPORT and RTF
Replies: 4
Views: 742

Re: Tdolphin

Buenas lo solucione creando esa funcion Function LenVar( cVar,ctype,nLen ) If cType="C" cVar:=cVar+Space(nlen-Len(cVar)) ElseIf cType="D" If Valtype( cVar)="C" cVar:=ctod("") Endif Endif Return cVar cVar es el campo de la consulta ctype el tipo de ...
by CARLOS ATUNCAR
Mon May 14, 2018 2:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tdolphin
Replies: 13
Views: 3161

Re: Bug in TBitmap

Enrico,

In function FW_ReadImage() at FWH\source\function\imgtxtio.prg please modify this:

elseif ( UseGDI() .or. lGdipImage ) .and. cExt $ "PNG,JPG,JPEG,GIF,TIF,TIFF,EMF,WMF"

with

elseif ( UseGDI() .or. lGdipImage ) .and. cExt $ "PNG,JPG,JPEG,GIF,TIF,TIFF,EMF,WMF,PAK"
by Antonio Linares
Sat Mar 24, 2018 10:40 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Bug in TBitmap [Fixed]
Replies: 23
Views: 6374

ERROR XBROWSE -EDIT_LISTBOX

... ; ARRAY aConvenios LINES CELL cols{ 1,2,3,4 } OF oDlg for n := 1 to Len( oBrw:aCols ) oCol := oBrw:aCols[ n ] if n ==2 oCol:nEditType := EDIT_DATE Elseif n == 3 oCol:nEditType := EDIT_LISTBOX oBrw:aCols[3]:aEditListBound := {"EFECTIVO", "TARJETA"} oBrw:aCols[3]:aEditListTxt ...
by jbrita
Fri Feb 09, 2018 3:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE -EDIT_LISTBOX
Replies: 1
Views: 884

Re: connected to wrong forum (3, 6, 20, 23, 21)

... IF nForum = 1 // selected forum ---cFLink := "http://forums.fivetechsupport.com/viewtopic.php?f= 3 &t=" + cValToChar( nTopic ) ELSEIF nForum = 2 ---cFLink := "http://forums.fivetechsupport.com/viewtopic.php?f= 6 &t=" + cValToChar( nTopic ) ELSEIF nForum = 3 ---cFLink ...
by ukoenig
Fri Feb 02, 2018 12:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to connect to a forum by number (3, 6, 20, 23, 21)
Replies: 7
Views: 1144

Re: Crear una clase y datas a petición

... oObject, cSymbol ) LOCAL nSeq, hClass IF ! HB_ISOBJECT( oObject ) .OR. ! HB_ISSTRING( cSymbol ) __errRT_BASE( EG_ARG, 3101, , ProcName( 0 ) ) ELSEIF ! __objHasMsg( oObject, cSymbol ) .AND. ! __objHasMsg( oObject, "_" + cSymbol ) hClass := oObject:ClassH nSeq := __cls_IncData( hClass ...
by Antonio Linares
Wed Dec 20, 2017 11:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear una clase y datas a petición
Replies: 9
Views: 1185

Re: Disable Advantage error message dialogs

... lReturn := AdsGetLastError( @dwError, pacError, @wLen) IF lReturn != AE_SUCCESS ErrorBox{ , "Failed to get last error" }:Show() ELSEIF dwError != AE_SUCCESS ErrorBox{ , " Advantage error = " + pacError }:Show() ENDIF
by Massimo Linossi
Thu Dec 14, 2017 8:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disable Advantage error message dialogs
Replies: 12
Views: 1466

Problemas para enviar mails con TSMTP()

... you're connected to the internet and" + CRLF + ; "check the firewall settings if applicable", MSG_CAPTION ) esto ocurre cuando: Elseif ::cIPServer == "0.0.0.0" .or. Empty( GetHostByAddress( ::cIPServer ) ) (*) Ver nota al final. Es decir, si no se podía averiguar el ...
by FiveWiDi
Wed Dec 13, 2017 10:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas para enviar mails con TSMTP()
Replies: 0
Views: 578

Re: crop an Image

... Are there still other working export-formats supported ? //nExpformat := 0 "bmp" IF cExtension = ".jpg" nExpformat := 2 ELSEIF cExtension = ".png" nExpformat := 13 ELSEIF cExtension = ".tiff" nExpformat := 18 ELSEIF cExtension = ".ppm" nExpformat ...
by ukoenig
Tue Oct 31, 2017 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: crop an Image
Replies: 28
Views: 4248

Re: Press Shift on the column xBrowse

... function of delete record case nKey==VK_ESCAPE oDlg:End() OTHERWISE IF nKey >= 96 .AND. nKey <= 105 // here your function of search record ELSEIF HB_ISSTRING(CHR(nKey)) // here your function of search record ENDIF EndCase return nil
by Silvio.Falconi
Tue Sep 26, 2017 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Press Shift on the column xBrowse
Replies: 3
Views: 626

Re: string connection MS Access

After changes to elseif cExt $ "mdb,accdb,bds" cRDBMS := "MSACCESS" ? cExt it shows as as bds but error comes at line no. 108 of adofuncs.prg i.e. if '<?>' $ cConnStr .and. nDB > 0 You may test after change ...
by bpd2000
Wed Aug 23, 2017 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: string connection MS Access
Replies: 19
Views: 3679

Re: Para Armando Lagunas (TXBrowse)

Armando

IF cCveTab = 1 .or. cCveTab = 3
oBrw5:Destroy()
...
...
ELSEIF cCveTab = 2 .or. cCveTab = 4
oBrw5():Destroy()
...
...
ENDIF


Ya hice los cambios y me sigue mostrando 4 columnas en todos los casos
by juan_arroyo_t
Tue Jul 25, 2017 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Armando Lagunas (TXBrowse)
Replies: 6
Views: 1469
PreviousNext

Return to advanced search