Search found 121 matches

by patito
Thu Nov 22, 2018 10:22 am
Forum: eXpress++ Support
Topic: How to activate the Windows Virtual Keyboard from eXpress
Replies: 45
Views: 59965

Re: How to activate the Windows Virtual Keyboard from eXpres

Hi Nolber Use trunprocess, it's much safer, it's in ot4xb.dll Then he tells me if it's effective. Best Regard PROCEDURE main( LcP1,LcP2,LcP3,LcP4,LcP5,LcP6) local oProcess := TRunProcess():New() oProcess:cAppName := NIL oProcess:cParams := NIL oProcess:cCmdLine := "java -jar firmafedian.jar " + allt...
by patito
Mon Nov 19, 2018 9:32 pm
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi Jimmy The expanding class and the htdic class, (dictionary), are c++-based And it is similar to the following aDetalle := {} oPartida := _ot4xb_expando_():new() oPartida:cantidad := 1 AAdd(aDetalle, oPartida) for n := 1 to Len(aDetalle) nImporte := aDetalle[n]:cantidad * aDetalle[n]:precio Shortl...
by patito
Mon Nov 19, 2018 11:10 am
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi Jimmy We're not talking about the openssl hash. If you want to use this type of hash, ot4xb, you have the following function (see manual use of cryptography in xbwin ) *1 = SHA1 2 = SHA256 3 = SHA384 4 = SHA512 (default hash type) - 512 bit Digest FUNCTION fSha( _chain) RETURN OT4XB_HASH():SHA256...
by patito
Mon Nov 19, 2018 10:55 am
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi Eugene


Attached example using dbf and hash
You can make many combinations, even using xsd file, XML, etc etc etc etc.

Best regard
Héctor
by patito
Sun Nov 18, 2018 1:39 pm
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi Eugene Here in this url https://en.wikipedia.org/wiki/Hash_table there's a description of what is a hash table In computing, a hash table (hash map) is a data structure that implements an associative array abstract data type, a structure that can map keys to values. A hash table uses a hash funct...
by patito
Sat Nov 17, 2018 9:30 am
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi

manual of ot4xb, see page 76 and tells you how to use this function.

Best Regard
Héctor
by patito
Sat Nov 17, 2018 9:17 am
Forum: eXpress++ Support
Topic: OT4XB - HASHTABLE
Replies: 12
Views: 21099

Re: OT4XB - HASHTABLE

Hi Here is an example There is a manual, which explains its use, go to the page of xbwin Best Regard Héctor #include "ot4xb.ch" #define MYLOOP 1000 // --------------------------------------------------------------------------- function Main() local nSeconds := Seconds() local oDict := THDict():New(1...
by patito
Tue Nov 13, 2018 10:04 am
Forum: eXpress++ Support
Topic: Xbase++ & eXpress++ & xb2net who use ?
Replies: 13
Views: 22402

Re: Xbase++ & eXpress++ & xb2net who use ?

Hi Chris Thank you very much for your prompt response By your code I see that you have taken a different path, but maybe you get to rome This week I will continue with outh2 and I hope to make it. Best Regard Héctor Pezoa ...Client oHttp := TServerXMLHTTPRequest():New() oHttp:Open("POST","http://127...
by patito
Mon Nov 12, 2018 1:38 pm
Forum: eXpress++ Support
Topic: Xbase++ & eXpress++ & xb2net who use ?
Replies: 13
Views: 22402

Re: Xbase++ & eXpress++ & xb2net who use ?

Hi Chris

What is the way you return Json's result from the controller MVC?
? ActionResult or JsonResult

Best Regard
Héctor Pezoa
by patito
Thu Nov 08, 2018 1:04 pm
Forum: Xbase++ Support
Topic: GetAsyncKeyState
Replies: 4
Views: 11840

Re: GetAsyncKeyState

Hi That way you can make your call #INCLUDE "ot4xb.ch" #INCLUDE "dll.ch" Local i, key, cResponse For i = 0 To 255 // We consult the value of the key by means of the Api. _ //If pressed returns -32767 and we show the value of i // 'Consultamos el valor de la tecla mediante el Api. _ // Si se presionó...