Search found 612 matches: certain

Return to advanced search

Website logo

Hi,

Is it possible to get logos of certain websites ?
by Natter
Wed May 17, 2023 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Website logo
Replies: 8
Views: 490

Methot SAY in TRLIN --- REPORT

... the one defined in aFont this causes some lines to have incorrect colors the problem is when the color selected is white therefore it seems that certain lines are no longer printed METHOD Say(nStartRow) CLASS TRLine     LOCAL nFor, nCol, nWidth     DEFAULT ...
by mauri.menabue
Mon May 15, 2023 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Methot SAY in TRLIN --- REPORT
Replies: 0
Views: 104

Re: U-Dbu

... It appears that this is a "web server" It is more than a web server. It is a server prepared so that together with tweb, it works in a certain way to help us create our web applications more quickly and in a different way. so it would not be hosted in the cloud. How would some access ...
by Carles
Sat May 13, 2023 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: U-Dbu
Replies: 17
Views: 1199

Re: Protecting certain functions to be used

simpler: function Main()   local pFunPtr := HB_Protect( "memoWrit" )   memoWrit()   // later on   // HB_Unprotect( "memoWrit", pFunPtr )return nil#pragma BEGINDUMP#define _HB_API_INTERNAL_#include <hbvmpub.h>ex...
by Antonio Linares
Wed May 03, 2023 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Protecting certain functions to be used

I just realized that scope.pointer is member of an union and not a member of a struct, so modifying scope.pointer will be affecting the scope of the symbol. This would be the right way to do it: function Main()   local pFunPtr := HB_Protect( "memoWrit" )  &nb...
by Antonio Linares
Wed May 03, 2023 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Protecting certain functions to be used

Gracias Paco, versión simplificada: function Main()   HB_Protect( { "memoWrit" } )   memoWrit()return nil#pragma BEGINDUMP#define _HB_API_INTERNAL_#include <hbvmpub.h>extern HB_EXPORT HB_SIZE hb_parinfa( int iParamNum, HB_SIZE...
by Antonio Linares
Tue May 02, 2023 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Protecting certain functions to be used

Muchísimas gracias. Grandisimo aporte Antonio
Recuerdo, creo que en el foro de harbour users, una vez alguien pidió exactamente esto mismo
by paquitohm
Tue May 02, 2023 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Protecting certain functions to be used

Simpler and Harbour generates an error as the functions becomes undefined, even if the functions are linked. Once Unprotect()ed they become available again :-) function Main()   Protect( { "FErase" } )   FErase()return nil#pragma BEGINDUMP#define _HB_API_I...
by Antonio Linares
Tue May 02, 2023 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Protecting certain functions to be used

Enhanced version: functions Protect() and UnProtect() extern Dummyfunction Main()   Protect( { "Test" } )   ? Test()   UnProtect( { "Test" } )   ? Test()return nilfunction Test(...
by Antonio Linares
Tue May 02, 2023 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Protecting certain functions to be used

If you allow your users to define and execute a macro or use the runtime Harbour compiler (hbcplr.lib), sometimes you may want to avoid the use of certain Harbour functions. This code allows you to protect the symbols that you don't want to be used: Fill the array { "QOut" } to include ...
by Antonio Linares
Tue May 02, 2023 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Protecting certain functions to be used
Replies: 6
Views: 358

Re: Convert code to FWH

Hello Antonio,

Thank you so much! Initially we are looking to read certain values to determine status of a device, simply 0 or 1 (on or off).

Thank you again!
by cdmmaui
Sat Apr 29, 2023 12:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert code to FWH
Replies: 15
Views: 972

Re: autoGPT for OpenAI

... modifying or redoing a previous step), manage different prompts and rules. It seems as the combination of context use, the right prompt and certain rules is the way to get the best from the OpenAI engine. I do appreciate your feedback about this, hopefully more users provide feedback too, ...
by Antonio Linares
Fri Apr 28, 2023 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: autoGPT for OpenAI
Replies: 15
Views: 1486

Group on xbrowse

... make the end user could group the records according to conditions for example for customer.dbf files, the end user could group the customers of a certain state (state), create that which creates the Report class for the groups but on the xbrowse i.e. a procedure could be if the user wants grouping ...
by Silvio.Falconi
Sun Feb 26, 2023 5:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Group on xbrowse
Replies: 0
Views: 204

Re: oWebView:Eval() in a loop

... In my example, I tried to show the problem that I had when working with webview.Eval() in a loop. It is as follows - 1. Webview.Eval() executes a certain JS script and returns the result to the FW. 2. Only after receiving this result can I continue executing the loop. It is this check that I do ...
by Natter
Fri Feb 17, 2023 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oWebView:Eval() in a loop
Replies: 6
Views: 430

Re: Color of rows in the cell

... cell, I specify aCols [1]: aClrText: = {CLR _ BLACK, CLR_RED}. Is it possible to make this setting not for all xBrose lines, but according to a certain condition ? #include "fivewin.ch"function Main()   local oDlg, oBrw, oCol, oFont, oBold, oItalic, oImpact  ...
by nageswaragunupudi
Wed Jan 25, 2023 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color of rows in the cell
Replies: 5
Views: 474
PreviousNext

Return to advanced search