Search found 280 matches: modifying

Return to advanced search

Re: passing a value through a for..next loop

... in this forum. Keeping this principle in mind, I am sure you can yourself modify the program to use the index in bChange also. For now, I am modifying the above program. #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local oDlg, oBrw   local cFilter  := ""  ...
by Silvio.Falconi
Tue May 14, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 693

Re: passing a value through a for..next loop

... in this forum. Keeping this principle in mind, I am sure you can yourself modify the program to use the index in bChange also. For now, I am modifying the above program. #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local oDlg, oBrw   local cFilter ...
by nageswaragunupudi
Mon May 13, 2024 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 693

Re: FWErrorsys()

...     "MY ERROR DIALOG" )return nil Please run the above three programs as it is and see. We can do all the aboe without modifying the errsysw.prg
by nageswaragunupudi
Thu Apr 04, 2024 12:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1925

Re: FWErrorsys()

... understand that when an error occurs, you want MyFunc() should be executed first and then invoke the FWH ErrorDialog. We can achieve this without modifying errsysw.prg Please try this sample: #include "fivewin.ch"function Main()   local bFwErr   bFwErr   ...
by nageswaragunupudi
Wed Apr 03, 2024 11:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1925

Re: Error handling

Modifying errsysw.prg An approach: FUNCTION ErrorDialog(e)// At top in errordialog() function, 1st recordingc:= "Description error: "+ e:descriptionc+= Procname(1)+ CRLF+ ProcName(2)+ ProcName(3)memoWrit("ErrorMin1.log", ...
by paquitohm
Tue Apr 02, 2024 8:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error handling
Replies: 3
Views: 746

Re: Problem with FiveWin and PDF995 on Windows 11.

Thank you Mr. Rao, modifying my code at this moment. Very complete. Byron ...
by byron.hopp
Tue Feb 13, 2024 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1538

Re: Fine tune Phi2 from Microsoft with your own data

Locally saving a fine tuned model without modifying quantization: !pip install accelerate==0.25.0!pip install bitsandbytes==0.41.1!pip install datasets==2.14.6!pip install peft==0.6.2!pip install transformers==4.36.2!pip install torch==2.1.0!pip ...
by Antonio Linares
Wed Jan 17, 2024 7:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fine tune Phi2 from Microsoft with your own data
Replies: 11
Views: 1355

Back after 10 years due to illness [ Javier Lloris ]

... programs for these matters that work perfectly, at least I use them without any errors to date. Modificando el Blog pero aquí podéis descargarlos: Modifying the Blog but here you can download them: https://javierlloris.blogspot.com/ Por cierto yo soy de los que empezó con Fivewin 1.0 ...
by jll-fwh
Wed Dec 13, 2023 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Back after 10 years due to illness [ Javier Lloris ]
Replies: 2
Views: 479

Re: copy a row of xbrowse

... `aCopy` and add each row to `oBrw:aArrayData`. Make sure to reset `aCopy` after pasting. 3. **Handle Unique Identifiers**: To avoid issues with modifying copied rows, ensure each row has a unique identifier (like a record number). You might need to generate new unique IDs for the pasted rows. ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 6098

Re: who use PostgreSQL with Fivewin ?

... is a method of TDataRow class of FWH. That is the reason, why we advised not to use TDataRow and other FWH functions for reading, editing and modifying the PostGre records and instead directly use TPQquery and TPQrow classes of Harbour's hbpgsql.lib. This helps us to close any further discussion ...
by nageswaragunupudi
Fri Sep 29, 2023 2:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: who use PostgreSQL with Fivewin ?
Replies: 13
Views: 1170

Re: not ISOEM(), ISANSI() or IsUTF8()

... by FWH without any code written by the programmer. Personally I checked all rows and found the translations are correct. Browsing, editing and modifying OEM databases using FWH XBrowse. Please do not spend time in writing your own functions. Save time for other things. What all required is ...
by nageswaragunupudi
Sun Sep 03, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2482

Re: Create help system with F1

... menu to add, reorder, and modify the structure of your help file. 7. Customize appearance: You can customize the appearance of your help file by modifying the style and layout. Help Workshop provides options to change fonts, colors, and other visual elements. Use the "Project" menu ...
by Antonio Linares
Tue Jul 11, 2023 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 1001

Re: Color a Groupbox Frame

Carlos, With XHBBCC74 and BCC74 it doesn't work at all. Please see if I made a mistake in modifying your SCRIPT which is terrible. haha ha. Con XHBBCC74 y BCC74 no funciona en absoluto. Vea si cometí un error al modificar su SCRIPT, lo cual es terrible. jajaja. CX.BAT ...
by karinha
Mon Jun 12, 2023 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color a Groupbox Frame
Replies: 23
Views: 1295

Re: XBROWSE : METHOD DataRow() -> TDataRow()

can i change Color of Panel :idea:

it is all for "Dark-Mode"

At present, it is not possible without modifying the source code of TDataRow class.
But soon we will provide a way to do it from the Application code and let you know.
If you like, we will share the revised program with you too.
by nageswaragunupudi
Sat May 06, 2023 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 319

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" ...
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: 379
Next

Return to advanced search