Search found 110 matches: proceed

Return to advanced search

Re: XBrowse with Add,Modify,Delete methods (13.07)

... to delete a batch of records (selected by bookmarks). He may like to caution the user with one message to the user for the batch operation and proceed to delete the batch. sample code: AEval( aSelected, { |n| oBrw:BookMark := n, oBrw:Delete() } ) I am proposing to have a Delete() method in ...
by nageswaragunupudi
Tue Sep 10, 2013 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with Add,Modify,Delete methods (13.07)
Replies: 5
Views: 3539

SQL Scripting Support: Less known features of FWH - 3

... nQty, nAmount )  But we know this is not permitted. We need to convert all values into literals that the DBMS can understand. So, we proceed like this: cSql := "INSERT INTO SUPPLIES ( CUSTOMER,STREET,INVDATE,INVNO,DELYTIME,QTY,AMOUNT ) VALUES ( " + ; "'" + cCustomer ...
by nageswaragunupudi
Wed Jul 31, 2013 3:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL Scripting Support: Less known features of FWH - 3
Replies: 6
Views: 3129

Re: bugs xBrowse and Seek

... character, numeric and date fields. So xbrowse first ascertains the datatype by calling ValType( ::oRs:Fields( <colname> ):Value ) and then proceed to build a filter expression suitable to the datatype. Obviously this approach is failing when the value is NULL in the current row. We shall ...
by nageswaragunupudi
Sat May 25, 2013 11:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bugs xBrowse and Seek
Replies: 7
Views: 2521

Re: FiveTech's FiveWeb (free up to version 1.0)

... a MySQL database. In fact what I am doing is returning back and painting what the server is receiving :-) Is MySQL fine for you ? :-) Then we can proceed storing the info in the server... Current code used in Otto.prg #include "FiveWeb.ch"function Main()   local oDlg, ...
by Antonio Linares
Wed Nov 14, 2012 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveTech's FiveWeb (free up to version 1.0)
Replies: 119
Views: 23663

Compile tutor04 error hb_fun_setsize()

... reference to `HB_FUN_SETSIZE'collect2: ld returned 1 exit statusdone!build.sh: linha 23: ./tutor04: Arquivo ou diretório não encontrado how to proceed? :P
by Matheusfarias
Wed Sep 26, 2012 1:36 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Compile tutor04 error hb_fun_setsize()
Replies: 1
Views: 1279

Re: Comments and requests about TWBrowse

... principle, this is taking us in the right direction avoiding re-reading data from source atleast when repainting in non-focused state, then we can proceed further to improve this. Saving and restoring the bitmap is painting the saved image one pixel off from the original position. This can be fixed. ...
by MarcoBoschi
Tue Sep 25, 2012 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Comments and requests about TWBrowse
Replies: 58
Views: 13764

Re: Excel works with xHarbour, not Harbour

May I suggest using Fivewin function ExcelObj() to create excel object?

oExcel := ExcelObj()
if oExcel == nil
// excel not installed or could not be started
else
// proceed using oExcel
endif

This function is working well with xHarbour and Harbour ( bcc 582 ) and with xhb ( commerical )
by nageswaragunupudi
Mon Jun 25, 2012 12:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excel works with xHarbour, not Harbour
Replies: 4
Views: 950

Re: Using ADOCE

... can set up a PayPal transaction for you to make the purchase and then I will send you the full package by email. Please let me know if you wish to proceed. Thanks in advance, John dbace The price for 1 developer license is 109,00 euros. With 1 developer license, 1 developer may use the library ...
by Antonio Linares
Sat Jun 02, 2012 12:02 pm
 
Forum: FiveWin for Pocket PC
Topic: Using ADOCE
Replies: 35
Views: 16167

Re: Word with Harbour and xHArbour Solved

Incidentally FWH provides builtin function WinWordObj().

We can write

oWord := WinWordObj()
if oWord == nil
// error
else
// proceed with using oWord
endif

Similar functions in FWH are ExcelObj() and SunCalcObj()
by nageswaragunupudi
Tue May 29, 2012 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Word with Harbour and xHArbour Solved
Replies: 3
Views: 867

Re: Windows Metro UI

... cloud and use my own Harbour/FW Metro programs to access it on my PC and also my new windows phone I will be purchasing. Anyone else? How should I proceed? Maybe the following? I was wondering how FW's socket project fits into this picture and was hoping for a progress report? See topic http://forums.fivetechsupport.com/viewtopic.php?f=3&t=23167 ...
by Jonathan Hodder
Tue May 08, 2012 5:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Metro UI
Replies: 69
Views: 19770

Re: EZScan, Barcode, OCR Testing

... Hope you don't mind it. When I try to use the OCR I get this alert: "Transym OCR engine not installed". How to proceed to use the OCR ? thanks! :-)
by Antonio Linares
Sun Feb 19, 2012 9:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EZScan, Barcode, OCR Testing
Replies: 17
Views: 6924

IsInternet() is failing to recognise internet sometimes

... through every thing is fine there with all internet activities. I am checking the internet connection initially with ISINTERNET(), before I proceed with my functionality. Almost, every time it is working correctly, But some times it is not giving the correct result :? . Anybody has experience ...
by RAMESHBABU
Thu Nov 17, 2011 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: IsInternet() is failing to recognise internet sometimes
Replies: 2
Views: 668

Apps with UAC

While most applications run fine in Win 7, some are needing UAC approval to proceed. For example, a simple utility I have which runs with the server startup, seeks UAC permission becaue it "might cause a change to the computer". In fact, it just reads ...
by TimStone
Tue May 31, 2011 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Apps with UAC
Replies: 5
Views: 924

Re: Why xBrowse displays all fields ?

Parametrized Browse function - How to proceed? XBrowse has too many settings and all of them can be handled through parameters to a function. If we try to, the function may be too clumsy. Instead use most commonly varying variables as parameters ...
by nageswaragunupudi
Sun Jan 30, 2011 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why xBrowse displays all fields ?
Replies: 19
Views: 3538

Re: Pritpal, HBIDE developer, assists us to use it with FWH

... subject and more so I have a little knowledge about Qt's rendering system, so please do not pin high hopes. I still do not know which way it will proceed, will we be successful or failure, will it touch our expectations. It is an ambitious project I ever dreamt of developing one, so I just started. ...
by Pritpal Bedi
Thu Aug 12, 2010 6:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pritpal, HBIDE developer, assists us to use it with FWH
Replies: 293
Views: 99541
PreviousNext

Return to advanced search