Search found 48 matches: tedious

Return to advanced search

RC to PRG generator

many times when we are done designing a dialog box, it is tedious to write the code for each control using REDEFINE ... Here you have an utility that automatically writes the code for you: (work in progress, we do appreciate your feedback) #include "FiveWin.ch"static ...
by Antonio Linares
Sun Feb 11, 2024 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RC to PRG generator
Replies: 23
Views: 1177

Re: future of Rich Text Editor maybe time to start with WEBVIEW

... your knowledge of creating screens. It would be great if we could exchange our experiences here. There are so many little pitfalls, and it can be tedious to tackle them all on your own. It would be much easier together. I can't help but think of how often I stumble upon casesensitivity issues ...
by Otto
Sat Jan 27, 2024 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: future of Rich Text Editor maybe time to start with WEBVIEW
Replies: 19
Views: 1685

New FTDN July/Julio (FWH 23.07)

... a codeblock or a valid function name, uVar itself is returned * fw_stricmp() treats nil as lower than other datatypes * New: We know that it is a tedious task to write help for an app, so we have implemented a real simple way to do it using FWH: SetAutoHelp( lOnOff, lEditable ) // lEditable is ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1061

FWH new AutoHelp feature !!!

We know that it is a tedious task to write help for an app, so we have implemented a real simple way to do it using FWH: SetAutoHelp( lOnOff, lEditable ) // lEditable is .T. by default just call that function at the beginning of your ...
by Antonio Linares
Wed Jul 12, 2023 7:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH new AutoHelp feature !!!
Replies: 14
Views: 773

Re: Display thumbnails of pdfs

... not saved"else   ? cThumb   XImage( cThumb )endif  In all other cases, we have to go through the tedious process of displaying the file on the screen, take the screenshot and save it, after resizing if required. c:\fwh\samples\xblstgrd.prg c:\fwh\samples\listvie.prg ...
by nageswaragunupudi
Sun Oct 16, 2022 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2265

Re: Get real date from the Internet

... This made me re open a cmd window lots of times because after x calls to vcvars32.bat the cmd becomes unusable. Now that tedious task is over :-)
by Antonio Linares
Fri Sep 30, 2022 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get real date from the Internet
Replies: 55
Views: 4455

Re: Font sizing for printout.

... keep adding the real text, character by character until is exceeds the printable width, then subtract everything up to the last space and print. Tedious. I assume there is some reason you can't just let the printer object handle all this for you? If you are doing some kind of a special report ...
by James Bott
Tue Jun 23, 2020 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Font sizing for printout.
Replies: 3
Views: 750

Re: uCharToVal

First thing: You do not need to write such long and tedious functions to convert date into text. Instead, you can use FW_TRANSFORM() Please try this: dDate := Date() ? FW_TRANSFORM( dDate--, "ddd, dd mmm yyyy" ), FW_TRANSFORM( dDate--, "dddd, ...
by nageswaragunupudi
Tue Apr 07, 2020 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: uCharToVal
Replies: 9
Views: 1130

FWH1905: FW_AT() Case insensitive search

... insensitive search. In addition, FW_AT() provides more capabilities that are not easily possible with (x)Harbour's AT() or HB_AT() except without tedious coding by the programmer. Syntax: FW_AT( acSearch, [@]cString, [ncFrom], [ncEnd], [lWholeWord], [lSkipQuotes], [@cMatchFound], [cSubstitute], ...
by nageswaragunupudi
Wed Jun 26, 2019 4:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH1905: FW_AT() Case insensitive search
Replies: 0
Views: 570

Re: FWH 18.08: Enhancements to strings.prg

... to the English string constants in the aStrings array in strings.prg. Though it is possible to build such an array manually, it is very tedious, time-consuming, error-prone and very difficult to maintain. We propose a tool (a program) that makes the process much easier and safer. This ...
by nageswaragunupudi
Tue Nov 13, 2018 1:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5425

Re: To Nages searching on xbrowse

... to browse thousands of customers looking for the one you want. If there were less than say 50 customers then it might work but still be somewhat tedious. As you can see there are lots of unanswered questions for which you need answers. Without answers to those questions you can't proceed. If ...
by James Bott
Wed Sep 05, 2018 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages searching on xbrowse
Replies: 11
Views: 2536

Re: Borland makefile for Harbour + FWH + BCC7

... Xmate. I looked at years ago, but if I remember correctly, I had to save my files from my editor, then go to Xmate to compile. This gets really tedious. With a make file, I can just press the compile button in my editor. Maybe I never figured out how Xmate was supposed to work? Actually, I haven't ...
by James Bott
Fri Apr 07, 2017 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Borland makefile for Harbour + FWH + BCC7
Replies: 22
Views: 5583

Re: DBF to SQL converter program

... It would be better to use CUSTID, PARTID, INVOICEID, etc. However changing a fieldname in a legacy program is going to very difficult and tedious to debug. If you are using database objects then it is not much of an issue because you are using oCust:id, oPart:id, and oInvoice:id, so the ...
by James Bott
Thu Jul 30, 2015 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 17962

Re: Early days of Clipper

... others are uncomfortable at the lack of high-level tools shipped with the product. A classic example: reports. You either roll your own, with tedious line-by-line printing, calculating, and looping, or you simply buy a reporting package like R&R or BandIT. CA-Clipper 5.3 addresses some ...
by Antonio Linares
Thu Jan 08, 2015 9:03 am
 
Forum: Off Topic / Otros temas
Topic: Early days of Clipper
Replies: 4
Views: 1642

Re: dbcombo blank

... have been doing and assign each field to memory variable. This does mean writing lots of code to load those vars then save them. This gets very tedious very quickly. Fortunately, there is a better solution, and that is to use a record class which copies the data from a database record and thus ...
by nageswaragunupudi
Sun Jan 04, 2015 8:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbcombo blank
Replies: 5
Views: 1429
Next

Return to advanced search