Search found 21 matches: prone

Return to advanced search

Re: Xbrowse : Tooltips timers

... to write a separate function to naviato the mouse over row, pick the text and re- navicate to the current row, which is confusing and error-prone. In case of bCellToolTip, xbrowse first navigates to the mouse over row and then evaluates the codeblock with mouse over column object as parameter ...
by nageswaragunupudi
Mon Jun 12, 2023 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 229

Re: Setup Barcode system in FWH

... the part. For the item being serviced, they can scan the ID right off the item. It's pretty hard to make a mistake with this. If customers were prone to making mistakes, I'd tune the code to block it. Tim
by TimStone
Thu Mar 14, 2019 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Setup Barcode system in FWH
Replies: 29
Views: 6098

Re: FWH 18.08: Enhancements to strings.prg

... 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 program can be customized to ...
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: 5404

Re: tDatabase- AdsSetAof()

... same class with a lot of IF/THEN and DO/CASEs. Then you are just falling back to procedural code and this gets very complex, messy to work on, and prone to errors. Further, whenever you try to add or fix something you risk breaking more than just the database type that you are working on. Thus, ...
by James Bott
Thu Nov 16, 2017 9:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tDatabase- AdsSetAof()-RESUELTO
Replies: 2
Views: 681

Example Business Object (Customer)

... can have it's own methods and can be passed to other objects. The object is more complex than a row of data, but much easier to work with and less prone to bugs. It is also a smart object--it can contain methods. I believe that business objects are the most important advance one can make in programming. ...
by James Bott
Wed Jun 28, 2017 6:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Example Business Object (Customer)
Replies: 32
Views: 8490

New FTDN January/Enero 2017 (FWH 17.01)

... to write a separate function to naviato the mouse over row, pick the text and re- navicate to the current row, which is confusing and error-prone. In case of bCellToolTip, xbrowse first navigates to the mouse over row and then evaluates the codeblock with mouse over column object as parameter ...
by Antonio Linares
Wed Jan 25, 2017 8:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN January/Enero 2017 (FWH 17.01)
Replies: 1
Views: 2041

FWH: Parent Child RowSets (MySql/MariaDB)

... othe ways of doing this and we all had done this many times. But this feature takes away all the tedium, makes the process very simple, less error prone, stable with easy to maintain code. The entire process requires usage of only two methods and one data: 1) oParent:AddChild( ... ) // establish ...
by nageswaragunupudi
Thu Jul 21, 2016 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Parent Child RowSets (MySql/MariaDB)
Replies: 12
Views: 4225

Re: New FWH 15.05

... are millions of PC's still running XP in virtual environments, behind enterprise grade firewalls and appliances that are very secure. None of them prone to intrusion. Windows 8.1 is better, by far, than 7. There are good & reliable antiviruses like Bit Defender Internet Security 2015 (latest ...
by HunterEC
Tue Jun 16, 2015 5:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 15.05
Replies: 26
Views: 5072

Re: DataRow problem

... who use INT to hold logical values but in their application code they take care of logical/numeric conversions, which I consider unnecessary and prone to errors. (Oracle programmers mostly use 'Y', 'N' ) If for some reasons we need to retain TINYINT (or any other) field type, I suggest this code. ...
by nageswaragunupudi
Thu Feb 26, 2015 4:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DataRow problem
Replies: 2
Views: 893

Re: Network Issue

... your bandwidth consumption. Also trying to connect your users through RDP, is by far faster than using network shares alone, more secure and less prone to data corruption. I hope this clarifies some of your doubts. If I can be of any help, please drop me a note.
by HunterEC
Thu Jan 16, 2014 4:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10921

Re: Multiple selection on a XBROWSE

Richard: Thank you very much for your solution. Now, using the mouse, it's prone to the user not pressing Ctrl and losing all marked records. It's there a way like marking a checkbox in a column ? This way the user just clicks on the checkbox and forgets about ...
by HunterEC
Sun Oct 06, 2013 3:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple selection on a XBROWSE
Replies: 4
Views: 1358

Re: TSBrowse TXBrowse ?

... nLastKey as parameters. The programmer was expected to specify how the data was to be saved in the table. Writing code for this is tricky, error-prone and differs for different datasources like array, dbf, objects, recsets, etc. Programmer has to code for locks, error conditions and so on. In ...
by nageswaragunupudi
Tue Jan 25, 2011 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse TXBrowse ?
Replies: 8
Views: 3074

Re: convert program to a network version

Harvey, I know it is all scary since it is so different, but once you get over the intial learning curve, programming is so much easier, less error prone, and requires much less code. While converting some older programs I have reduced the code by as much as 50-90 percent. When you are doing a conversion ...
by James Bott
Wed Jul 22, 2009 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: convert program to a network version
Replies: 14
Views: 5530

Re: How do I send oWnd in SET KEY?

First I never recommend using privates--they are to prone to cause very hard to find bugs. You don't need to pass oWnd you can always get it by calling wndMain(). I don't recommend any confirmation dialogs. In your case the user can merely run the ...
by James Bott
Wed Jul 08, 2009 5:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I send oWnd in SET KEY?
Replies: 6
Views: 1844

Re: Checking non released GDI objects

... then after the routine we could check it against the before count. Manually counting the items in the displayed list each time will be tedious and prone to error. James
by James Bott
Fri Jun 26, 2009 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Checking non released GDI objects
Replies: 13
Views: 5487
Next

Return to advanced search