Search found 9991 matches: sample

Return to advanced search

Re: records on xbrowse

any solution please ? the problem is when I make a search for a sample "frank" ( on First) ndatarow is 3 and also obrw:nlen is 3 I tried to inser a variable nTotalrecords at init oDbf:= TCustomer():New() oDbf:setorder(1) oDbf:Gotop() nTotalRecords:= ...
by Silvio.Falconi
Wed Mar 27, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 206

Re: records on xbrowse

... Using oBrw:nLen or oBrw:KeyCount() works for all datasources. ok but the button are not refreshed , only when I move the mouse into obrw for a sample WHEN ( oBrw:nDataRows <= oBrw:nLen ) not work WHEN ( oBrw:nDataRows >= oBrw:nLen ) not work oBrw:nDataRows <= oBrw:nLen - Not working ...
by Silvio.Falconi
Tue Mar 26, 2024 12:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: records on xbrowse
Replies: 8
Views: 206

Re: xHarbour.org updated!

... directory of your application: libssl-3.dlllibcrypto-3.dll For the CURL, the needed liBs are: hbcurl.liblibcurl.lib And the DLL is: libcurl.dll A sample for CURL is: #include "Fivewin.ch"#include "Hbcurl.ch"FUNCTION MAIN()    CURL_GLOBAL_INIT()  ...
by Enrico Maria Giordano
Mon Mar 25, 2024 3:47 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 153
Views: 30958

Re: incremental search on Xbrowse

Mauri

Have a look at the samples AdoRick.prg .... sample uses ado but I think you may be able to modify to use dbfcdx ..

Rick Lipkin
by Rick Lipkin
Mon Mar 25, 2024 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: incremental search on Xbrowse
Replies: 10
Views: 271

Re: Another for Btnbmp

Nages, I think there is an error the btnbmp class takes the color of the text to create the internal box when it has focus for a sample I set the nClrText :nClrText := { |lOver,o| If( o:HasFocus(), RGB( 219, 230, 244), If( lOver, RGB( 219, 230, 244), RGB( 207, 221, 239) ) ) } and I have ...
by Silvio.Falconi
Mon Mar 25, 2024 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 599

Re: Another for Btnbmp

... does not know which button has focus currently. The programmer has to use colors/gradients to indicate which button has focus. I provide you a sample program, suppressing drawing of border while indicating the focused button with colors. I used some simple colors for demonstration, but you ...
by Silvio.Falconi
Mon Mar 25, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 599

Re: Another for Btnbmp

... for accessibility, as it assists users, especially those using keyboard navigation, to understand which element is currently active. Here is a sample I made with WebView2 to demonstrate. Best regards, Otto https://mybergland.com/fwforum/resizewithbtns.gif
by Otto
Mon Mar 25, 2024 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 599

Re: Another for Btnbmp

... does not know which button has focus currently. The programmer has to use colors/gradients to indicate which button has focus. I provide you a sample program, suppressing drawing of border while indicating the focused button with colors. I used some simple colors for demonstration, but you ...
by nageswaragunupudi
Mon Mar 25, 2024 1:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 599

Re: Problema super raro

First please let me know if you built my sample program as it is (without any changes) and tested it? Did it work or not?
by nageswaragunupudi
Sun Mar 24, 2024 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 222

Re: Problema super raro

... https://imagizer.imageshack.com/img923/2668/sdGuZT.gif After you run this sample as it is, then apply this logic to your tables.
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 222

Re: Another for Btnbmp

... ¿Ves que después de presionar se forma un borde interno negro? Do you see that after pressing, a black internal border forms? Please see my test sample #include "fivewin.ch"Function test()   local oDlg,oFont,oBold   local oCursorBtn :=TCursor():New(,'HAND')  ...
by Silvio.Falconi
Thu Mar 21, 2024 9:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 599

Re: Hide/show search system on a dialog - Resolved

on xbrowser.prg there is not on buttonbar the get and the combobox


In that example, the sample hides the buttonbar.
Please use similar logic to hide the says,get and combobox instead of buttonbar in your case.

Logic is the same.
by nageswaragunupudi
Tue Mar 19, 2024 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hide/show search system on a dialog - Resolved
Replies: 6
Views: 237

Re: TITLE CLASS BUG with oDLg TRansparent

... of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent dialog. function Test()   local oDlg, oTitle   DEFINE DIALOG oDlg SIZE ...
by Silvio.Falconi
Mon Mar 18, 2024 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 274

Re: TITLE CLASS BUG with oDLg TRansparent

... of a control to be shown, then we should set oControl:lTransparent := .F. in the dialog's init clause. Please test the small sample. This way you can show the gradient of oTitle on a transparent dialog. function Test()   local oDlg, oTitle   DEFINE ...
by nageswaragunupudi
Mon Mar 18, 2024 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLE CLASS BUG with oDLg TRansparent - RESOLVED-
Replies: 9
Views: 274

Re: Fivewin Wiki

This is a working sample: #include "Fivewin.ch"#define xlMaximized -4137FUNCTION MAIN()    LOCAL oExcel := CREATEOBJECT( "Excel.Application" )    LOCAL oSheet    oExcel:WorkBooks:Add()  ...
by Enrico Maria Giordano
Sun Mar 17, 2024 11:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin Wiki
Replies: 9
Views: 506
Next

Return to advanced search

cron