Search found 99 matches

by ask
Tue Oct 21, 2008 9:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help to compile sqlwin
Replies: 3
Views: 588

What error do you get ? Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland sqlwin.c: Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland Error: Unresolved external '_HB_FUN_TPQSERVER' referenced from C:\FWH\SAMPLES\SQ LWIN.OBJ Error: Unresolved external '_HB_FUN_PQTRANSACTIONSTAT...
by ask
Tue Oct 21, 2008 4:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Help to compile sqlwin
Replies: 3
Views: 588

Help to compile sqlwin

Can someone please tell me how to compile the latest post (from wiki) of sqlwin? I think that i miss a postgre lib and cannot compile it.

FWH 7.12 , XHarbour 1.1.0 (Simplex)

Thanks
A.S.K
by ask
Fri Apr 18, 2008 7:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 7.12 & Adordd
Replies: 2
Views: 687

Antonio Linares wrote:Ask,

Please compile adordd.prg as another PRG of your application and try it again, thanks
Antonio ,
I already did that .The error is with browse() command . When I replace it with msginfo(char) everything works fine.

regards
A.S.K
by ask
Thu Apr 17, 2008 12:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 7.12 & Adordd
Replies: 2
Views: 687

FWH 7.12 & Adordd

Can anybody tell what i have to do for access1.prg to work? In a previous topic (see: http://fivetechsoft.com/forums/viewtopic.php?t=9313&highlight=usrrdd) it's very confusing what i have to do.The error that I get is : Error ADORDD/0 Operation not supported from Errorsys , line :0 XHarbour 1.1....
by ask
Wed Mar 12, 2008 11:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Edit Help
Replies: 11
Views: 2217

Though I never use oCol:Edit() directly from code, for your sake I just now tested calling oCol:Edit() of a column in TXBrowse in Dialog. It is working fine for me. I would request you to give it a try once more. The bellow example is taken from testxbrw.prg I made some changes and here it is: STAT...
by ask
Wed Mar 12, 2008 10:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Edit Help
Replies: 11
Views: 2217

Please try oCol:Edit() I am not doing that for this reason. In the earlier browses, we were invoiking lEdit in response to some user action. In other words, Edit happens only in response to some user action. Earlier we had to deal with the user actions ourselves and decide in our code whether or no...
by ask
Tue Mar 11, 2008 12:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Edit Help
Replies: 11
Views: 2217

nageswaragunupudi wrote:If oBrw:lFastedit := .t.
then pressing enter or any alpha or numeric key will invoke the edit and the key pressed will be the first key. This works like Excel cell edit.
Thank you for your answer but how can you invoke edit by code? leditcell do just that

regards
A.S.K
by ask
Tue Mar 11, 2008 9:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Edit Help
Replies: 11
Views: 2217

To use the edit features of xbrowse, this is the recommended way: oCol:bEditvalue := { || FUSER->TTC } oCol:cEditPicture := "@Z 999 999 999.99" oCol:nEditType := EDIT_GET oCol:bStrData := { || Transform( FUSER->TTC, "@Z 999 999 999.99" } oCol:bPostEdit := { | oCol, uValue, nLast...
by ask
Wed Mar 05, 2008 1:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: lEditCol for xBrowse
Replies: 0
Views: 380

lEditCol for xBrowse

Hi,

In tcbrowse I use lEditCol( nCol, uVar, cPicture, bValid, nClrFore, nClrBack, cMsg, cError ) .Can anyone create the same method for xBrowse?

Thank you
A.S.K
by ask
Thu Feb 28, 2008 3:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: BTNBMP problem
Replies: 2
Views: 624

Re: BTNBMP problem

@ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ; SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" ) Try this: @ 70, 80 BTNBMP oBtn FILENAME "../bitmaps/yes.bmp" ; SIZE 50, 30 OF oDlg ACTION MsgInfo( "click" ) NOBORDER oBtn:lTransparent = .T Regards Manuel Merc...
by ask
Thu Feb 28, 2008 10:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: BTNBMP problem
Replies: 2
Views: 624

BTNBMP problem

The following example is btntrans.prg except that i reset the border with ResetBorder .You will see it is not working. Can someone tells me why? Thanks A.S.K // Testing a transparent TBtnBmp on a transparent DialogBox #include "FiveWin.ch" //------------------------------------------------...
by ask
Fri Feb 15, 2008 12:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Special effects for dialogs
Replies: 2
Views: 820

this is great stuff!!
by ask
Tue Jan 15, 2008 7:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: OrdKey CDX-NTX
Replies: 10
Views: 2348

Thank you for your answer.I did not know all this things .As i can understand being you seem to know allot about databases and indexes . Can you please tell me which of the 2 RDDs (DBFntx , DBFcdx) is faster and more reliable ?

Thank you very much
A.S.K
by ask
Mon Jan 14, 2008 3:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OrdKey CDX-NTX
Replies: 10
Views: 2348

On large tables if you find the filter to make the program slow, you can always create one more index tag 'INDEX ON DELETED() TAG DELETED'
Can you explain it because i don't understand it

Thank you
A.S.K
by ask
Mon Jan 14, 2008 2:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OrdKey CDX-NTX
Replies: 10
Views: 2348

Thank you NageswaraRao

regards,
A.S.K