Search found 31 matches: nand

Return to advanced search

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6332

Inteligencia artificial - Clase TPerceptron

... ideas básicas de la Inteligencia Artificial En este ejemplo creamos un objeto TPerceptron y le hacemos aprender el comportamiento de la función nAnd(), a continuación comprobamos los resultados y parecen correctos. Acto seguido, creamos un nuevo objeto TPerceptron y le enseñamos el comportamiento ...
by Antonio Linares
Wed Apr 19, 2017 8:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inteligencia artificial - Clase TPerceptron
Replies: 33
Views: 12805

Artificial intelligence - Class TPerceptron

... the very basics of the Artificial Intelligence In this example we create a TPerceptron object and we make it learn the behavior of the function nAnd(), then we check the results and they seem to be right. Then we create a new TPerceptron object and we make it learn the behavior of the function ...
by Antonio Linares
Wed Apr 19, 2017 8:34 am
 
Forum: AI Introduction (Harbour code and samples)
Topic: Artificial intelligence - Class TPerceptron
Replies: 29
Views: 7873

Re: Build with Visual Studio 2015 errors

Antonio, creo, pero no lo he usado nunca, que has de tener instalado el OpenSSl en C:\OpenSSl...
He encontrado esto
¿ http://www.openssl.org/source/openssl-0.9.8h.tar.gz ?
Pero no se si es la version a utilizar

http://p-nand-q.com/programming/windows ... _2013.html
by cnavarro
Wed Apr 08, 2015 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Build with Visual Studio 2015 errors
Replies: 33
Views: 7888

Re: Compilar bit.c Ayuda

Ruben, Si lo que quieres es comprobar un determinado bit FWH tiene lAnd( nValor1, nValor2 ) --> lOnOff y tambien nAnd( nValor1, nValor2 ) --> nValor http://wiki.fivetechsoft.com/doku.php?id=fivewin_funcion_land http://wiki.fivetechsoft.com/doku.php?id=fivewin_funcion_nand ...
by Antonio Linares
Wed Dec 03, 2014 10:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Compilar bit.c Ayuda
Replies: 1
Views: 261

Re: "Snap" for Clipper

...    WINDOW.PRG     1557 NALIGN                  WINDOW.PRG      793  2368  2384  2387 NAME                    WINDOW.PRG     1886G 2988  2990  3325 NAND()                 (function  in ?)    WINDOW.PRG     3967  3986  3994  3997 NAPPNAME                WINDOW.PRG      539  1447  1456G 1461 NASCII ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6699

Re: bug in FW 13.04 combobox

Mulyadi,

Please notice that I proposed nAnd() not lAnd():

if nAnd( ::nStyle, CBS_DROPDOWNLIST ) == CBS_DROPDOWN

You have used lAnd() thats why you get the error, comparing a logical value and a number
by Antonio Linares
Fri May 10, 2013 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug in FW 13.04 combobox
Replies: 82
Views: 29086

Re: bug in FW 13.04 combobox

With this change in line 311 in Class TComboBox: Instead of: if lAnd( ::nStyle, CBS_DROPDOWN ) use: if nAnd( ::nStyle, CBS_DROPDOWNLIST ) == CBS_DROPDOWN // Not for CBS_DROPDOWNLIST Lucas examples works fine and FWH/samples/combos.prg also works fine, and it does not break ...
by Antonio Linares
Tue May 07, 2013 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bug in FW 13.04 combobox
Replies: 82
Views: 29086

Re: Tablet and form style for Windows 8 (desktop ver.)

Antonio,

There is an error here:

(nand(nHIWORD(wParam,flag)) == (flag))

it should be:

( nand( nHIWORD( wParam ),flag ) == ( flag ) )
by Antonio Linares
Tue Apr 30, 2013 7:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tablet and form style for Windows 8 (desktop ver.)
Replies: 80
Views: 24259

Re: BUG: COMBOBOX with style CBS_DROPDOWN

Günther, See these defines: #define CBS_DROPDOWN 0x0002 #define CBS_DROPDOWNLIST 0x0003 So you could use: nAnd( GetWindowLong( ::hWnd, GWL_STYLE ), CBS_DROPDOWNLIST ) == CBS_DROPDOWNLIST Don't use CBS_DROPDOWN in the above line, because CBS_DROPDOWN is contained in CBS_DROPDOWNLIST: ...
by Antonio Linares
Sun Apr 14, 2013 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BUG: COMBOBOX with style CBS_DROPDOWN
Replies: 45
Views: 9270

Re: Busqueda Tipo Google

...     END         end      next      SKIP   end                      // MsgInfo( hWords[ cWord1 ] )   // MsgInfo( hWords[ cWord2 ] )   MsgInfo( nAnd( hWords[ cWord1 ], hWords[ cWord2 ] ) Basicamente lo que se hace es guardar un número por palabra, en el que se anota a ...
by Antonio Linares
Mon Sep 19, 2011 11:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda Tipo Google
Replies: 2
Views: 618

Re: Se necesita ayuda en el wiki !

... MsgInfo() MsgList() MsgLogo() MsgMeter() MsgNoYes() MsgPaint() MsgRetryCancel() MsgRun() MsgSound() MsgStop() MsgToolBar() MsgWait() MsgYesNo() nAnd() nArgC() nBmpHeight() nBmpWidth() nColorToN() nDbl2Flt() nDDEGetErrorString() NDdeShareSetInfo() nDlgBox() NextDlgTabItem() nExtMem() nFileCrc() ...
by Cgallegoa
Sun Feb 21, 2010 10:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5502

Re: How to insert a TAB in TMultiGet using the keyboard

For the moment I'm using this: Method KeyChar() if nKey == 63 .and. nAnd( nFlags / 65536, 255 ) == 57 ::Replace( CHR( 9 ) ) if ::bChange != nil Eval( ::bChange, nKey, nFlags, Self ) endif return 0 endif It allows me to use ALT-9 to insert a TAB. The TAB key ...
by Enrico Maria Giordano
Tue Jan 05, 2010 10:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to insert a TAB in TMultiGet using the keyboard
Replies: 4
Views: 647

Re: Control a paradas de tabulador

... fácil porque lo defino con el Pelles C; pero mediante codigo no logro hacerlo. Si es en DIALOG, después de definir el control say: oSay:nStyle := nAnd( oSay:nStyle, nNot( WS_TABSTOP ) ) Si es en WINDOW: #define GWL_STYLE -16 SetWindowLong( oSay:hWnd, GWL_STYLE, nAnd( GetWindowLong( oSay:hWnd, ...
by mmercado
Fri Nov 20, 2009 1:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control a paradas de tabulador
Replies: 11
Views: 2062

Eliminar archivos con la API de Windows ShFile()

... #define FOF_NOCONFIRMATION 0x0010 y el programa hace esto: FUNCTION Borra( cFile ) ShFile( GetActiveWindow(), FO_DELETE, cFile + Chr( 0 ), Nil, nAnd( FOF_ALLOWUND, FOF_NOCONFIRMATION)) RETURN .T. la idea seria borrar estos archivos temporales sin que el usuario sepa y que ojala no los envié ...
by VPOZO
Thu Sep 03, 2009 11:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Eliminar archivos con la API de Windows ShFile()
Replies: 7
Views: 1232
Next

Return to advanced search