Search found 37 matches: alway

Searched query: alway

by Marc Venken
Thu May 02, 2024 7:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Filter on Xbrowse
Replies: 42
Views: 6536

Re: Filter on Xbrowse

... filter3.png

Selecting the filter will update the browse.

We all know that if we start building filters and use buttons etc... there will be alway short of options or complex screens. Now the customer simple read the filter name and select.

The way I generate my filters is that I use xbrowse ...
by Silvio.Falconi
Mon Oct 17, 2022 10:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: show a btnbmp pressed on buttonbar
Replies: 9
Views: 996

Re: show a btnbmp pressed

... nbsp;oBtn:bClrGrad    :=  bClrGradNormal   Endif   oBtn:refresh()   return nil

https://i.postimg.cc/SKtCz9QM/fff.png

It run but when we put it back it doesn't take away the color maybe I did something wrong lpressed is alway .t.
by Jimmy
Sun Jun 12, 2022 8:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Right progress percentage
Replies: 1
Views: 346

Re: Right progress percentage

hi Silvio,

my Progressbar ist alway 100%

LOCAL i,nMax := len(aData)LOCAL nEvery := INT(nMax/100) oProgress:SetRange( 0, 100 ) oProgress:SetPos( 0 ) FOR i := 1 TO nMax ... IF ( i % nEvery ) == 0 nPos := oProgress:Value oProgress:SetPos( nPos++ ) ENDIF ...
by dutch
Wed Oct 20, 2021 3:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to use xbrowse():lKinetic with xbrowse():bLClicked
Replies: 5
Views: 702

Re: How to use xbrowse():lKinetic with xbrowse():bLClicked

... I set :bLClicked, :lKinetic does not work.
3. I do not :lKinetic := .F., and :bLClick := { |r,c,f,brw,lTouch| if(lTouch, nil, MyFunc() ) } *lTouch alway .T.*. It means, MyFunc() never call.
4. I do :lKinetic := .F., Drag and scroll is not working.

These are all my test.

Thank you in advance,


I ...
by jfl@mafact.com
Mon May 03, 2021 8:24 am
Forum: mod_harbour
Topic: Migration to the new mod_harbour fastCGI
Replies: 46
Views: 9328

Re: Migration to the new mod_harbour fastCGI

... try the ADS version.
I copied the needed ADS 11.1 64 bits DLLS either on the same place that modharbour.exe or in c:\windows\system32 but no way, I alway receive an internal error 500 wich seem to say modharbour.exe can't load, missing the ADS DLLS.

Any idea wich could help ?

Best regards,

JF ...
by Marc Venken
Thu Apr 01, 2021 8:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Mod Harbour challenge project
Replies: 15
Views: 2972

Re: Mod Harbour challenge project

... the code is free at this point, so that would be a great startup.

My programming skills are lets say 'ok' but I can't start from scratch. I need alway a sample and start from that. Fw Forum dilivers many samples and i always start from them.
A Sample from 20 lines become a function of 200 lines ...
by Silvio.Falconi
Thu Jul 05, 2018 10:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xbrowse
Replies: 6
Views: 1535

Re: Problem with xbrowse

... WITH OBJECT oBrowse:aCols[ 1]
:bFooter := { || Ltrim( Str( oBrowse:KeyNo() ) ) + " / " + LTrim( Str( oBrowse:KeyCount() ) )+" servizi" }
:lBmpStretch := .F.
:lBmpTransparent := .T.
:nwidth := 20
:bStrImage := {|oCol, oBrw| oBrw:aArrayData[ oBrw:nAt,1 ] }
END

but It show alway the same image
by StefanHaupt
Tue Jan 08, 2013 12:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New class TUpdate
Replies: 25
Views: 7720

Re: New class TUpdate

... 2012/04/"

If you try to connect to a ftp server the prefix mustn´t "http:" So cFtp should be "ftp.eoeo.it" or simpler only "eoeo.it"

FtpDir is alway without url, only the folders from the ftp root. cFtpDir should be "wp-content/uploads/....." or "/wp-content/uploads/..." .

I suggest to make ...
by kok joek hoa
Sat Feb 18, 2012 7:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Nesting in ADS 10.1
Replies: 5
Views: 1194

Re: Nesting in ADS 10.1

HI,

Thanks Fraxzi, I will try it.

Carlos, rlock or flock alway return true or false, so in my code I write :

if rlock()
replace xxxx with yyy
else
break
endif

so, when one of database fail, all database will rollback, and it run perfect in my code.

thank

Kok
by Surasak
Thu Jun 30, 2011 9:36 am
Forum: FiveWin for Pocket PC
Topic: Communication with ARM9
Replies: 6
Views: 2419

Communication with ARM9

... is .f. and TestComm.prg notthing happen.
I try to use this code for capture the result but function OpenCom return value of hComm more than 9 and alway change.



#include "FWCE.ch"

#define BUFF_IN 1024
#define BUFF_OUT 1024
#define GENERIC_READ 0x80000000
#define GENERIC_WRITE 0x40000000 ...
by hua
Thu Sep 30, 2010 2:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: COPY TO oddness
Replies: 19
Views: 3695

Re: COPY TO oddness

@Verhoven - thanks for the reply but I'm not looking for a workaround. I was hoping that the bug is squashed so I don't have to alway remember not to upgrade my xHarbour

@Enrico - thanks for the feedback. That's unfortunate to hear :(
by sambomb
Mon Sep 13, 2010 11:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to know the current control?
Replies: 16
Views: 3943

Re: How to know the current control?

Dear Sambomb,

I use (KB) button to get the current focus control but your example alway return 7 (total control in dialog +1). It cannot find the focus control.
Try this...
For i := 1 to Len(oDlg:aControls) If oDlg:aControls[i]:ClassName() = "TGET" If oDlg:aControls[i ...
by dutch
Fri Sep 10, 2010 11:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to know the current control?
Replies: 16
Views: 3943

Re: How to know the current control?

Dear Sambomb,

I use (KB) button to get the current focus control but your example alway return 7 (total control in dialog +1). It cannot find the focus control.
Try this...
For i := 1 to Len(oDlg:aControls) If oDlg:aControls[i]:ClassName() = "TGET" If oDlg:aControls[i ...
by dutch
Fri Sep 10, 2010 11:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to type Norway Language (Norwegian) in FWH?
Replies: 14
Views: 5499

Re: How to type Norway Language (Norwegian) in FWH?

Dear Uwe,

First of all, Thank you very much for your (alway) kindness help.

Is it possible to switch from Norwegian to English in FW application? Normal I use a keyboard switch between English and other language.

I test the define below with your "ArialNew", it is good looking (I don't know ...
by Marc Vanzegbroeck
Tue Aug 10, 2010 9:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Program slow down
Replies: 18
Views: 6902

... is executed on the PC holding the files on his local disk, and test on the other one, it doesn't slow down.
Executing test on the PC with the files and test on the other, it slow down.

Trying on a server, it alway's slow down

Otto,

I tryed your suggestion, but without any result.

Regards,

Marc