Search found 58 matches: avista

Return to advanced search

Re: XBROWSE bOnPreEdit

Avista Here is sample code I use for Pre and Post code blocks for xBrowse. Rick Lipkin // description          oLbxB:aCols[5]:nEditType   := EDIT_GET          ...
by Rick Lipkin
Tue Sep 02, 2014 8:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE bOnPreEdit
Replies: 2
Views: 510

Re: RESIZE Objects when resize Window or Dialog (ANTONIO ?)

... corner and hard to read and use. When display has changed the resolution, other application will not suitable with (800x600). Just my opinion. Avista, Sorry for my answer delay. Whatever we implement it has to provide full backwards compatibility so we don't break anybody app. Besides that, ...
by dutch
Sun Aug 31, 2014 5:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RESIZE Objects when resize Window or Dialog (ANTONIO ?)
Replies: 35
Views: 8183

Re: RESIZE Objects when resize Window or Dialog (ANTONIO ?)

Avista,

Sorry for my answer delay. Whatever we implement it has to provide full backwards compatibility so we don't break anybody app.

Besides that, whatever useful addition is welcome :-)
by Antonio Linares
Sat Aug 30, 2014 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RESIZE Objects when resize Window or Dialog (ANTONIO ?)
Replies: 35
Views: 8183

Re: 3 LIBS MISSING in xharbour_bcc582_20140728.zip

Avista,

Yes, you can copy them from a previous build,
by Antonio Linares
Fri Aug 29, 2014 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 LIBS MISSING in xharbour_bcc582_20140728.zip
Replies: 3
Views: 608

Re: 3 LIBS MISSING in xharbour_bcc582_20140728.zip

Avista,

I think it is no problem, to add these libs from anothe Xharbour dir.
I had also some problems, after a virus was found and I had to do a complete system-refresh.
Now it works without any problems.

ACE32.LIB ( 67 KIB )
HBZIP.LIB ( 720 KIB )
RDDADS.LIB ( 66 KIB )


best regards
Uwe :lol:
by ukoenig
Fri Aug 29, 2014 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 3 LIBS MISSING in xharbour_bcc582_20140728.zip
Replies: 3
Views: 608

Re: ADO & SQL INSERT Statement

Hi Avista, i've tried in my sqlite installation the following code insert into test  (campo1,campo2)  values ('1','texto1'),('2','texto2') and no error. My table test structure: campo1 numeric campo2 ...
by nageswaragunupudi
Thu Jul 31, 2014 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO & SQL INSERT Statement
Replies: 9
Views: 2219

Re: ADO & SQL INSERT Statement

Hi Avista,

i've tried in my sqlite installation the following code
Code: Select all  Expand view
insert into test  (campo1,campo2)  values ('1','texto1'),('2','texto2')
and no error.

My table test structure:

campo1 numeric
campo2 text

Can you put here your error ?

Best regards
by Baxajaun
Wed Jul 30, 2014 2:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO & SQL INSERT Statement
Replies: 9
Views: 2219

Re: ADO & SQL INSERT Statement

Avista; Most SQL engines can execute a prepared query, also known as a unnamed parameters in SQL. When such SQL executes it is cached by the server and optimized to be executed many times. Each time you execute the SQL you'd ...
by reinaldocrespo
Wed Jul 30, 2014 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO & SQL INSERT Statement
Replies: 9
Views: 2219

Re: FiveWin & MySql

Hello Avista, I recomend to you to use ADO and TDataRow class. There are many samples on the fórum. This is a recent one: #include "fivewin.ch"#include "adodef.ch"#include "xbrowse.ch"function Main()  ...
by elvira
Thu Jul 24, 2014 1:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin & MySql
Replies: 7
Views: 1680

Re: ADO RecordSet to DBF

Avista,

We can help you with FW_AdoExportToDBF() (I will check it with Rao and I may send you some code by email) but as Rao has clearly explained to you, if you want to use the result of our hard work, you should upgrade your FWH version, thanks for understanding it.
by Antonio Linares
Mon Jul 14, 2014 11:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet to DBF
Replies: 16
Views: 4769

Re: ADO RecordSet to DBF

Avista Here is the psudo code .. 1) Create your .dbf 2) Open your recordset ... oRs:MoveFirst()Do While .not. oRs:Eof           Select 1     Append Blank     a->Field1 := oRs:Fields("Field1"):Value  ...
by Rick Lipkin
Thu Jul 10, 2014 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RecordSet to DBF
Replies: 16
Views: 4769

Re: ADO Problem

Avista,

It's normal that you get an error if you do a oRs:MoveFirst() on a empty recordset.

That's why I use
Code: Select all  Expand view
IF !oRs:eof()
   oRs:MoveFirst()
   ...

ENDIF
 


I don't know what you mean for the second case.
by Marc Vanzegbroeck
Tue Jul 01, 2014 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO Problem
Replies: 3
Views: 720

Re: XBROWSE Change FOOTER PCITURE

Avista,

my code is a solution, its work.

salu2
carlos vargas
by carlos vargas
Fri May 23, 2014 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Change FOOTER PCITURE
Replies: 13
Views: 3350

Re: GRADIENT and SAY on FOLDER Problem

Avista:

Did anyone ever find a solution to this problem? Static text is not displayed properly on a folder when using SetDlgGradient.

I'm using FWH 13.2 and xHarbour.

Thanks,
Randal Ferguson
by Randal
Wed Jan 29, 2014 1:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GRADIENT and SAY on FOLDER Problem
Replies: 11
Views: 3931
PreviousNext

Return to advanced search