Search found 3107 matches

by Silvio
Sat Apr 09, 2011 5:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Quality scale of a Password
Replies: 6
Views: 1089

Re: Quality scale of a Password

I try with function passwordStrength(cpass,nLenght) Local desc := {"Very Weak","Weak","Better","Medium","Strong","Strongest"} LOCAL aPwd := {} Local score := 0 Local cUpperCase := "ABCDEFGHIJKLMNOPQRSTUVXYZ" Local cLowerCase := &q...
by Silvio
Sat Apr 09, 2011 4:32 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Quality scale of a Password
Replies: 6
Views: 1089

Quality scale of a Password

How I can calc a quality of a Password ? sample : for 6 digit Ql3Aj4 -> 35 bit and show to a dialog a meter graph of the quality as this : http://keepass.info/screenshots/addentry_big.png I found also this http://www.ipi.org/help/help8_admin.nsf/f4b82fbb75e942a6852566ac0037f284/e963b8a55c38edec85257...
by Silvio
Sat Apr 09, 2011 4:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: refresh on get
Replies: 3
Views: 582

Re: refresh on get

thanks sorry
I made a mistake

it was Genera_Password(nLunghezza,cPassw,aGet)

and then aget[1]:ctext...

here is too hot , my head explodes sometime especially when I'm at school with my pupils
by Silvio
Sat Apr 09, 2011 9:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: refresh on get
Replies: 3
Views: 582

refresh on get

I not found the error for this simply test I want refresh the oget[1] but it make error Function Test() LOCAL oDlg Local cPassw:=space(20) Local nLunghezza :=6 Local aGet[2] DEFINE DIALOG oDlg ; TITLE " GENERATE RANDOM PASSWORD" @ 2,1 SAY " Password :" OF oDlg @ 2,7 GET   aGet[1]...
by Silvio
Mon Apr 04, 2011 6:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: error with rpreview with W7
Replies: 2
Views: 384

Re: error with rpreview with W7

recent ????
I have an oldest fwh release
by Silvio
Mon Apr 04, 2011 3:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT IMAGE on REPORT
Replies: 10
Views: 1881

Re: PRINT IMAGE on REPORT

thanks to you mr rao !!!!
by Silvio
Mon Apr 04, 2011 3:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Como saber si una venta Dialog esta abierta
Replies: 7
Views: 1886

Re: Como saber si una venta Dialog esta abierta

nooooo use simply the theorie of josè of alanit CLASS tApplication DATA oDlg and then Function test() if oApp():oDlg != nil if oApp():nEdit > 0 return nil else oApp():oDlg:End() SysRefresh() endif endif your procedure return nil if yoy make an operation sample an insert or modiy you must insert oApp...
by Silvio
Mon Apr 04, 2011 3:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: error with rpreview with W7
Replies: 2
Views: 384

error with rpreview with W7

look this picture

Image

on the bottom the paper is over the window

and if you zoom max and the zoom min then you can see the line of the shadow remain at right of the screen


the same test on with xp run ok
by Silvio
Mon Apr 04, 2011 3:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT IMAGE on REPORT
Replies: 10
Views: 1881

Re: PRINT IMAGE on REPORT

OK NOW RUN OK Local aLabBitmap := { TImage():Define( 'SM_AULE' ), TImage():Define( 'SM_UFF' ), TImage():Define( 'SM_LAB' ) } instad of Local aLabBitmap := { TImage:Define( 'SM_AULE' ), TImage:Define( 'SM_UFF' ), TImage:Define( 'SM_LAB' ) } http://img231.imageshack.us/img231/3608/goodprint.jpg I thin...
by Silvio
Mon Apr 04, 2011 3:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT IMAGE on REPORT
Replies: 10
Views: 1881

Re: PRINT IMAGE on REPORT

no,

Error description: Error BASE/1003 Variabile inesistente: TIMAGE

Called from: source\TInforme.prg => TINFORME:REPORT(567)

line 567 Local aLabBitmap := { TImage:Define( 'SM_AULE' ), TImage:Define( 'SM_UFF' ), TImage:Define( 'SM_LAB' ) }
by Silvio
Mon Apr 04, 2011 7:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT IMAGE on REPORT
Replies: 10
Views: 1881

Re: PRINT IMAGE on REPORT

I try with bitmap from source and it run ok when I insert resources not run #include "FiveWin.ch" #include "report.ch" STATIC oReport Function Reptext() Local aLabBitmap := {'SM_AULE','SM_UFF','SM_LAB'} Local hBmpText1 USE LB INDEX LB NEW REPORT oReport TITLE "test" ; C...
by Silvio
Sun Mar 27, 2011 7:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: call Winword
Replies: 4
Views: 676

Re: call Winword

sorry

but I believe there is an possibility with (x)harbour to scan the system and know if

how many version of winword exist or there are not installed any version
by Silvio
Sun Mar 27, 2011 8:44 am
Forum: FiveWin for Harbour/xHarbour
Topic: problem with label class
Replies: 0
Views: 187

problem with label class

when I preview label run ok then I close label preview it make error
Called from: Lib\LABEL\PDLABEL.PRG => LBLEND(77)
by Silvio
Sun Mar 27, 2011 8:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: call Winword
Replies: 4
Views: 676

Re: call Winword

ok but
How I can make if on a pc have office 9 or 10 or 11 or 12
by Silvio
Sun Mar 27, 2011 8:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT IMAGE on REPORT
Replies: 10
Views: 1881

Re: PRINT IMAGE on REPORT

Daniel, ( seeing the instal.prg) I made Local aLabBitmap := {'SM_AULE','SM_UFF','SM_LAB'} ... hBmpText1 = LoadBitmap( GetResources(), aLabBitmap[LB->TIPO] ) COLUMN TITLE "Tipo" DATA " " SIZE 35 FONT 2 CENTER IMAGE IMGDATA hBmpText1 HEIGHT 6 ALPHALEVEL 128 it not print anything