Search found 58 matches: avista

Return to advanced search

Re: ADD MY FUNCTION to F1 KEY ?

avista,

You have to comment these lines in keydown() methode of tWindows

Code: Select all  Expand view
*if nKey == VK_F1
*   ::HelpTopic()
*   return 0
*endif
by Marc Vanzegbroeck
Sun Oct 14, 2012 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADD MY FUNCTION to F1 KEY ?
Replies: 7
Views: 1202

Re: XBROWSE <binary> problem

Avista A quick question .. what is the field name of the binary column ? Generally Binary designates a 'file' of some sort stored in that field which is in hex .. it could be a document, picture, .pdf file ... I don't think ...
by Rick Lipkin
Wed Jun 27, 2012 2:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE <binary> problem
Replies: 16
Views: 4375

Re: XBROWSE <binary> problem

Avista;

Use Rick's suggestion. Simply replace your function into the code block for all columns.


Reinaldo.
by reinaldocrespo
Mon Jun 25, 2012 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE <binary> problem
Replies: 16
Views: 4375

Re: XBROWSE <binary> problem

avista If you want to design a custom xBrowse .. you can define your standard columns and then insert your Binary Column at a specific column ( in this case column 5 ) and the Code Block allows you to Return any value you ...
by Rick Lipkin
Fri Jun 22, 2012 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE <binary> problem
Replies: 16
Views: 4375

Re: The numeric ocurrence of the token inside string

Avista, cText1 := "this is a sample text"cText2 := "this  is  a  sample  text" MsgInfo( AScan( hb_ATokens( cText1, " " ), { | cToken | cToken == "sample" } ) ) -> Return 4 MsgInfo( ...
by StefanHaupt
Thu Feb 16, 2012 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The numeric ocurrence of the token inside string
Replies: 12
Views: 2545

Re: FUNNY Indexing

avista
> this is problem in FWH too if you use NTX index ...with CDX there is no problem.
enrico
>1. This is standard Clipper behavior (I just tested with Clipper 5.3b).
It's standard but it's wrong and very dangerous!

bye

marco
by MarcoBoschi
Mon Jan 23, 2012 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FUNNY Indexing
Replies: 14
Views: 2456

Re: FUNNY Indexing

Avista

Code: Select all  Expand view

INDEX ON VAL(MyDbf->Field1) TO MyIndex
 


Try eliminating the database name in the index ..

Code: Select all  Expand view

Select MyDbf
INDEX ON VAL(Field1) TO MyIndex
 


Rick Lipkin
by Rick Lipkin
Sun Jan 22, 2012 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FUNNY Indexing
Replies: 14
Views: 2456

Re: ODBC Problem ?

avista When you use ODBC you have to register the connection string with each windows client.. hence the ODBC login window you get when you application starts. ADO uses an OLEDB client for its connection properties. MS SQL ...
by Rick Lipkin
Thu Jan 05, 2012 3:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ODBC Problem ?
Replies: 6
Views: 1419

Re: ODBC Problem ?

avista Several things you will need .. 1) OLEDB ( ado ) client provider for IBM Informix .. http://www-01.ibm.com/software/data/informix/tools/csdk/ SDK Downloads here: http://www14.software.ibm.com/webapp/download/search.jsp?rs=ifxdl ...
by Rick Lipkin
Fri Dec 30, 2011 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ODBC Problem ?
Replies: 6
Views: 1419

Re: ODBC Problem ?

avista

What database are you trying to connect to ?? MS Access ? .. I would recommend ADO over ODBC ..

http://wiki.fivetechsoft.com/doku.php?i ... ted_stuffs

Rick Lipkin
by Rick Lipkin
Thu Dec 29, 2011 6:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ODBC Problem ?
Replies: 6
Views: 1419

Re: TSBrowse TXBrowse ?

... and bOnPostEdit which is existing since the first release of XBrowse. But better not to confuse them with the preedit and postedit as in Mr. Avista's example. The purpose of these codeblocks in xbrowse are basically different. bOnPostEdit: This data has been there since the first release ...
by nageswaragunupudi
Tue Jan 25, 2011 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse TXBrowse ?
Replies: 8
Views: 3076

Re: TSBrowse TXBrowse ?

Avista,

There is a oCol:bPostEdit but I don't see a b:OnPreEdit codeblock. However, as per your example, I think xbrowse can handle column totals by just using the TOTAL clause.

ADD COLUMN oCol TO oBrw ... TOTAL

Perhaps Rao can answer the preEdit question.

Regards,
James
by James Bott
Sun Jan 23, 2011 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TSBrowse TXBrowse ?
Replies: 8
Views: 3076

Avista

Thank you for your reply. Actualy I am user of xHarbour and FWH. By mistake I had post this in this forum.

With regards,

Arindam
by Arindam
Wed Jun 20, 2007 2:09 pm
 
Forum: FiveWin for CA-Clipper
Topic: How to use Enter key on Combobox
Replies: 2
Views: 1523
Previous

Return to advanced search