Meanwhile in Bahia, 7AM.
https://youtu.be/qcmiuaSLdgs
Search found 352 matches
- Sat Dec 12, 2020 8:29 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: OT: Winter
- Replies: 3
- Views: 1324
- Tue Nov 24, 2020 1:49 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
As you want to print a barcode the function may be expecting a string of numbers not letters.
- Sat Nov 21, 2020 8:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
My FWH version is old and I'm not aware of the AS BARCODE command so I can't help you further.
- Wed Nov 18, 2020 8:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
This works perfectly for me. #include "fivewin.ch" REQUEST DBFCDX Function main() local acampi := {"FIRST" ,; "LAST" ,; "STREET" ,; "CITY" ,; "ST...
- Wed Nov 18, 2020 8:27 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
I took your initial example and rewrote a little: #include "fivewin.ch" REQUEST DBFCDX Function main() local acampi := {"FIRST" ,; "LAST" ,; "STREET" ,; "CITY" ,; ...
- Wed Nov 18, 2020 4:58 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
FIELDWBLOCK("FName", 1) is the same as &( "{ |setVal| IF( setVal == NIL, 1->FName, 1->FName := setVal ) }" ) If you don't eval the block you'll not retrieve the content of the field. @ nRiga, nColonna PRINT TO oPrn TEXT eval( FIELDWBLOCK( aFields[ncampo], SELECT( "CUST&q...
- Tue Nov 17, 2020 2:10 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: fieldWBlock
- Replies: 13
- Views: 2256
Re: fieldWBlock
Try
eval(fieldWBlock(aCampi[nFor],nArea ))
eval(fieldWBlock(aCampi[nFor],nArea ))
- Sun Oct 11, 2020 11:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to get http response text
- Replies: 18
- Views: 1858
Re: How to get http response text
Could the failure be connected to the popup that shows the cookies acceptance message when one loads the page for the 1st time?
- Fri Sep 25, 2020 4:11 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Question about FWH and Excel
- Replies: 9
- Views: 2380
Re: Question about FWH and Excel
oExcel := win_oleCreateObject( "Excel.Application" ) oWorkb := oExcel:WorkBooks:Add() oSheet := oWorkb:Sheets( number of the sheet you want to work with 1 2 3... ) oSheet:Name := "the name you want for your sheet" PM me your mail I'll send you a code you can use to learn more ...
- Fri Sep 25, 2020 12:55 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Question about FWH and Excel
- Replies: 9
- Views: 2380
Re: Question about FWH and Excel
I don't have a recipe but there are a lot of similarities: VAB Cells(x, y).Interior.ColorIndex <-> FWH Cells(x, y):Interior:ColorIndex.
- Thu Sep 24, 2020 3:43 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Question about FWH and Excel
- Replies: 9
- Views: 2380
Re: Question about FWH and Excel
Anytime I need something new I search Excel VBA examples and adapt them to FWH. As for RGB colors I don't know. Check below.
https://www.automateexcel.com/excel-for ... lor-index/
https://www.automateexcel.com/excel-for ... lor-index/
- Thu Sep 24, 2020 10:43 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Question about FWH and Excel
- Replies: 9
- Views: 2380
Re: Question about FWH and Excel
Try this
oSheet:Range( oSheet:Cells( 1, 1 ), oSheet:Cells( 1, 7 ) ):Interior:ColorIndex := Violeta
oSheet:Range( oSheet:Cells( 1, 1 ), oSheet:Cells( 1, 7 ) ):Interior:ColorIndex := Violeta
- Thu Aug 06, 2020 4:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: conditional formatting excel
- Replies: 9
- Views: 2399
Re: conditional formatting excel
I'd try something like this: oRng := oSheet:Range( oSheet:Cells( 1, 1 ), oSheet:Cells( 1, 7 ) ) oCond1 := oRng:FormatConditions:Add(xlCellValue, xlGreater, "=80") oCond2 := oRng:FormatConditions:Add(xlCellValue, xlLess, "=50") WITH OBJECT oCond1 :Font:Bold := .T. :Font:Co...
- Thu Aug 06, 2020 2:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: conditional formatting excel
- Replies: 9
- Views: 2399
Re: conditional formatting excel
Do you mean this kind of code? oSheet:Cells( nL, 4 ):Interior:ColorIndex := if( hora->HSAI < "04:00", Verde, Vermelho ) oSheet:Cells( nL, 5 ):value := hora->H1PV oSheet:Cells( nL, 6 ):value := hora->HUPV oSheet:Cells( nL, 6 ):Interior:ColorIndex := if( hora->HUPV < &quo...
- Wed Jun 24, 2020 7:44 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Introducing FiveTech's fivedit
- Replies: 537
- Views: 99283
Re: Introducing FiveTech's fivedit
Solved with a full reinstall. Thanks.