Search found 121 matches

by patito
Mon Dec 10, 2018 8:59 pm
Forum: Xbase++ Support
Topic: OAuth2.0 / OpenID authentication and authorization
Replies: 7
Views: 22715

Re: OAuth2.0 / OpenID authentication and authorization

Hi If you can make use of Alaska xbase and express You must use external software such as Chilkat ( Activex for Rest and Oauth2) Example #include "xbp.ch" #include "Dll.ch" // ******************************************************************************* #pragma Library("Ascom10.lib") // **********...
by patito
Sat Dec 08, 2018 9:11 am
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

hi Jimmy

attached example a codebar QR , dll built with FoxPro visual

For Donetbrigde net , you have to make a few small
changes not to stumble upon Alaska's activex

greetings

Héctor Pezoa
by patito
Sat Dec 08, 2018 7:44 am
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

hi Joe please look at my previous answers 1.- If you want to register an activex to use with Alaska xbase build a bat file 2.- If you want to build an activex, use visual studio or express, also can only do this with a few Microsoft exe files, a process that it's pretty easy. 3 - and if you need to ...
by patito
Fri Dec 07, 2018 6:47 pm
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

Hi Jimmy Jimmy, visual foxpro is not so difficult, you can work with activex without drama. There are several interfaces that you can't compile with Alaska, but if in visual no problem for example, with xmldom, you don't need any additional library. You, with Alaska, can't use the ribbon class, etc....
by patito
Fri Dec 07, 2018 3:59 pm
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

Jimmy
With this net library for visual FoxPro, solve everything,
made in c++ net.

https://west-wind.com/wwDotnetBridge.aspx

best regard
Héctor Pezoa
by patito
Fri Dec 07, 2018 12:28 pm
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

Hi If you want to use it as an activex you only have to register it, for it use a bat file. %Windir%\Microsoft.NET\Framework\v4.0.30319\Regasm.exe generaxml_data.dll /codebase /tlb:generaxml_data.tlb PAUSE Now if it's a dll and not activex , check out the article in Olaf's alaska news, the people of...
by patito
Fri Dec 07, 2018 12:20 pm
Forum: Xbase++ Support
Topic: STEP BY STEP ON HOW TO USE .NET DLLs
Replies: 9
Views: 18631

Re: STEP BY STEP ON HOW TO USE .NET DLLs

Hi

It's very easy to do, please look for
on the web and explain how to do it
You will also find in the news of Alaska example of Olaf
You can do it with visual studio express or ultimate
If you don't have it, you can do it with some exe files from Microsoft framework

Best Regard
hector
by patito
Thu Dec 06, 2018 7:00 am
Forum: eXpress++ Support
Topic: OT4XB - _HDICT_NEW()
Replies: 1
Views: 5826

Re: OT4XB - _HDICT_NEW()

Hi have asked Pablo and he told me that: Current versions of ot4xb hash table using malloc/free to alloc the memory that rely on the common process heap, this works faster that using it's own heap but reduce the number of handles so the capacity is around the half million items. With a custom heap t...
by patito
Fri Nov 30, 2018 12:42 pm
Forum: eXpress++ Support
Topic: An external program window breaks the order of the windows
Replies: 9
Views: 15728

Re: An external program window breaks the order of the windo

Hi I recommend using trunprocess , it has many options attached prg, use ot4xb example local oProcess := TRunProcess():New() oProcess:cAppName := NIL oProcess:cParams := NIL oProcess:cCmdLine := "java -jar FocusWsdian.jar " + alltrim(LcP2) oProcess:lUseShowWindow := .T. oProcess:wShowWindow := oProc...
by patito
Fri Nov 30, 2018 12:39 pm
Forum: eXpress++ Support
Topic: An external program window breaks the order of the windows
Replies: 9
Views: 15728

Re: An external program window breaks the order of the windo

Hi

I recommend using trunprocess , it has many options
attached prg, use ot4xb