Search found 196 matches: dummy

Return to advanced search

Re: strange error of fiveh lib

Dear Silvio, Please post the source of ut_images.prg In the meantime, please declare those missing functions as dummy: function BetaVersion() ; return nil I allready make function BetaVersion() ; return nil function setmasked() ; return nil function showgrid() ; return nil But ...
by Silvio.Falconi
Sun May 05, 2024 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error of fiveh lib
Replies: 2
Views: 91

Re: strange error of fiveh lib

Dear Silvio,

Please post the source of ut_images.prg

In the meantime, please declare those missing functions as dummy:

function BetaVersion() ; return nil
by Antonio Linares
Sun May 05, 2024 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error of fiveh lib
Replies: 2
Views: 91

Re: Filter on Xbrowse

Hello Marc, hello João, We are now replacing the dummy JSON. The function sendFilterData() makes a request to the server, and it responds with a JSON. At the moment, we are not yet evaluating any indexes and filters, but simply querying the database. ...
by Otto
Sun May 05, 2024 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 704

Re: Filter on Xbrowse

Hello Mark, The program also works with WEBVIEW2, directly as a FIVEWIN-EXE. Here you have a source. This is just a quick test with a dummy JSON. Normally the JSON would come from the server. However, I would prefer to do the example with mod harbour because I make all the new programs with ...
by Otto
Sat May 04, 2024 10:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 704

Re: xbrowse problem with :bLClicked

... likely to be pressed by the user, so it effectively creates a short delay before executing the Edit_Comuni() function. By using SetKey() with a dummy shortcut like "KL", we can ensure that the Edit_Comuni() function is executed after the selection has been toggled, rather than immediately ...
by Silvio.Falconi
Mon Apr 22, 2024 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 125

Re: xbrowse problem with :bLClicked

... likely to be pressed by the user, so it effectively creates a short delay before executing the Edit_Comuni() function. By using SetKey() with a dummy shortcut like "KL", we can ensure that the Edit_Comuni() function is executed after the selection has been toggled, rather than immediately ...
by Antonio Linares
Mon Apr 22, 2024 5:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse problem with :bLClicked
Replies: 5
Views: 125

Re: Xlsxlibhb_ver2

... is used inside the lib XLSXLIBHBBCCX.LIB. It is impossible to fix it without the source code. As a stupid test, try to define a dummy "_streams" symbol (note: with only one underscore). Something like this: FUNCTION _STREAMS(); RETURN NIL
by Enrico Maria Giordano
Tue Nov 21, 2023 11:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9093

Re: Video from the site to a file

hi Natter, i understood. they do not "steam", they do send you "frame-by-frame" as i´m a Internet Dummy my Solution is : "Screen-Recorder" i do use XBOX "Game-Bar" which include a "Screen-Recorder" you can enable it with : Win + G ...
by Jimmy
Thu Sep 28, 2023 8:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Video from the site to a file
Replies: 8
Views: 644

Re: Error p/generar EXE usando UHTTPD2 en Windows

... the fields when they are in focus. Make it look good, use an awesome icon for the button - add a headline: 'Search in the Table' - incorporate dummy functions with an alert. https://mybergland.com/fwforum/gptformclip1.jpg <!DOCTYPE html><html lang="de"><head>  ...
by Otto
Sun Aug 06, 2023 7:34 pm
 
Forum: mod_harbour
Topic: Error p/generar EXE usando UHTTPD2 en Windows
Replies: 12
Views: 1949

Re: new Array for XBROWSE -> only 1st Column ?

hi Otto, have you tried inserting some dummy data into your initial `aData`? LEN(aArray) is much bigger than 1 and "wide" is FCOUNT(). but with my CODE it show only 1st Column "A" when assign "on-fly" to XBROWSE ...
by Jimmy
Thu May 25, 2023 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: new Array for XBROWSE -> only 1st Column ?
Replies: 7
Views: 321

Re: new Array for XBROWSE -> only 1st Column ?

Jimmy, have you tried inserting some dummy data into your initial `aData`?
Best regards,
Otto
by Otto
Thu May 25, 2023 6:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: new Array for XBROWSE -> only 1st Column ?
Replies: 7
Views: 321

Re: U-Dbu

hi Charly,
Carles wrote:Join us and start experiencing the new UT concept.

DONWLOAD -> https://github.com/carles9000/u-dbu

i have download and start App.EXE -> Server Harbour9000 was started...
but what to do next ?

sorry i´m a Internet "Dummy", can you help please
by Jimmy
Tue May 09, 2023 9:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: U-Dbu
Replies: 17
Views: 1223

simulate unknown Function of UDF in IndexKey()

... let say i got Function Name XYZ() Question : is it possible to "simulate" Function XYZ() "on-fly" :?: --- if i have a FUNCTION Dummy()RETURN .T. i can use #xtranslate XYZ -> Dummy so i can call XYZ() without "real" existing Function XYZ() --- so when i can ...
by Jimmy
Fri May 05, 2023 4:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

Re: Concept of REDEFINE for Dummy

hi, it seem that REDEFINE does only work with FINDTEXT() as it return a Handle   hdlg = FindText(&fr); https://learn.microsoft.com/de-de/windows/win32/dlgbox/using-common-dialog-boxes?redirectedfrom=MSDN other like   if (ChooseColor(&cc)==TRUE)    if (...
by Jimmy
Mon Apr 03, 2023 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concept of REDEFINE for Dummy
Replies: 13
Views: 860

Re: Concept of REDEFINE for Dummy

hi Antonio, Try with TPanel as it is a very simple control thx for Answer i don´t want to create "new" Control. i want to "modify" existing Windows "Common Control" i´m testing REDEFINE and found out that i can get hWnd of existing "Common Control" when have R...
by Jimmy
Mon Apr 03, 2023 6:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Concept of REDEFINE for Dummy
Replies: 13
Views: 860
Next

Return to advanced search

cron