Search found 7427 matches: local

Return to advanced search

Re: Asignar impresora por terminal?

Armando, para poder hacer esto, si o si debes tener algo en la terminal en modo local, o bien, identificar cada terminal por, por ejemplo, su IP o nombre de equipo en una base de datos centralizada. La idea de SysCtrol es muy buena, puedes usar un archivo INI o ...
by cmsoft
Mon Apr 22, 2024 8:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignar impresora por terminal?
Replies: 9
Views: 122

Re: Asignar impresora por terminal?

las defino en un .ini en el disco duro local y ya :D cToPrinterTicket := LeeIniFile("CONFIG", "PRINTER_TICKET", "C:\CONFIG\PRINTERS.INI" )cToPrinterLaser  := LeeIniFile("CONFIG", "PRINTER_LAER", ...
by sysctrl2
Mon Apr 22, 2024 3:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignar impresora por terminal?
Replies: 9
Views: 122

Re: Brush

... #include "FiveWin.ch" *-------------------------------------------------------------------------------* Function Main() Local oDlg, oImagem Local cImagem := "..\bitmaps\pngs\2.png" DEFINE DIALOG oDlg SIZE 800, 600 ; STYLE nOr( WS_CHILD, WS_POPUP ) ; COLOR CLR_BLACK, ...
by oliveiros junior
Fri Apr 19, 2024 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brush
Replies: 9
Views: 151

Re: ADS with 64bit FWH Apps

... of this version: SET HB_DIR_ADS=\Ace\101049 this set to compile build libs with ace 10, this way like reinaldo says we can access to 10 and above local and server. maybe reinaldo can help us... thanks
by NWKL
Mon Apr 15, 2024 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2289

Re: ADS with 64bit FWH Apps

Enrico, are you using ads 10 on client side for build xharbour and harbour ? i guess is this the right, because using 10 version in client side we can access 10 or newer version local/server.

thanks
by NWKL
Mon Apr 15, 2024 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2289

Re: New txbrowse

... lRegistered AS LOGICAL DATA oFont_6 ..... que cuando la compilo da este .ppo: _HB_CLASS TFactur_1 ; function TFactur_1 ( ... ) ; STATIC s_oClass ; LOCAL nScope, oClass, oInstance ; IF s_oClass == NIL .AND. __clsLockDef( @s_oClass ) ; BEGIN SEQUENCE ; nScope := 1 ; ( ( nScope ) ) ; oClass := iif( ...
by FiveWiDi
Sat Apr 13, 2024 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New txbrowse
Replies: 6
Views: 328

AI images recognition from FWH64

Next FWH64 build includes built in support for llama.cpp (support for local AI LLMs) and for llava (images recognition)

Image
Image
by Antonio Linares
Mon Apr 08, 2024 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AI images recognition from FWH64
Replies: 2
Views: 186

Error Fwh 24.02 con XBROWSE

... // Barra de opciones //------------------------------------------------------------------------------ Static Procedure BrwbtnBar( oBrw ) local oBar, oBtn, oBold DEFINE BUTTONBAR oBar OF oBrw:oWnd SIZE 75,75 3D 2015 HEIGHT 96 oBold := oBar:oFont:Bold() oBar:oGrpFont := oBold oBar:bClrGrad ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 95

Re: Preciosa canción escrita por la IA y Rafa Carmona

To All

Absolutely beautiful Music !!! is this a local group ? generated by AI ?? just curious

Rick Lipkin
by Rick Lipkin
Sat Apr 06, 2024 2:27 pm
 
Forum: Off Topic / Otros temas
Topic: Preciosa canción escrita por la IA y Rafa Carmona
Replies: 7
Views: 4150

Re: ADS with 64bit FWH Apps

I don’t think those are needed. The last ADS release was 2015. Remote is useful but I find local is slower than the native rddcdx. I distribute the last .dll files they produced for 32 and 64 bit. Those are usually good with versions 10-12, except for 64 bit on 10 & ...
by TimStone
Thu Apr 04, 2024 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS with 64bit FWH Apps
Replies: 24
Views: 2289

Re: Problem with valid email refresh btnbmp

PERHAPS ??

function validaEmail(cEmail)
LOCAL pCompiled := hb_regexComp("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$")

LOCAL cRet := .t.

IF HB_RegExMatch( pCompiled, alltrim(cEmail), .F. )


cRet := .f.
end
return cRet
by Silvio.Falconi
Wed Apr 03, 2024 10:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with valid email refresh btnbmp- RESOLVED
Replies: 25
Views: 2370

AYUDA Validacion LRC para datafono

... for(i = 1; i < pi_iLongitud; i++ ) { vl_iLRC = vl_iLRC ^ pi_sTrama[i]; } return(vl_iLRC); }; // SEGUN FORO DE FIVEWIN function LRC( cText ) local nCheckSum := 0 local n for n = 1 to Len( cText ) nCheckSum = nXor( nCheckSum, Asc( SubStr( cText, n, 1 ) ) ) next return (nCheckSum) // valores ...
by russimicro
Sat Mar 30, 2024 6:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Validacion LRC para datafono
Replies: 2
Views: 484

Re: Problem with datepick

nageswaragunupudi wrote:
Code: Select all  Expand view
LOCAL dDate := ddatacambio:GetDate()
 



Here is the mistake.
"ddatacambio" is a date value and date value can not have any method.


opps - corrected
STATIC FUNCTION DoSwitch( ddatacambio, oBtnGetExchange,aGet )
LOCAL dDate := aget[1]:GetDate()
by Silvio.Falconi
Tue Mar 26, 2024 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with datepick - Resolved -
Replies: 2
Views: 525

Re: Another for Btnbmp

... the drawing yourself. You can do this by drawing a rectangle using functions like WndBoxClr, where you can specify the brush or pen color. Otto local hPen, oCli := ::GetCliRect() hPen = CreatePen( PS_SOLID, 1, nRGB( 255, 0, 0 ) ) WndBoxClr( ::GetDC(), 1, 1, oCli:nBottom - 2, oCli:nRight - 2, ...
by Otto
Tue Mar 26, 2024 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4942

Re: Hide/show search system on a dialog - Resolved

solved https://i.postimg.cc/x1P2G9QM/gg.gif Function Hide_Ctrls(oBrw,oGet,oSay,lSearchBar,aBtn,oBar) local oBtn,n If lSearchBar oSay[1]:show() oSay[2]:show() oGet:show() oBrw:oSortCbx:show() oBrw:nTop:=32 oBrw:nHeight:= oBar:ntop-40 else oSay[1]:hide() oSay[2]:hide() ...
by Silvio.Falconi
Mon Mar 25, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 1186
Next

Return to advanced search