Search found 94 matches: pattern

Return to advanced search

xbrowse (likely a custom table) whose contents change dynam

... Logic Based on Input: It processes the input data (the keys and values in hPost) and generates a response based on this data, which is a common pattern in API endpoints. The function processes a POST request containing JSON data, logs the data, and returns a JSON response with the processing ...
by Otto
Sat May 04, 2024 7:42 am
 
Forum: mod_harbour
Topic: xbrowse (likely a custom table) whose contents change dynam
Replies: 0
Views: 68

Re: Fulltext-Search

... the same search. TC 1.40 min findstr 40 sec = command prompt ps 15 sec Get-ChildItem -Path c:\www\htdocs -Recurse -Filter *.prg | Select-String -Pattern "AP_GetPairs()" | ForEach-Object { $_.Path } I think I'll continue with PowerShell. Best regards, Otto
by Otto
Sun Mar 17, 2024 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1286

Re: Headers in xBrowse

...      //aSuperGroup 3   local aHeader3:= {"Napoli","Bari","Palermo"} each header has the following pattern oBrw:SetGroupHeader( aSuperGroup[1], 2, 21 ) oBrw:SetGroupHeader( aSuperGroup[2], 22, 41 ) oBrw:SetGroupHeader( aSuperGroup[3], 42, 56 ) I try ...
by Silvio.Falconi
Fri Oct 20, 2023 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Headers in xBrowse
Replies: 6
Views: 422

Web Services Security WSS OASIS

... </SOAP-ENV:Body> </SOAP-ENV:Envelope> And follow the example prg trying to reach the same pattern. static procedure DOMElotech() local cXML, oDOMDocument, oXmldsig, oStore, oCertificados local nI, oCert, cSerialCert, oStoreMem cXML := '<?xml ...
by Francisco Valério
Mon Feb 20, 2023 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services Security WSS OASIS
Replies: 0
Views: 218

Re: Problems with Preview

Hello Antonio, I compiled and ran your testprn2.prg i and the preview displays the nice pattern of plus signs but the pdf only displays 2 blank pages. As I said before I suspect it has something to do with the application not being able to access the preview temp files ...
by dtussman
Fri Nov 11, 2022 7:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with Preview
Replies: 14
Views: 859

C'YaPass: Forget All Your Passwords

... . Using CYaPass All you have to do is: Add / Select a SiteKey (reminds you which site the password is used for) Draw your secret pattern (it is never stored anywhere) The program remembers which password requirements (uppercase, special characters, length) are required by the ...
by Baxajaun
Mon Aug 15, 2022 8:57 am
 
Forum: Utilities / Utilidades
Topic: C'YaPass: Forget All Your Passwords
Replies: 0
Views: 398

Re: 3 state btnbmp

... CLR_BLACK, CLR_HGREEN )    end   oBtn:refresh()RETURN Dear friend, Thanks for the example, but I have a difficulty I inserted a pattern by calling it from another dialog when I return to the dialog where the btnbmp are they are not colored if I insert a function to refresh all ...
by Silvio.Falconi
Sun Mar 27, 2022 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 state btnbmp
Replies: 9
Views: 641

Re: ActiveX - CREATEOBJECT and singleton pattern

... I found the following: COM does not directly support the Singleton pattern, but it does not strictly prohibit it either. It's just that there's no registry setting that says "always serves the same object." ...
by metro2
Mon Nov 15, 2021 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

Please try using:

o2:Invoke( "TestConnectionDll", "" )
by Antonio Linares
Mon Nov 15, 2021 7:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

Greeting, I was away for a while. If an o2 instance is called from BluetoothConnector, How to call the TestConnectionDll method eg: ret: = o2: TestConnectionDll ("") // -> error ret: = o2: BluetoothConnector: TestConnectionDll ("") // -> error In other words, no matter how ...
by metro2
Mon Nov 15, 2021 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

Ok, i'll try to call TestConnectionDLL with an argument ...

I will report the result ...
by metro2
Wed Sep 29, 2021 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

> oPOS := CREATEOBJECT("BluetoothConnector.GetInstance('TestConnectionDLL()' ) or something ?

o2 should be the oPOS you were looking for
by Antonio Linares
Wed Sep 29, 2021 12:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

//////////////////////////////////////////// o1 := CreateObject( "PaymentService.BluetoothConnector" ) o2 := TOleAuto():New( o1:Invoke( "GetInstance" ) ) MsgInfo( ValType( o1 ) ) // -> "O" MsgInfo( ValType( o2 ) ) // -> "O" //////////////////////////////...
by metro2
Wed Sep 29, 2021 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

Please try this:

local o1 := CreateObject( "PaymentService.BluetoothConnector" )
local o2 := TOleAuto():New( o1:Invoke( "GetInstance" ) )
by Antonio Linares
Wed Sep 29, 2021 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627

Re: ActiveX - CREATEOBJECT and singleton pattern

//////////////////////////////////////////// o1 := CREATEOBJECT("PaymentService.BluetoothConnector") // ok MsgInfo( ValType( o1 ) ) // -> "O" local22 := o1:Invoke( "GetInstance" ) MsgInfo( ValType( local22 ) ) // N MsgInfo( str( local22 ) ) // 244252684 o2 := o1:Get...
by metro2
Wed Sep 29, 2021 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX - CREATEOBJECT and singleton pattern
Replies: 21
Views: 1627
Next

Return to advanced search