Search found 1281 matches
- Thu Feb 25, 2021 11:14 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Sistema multi empresa con mysql
- Replies: 17
- Views: 15293
Re: Sistema multi empresa con mysql
I recommend using one single database for all the companies. You can add one additional column in the tables to identify/differentiate the company the data belongs to. In the long run, this approach will benefit you. If you keep separate databases for each company, then on a later date if you need t...
- Wed Feb 24, 2021 8:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How read lines of word doc
- Replies: 6
- Views: 6752
Re: How read lines of word doc
The following example reads word contents, paragraph wise. Not sure whether this is what you are looking for. Maybe you can modify the code to suit your requirement #Include "Fivewin.ch" *---------------------------* Function Main() Local oWord,oDoc,cWordFileName,aData, oPara ...
- Tue Feb 23, 2021 9:20 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to Curl for text messaging
- Replies: 8
- Views: 13854
Re: How to Curl for text messaging
Many Many Happy Returns of the day, dear Reinaldo.
- Mon Jan 11, 2021 7:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy Birthday, Mr. Cristobal Navarro Lopez
- Replies: 11
- Views: 14783
Re: Happy Birthday, Mr. Cristobal Navarro Lopez
Many Many Happy Returns of the day
- Tue Jan 05, 2021 12:32 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Marc : Conversion process and questions about it
- Replies: 28
- Views: 76987
Re: Marc : Conversion process and questions about it
Another option is to use a CLASS already developed by Andrade A. Daniel. The CLASS's name is TPublic // Usage oBill:=TPublic():New(.T.) // Vaiables Declaration oBill:nBillNo:=100 oBill:dBillDate:=Date() oBill:cCustCode:=Space(10) oBill:cCustName:=Space(35) Instead of passing many variables to other ...
- Tue Dec 29, 2020 10:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Column width of the Word table
- Replies: 1
- Views: 1031
Re: Column width of the Word table
Code: Select all
? oTable:Columns(nColNumber):Width
- Thu Dec 24, 2020 11:09 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO filtering
- Replies: 3
- Views: 1265
Re: ADO filtering
What about
Code: Select all
cFilter := "HIREDATE >= "+FW_ValToSQL( DATE() )
oRs:Filter := cFilter
- Sat Dec 19, 2020 7:19 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: COMO ABRIR UNA WEB CON CHROME
- Replies: 2
- Views: 1268
Re: COMO ABRIR UNA WEB CON CHROME
You can open Web on Chrome using the following code //----------------------------------------------------------------------------// Function Main() Local oShell oShell:=CreateObject("WScript.Shell") oShell:Run("chrome.exe") oScript:sleep( 100 ) o...
- Thu Nov 26, 2020 5:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy birthday Antonio !!!
- Replies: 52
- Views: 30678
Re: Happy birthday Antonio !!!
Many many happy returns of the day
- Fri Nov 20, 2020 5:44 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change the value
- Replies: 2
- Views: 1209
Re: Change the value
What about copying the value of TGet of App1 to ClipBoard and then in the App2 read the value from the clipboard and then paste into the corresponding TGet ? Just an idea
- Thu Jul 23, 2020 9:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: just married
- Replies: 24
- Views: 26112
Re: just married
Congratulations
- Thu May 07, 2020 6:00 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Passing Parameters to Excel.
- Replies: 2
- Views: 954
Re: Passing Parameters to Excel.
Trybyron.hopp wrote:Dim sheet As Worksheet
Set sheet = ActiveWorkbook.Sheets.Add(After:=ActiveWorkbook.Worksheets(ActiveWorkbook.Worksheets.Count))
Code: Select all
oSheet := oExcel:ActiveWorkbook:Sheets:Add( oExcel:ActiveWorkbook:Worksheets( oExcel:ActiveWorkbook:Worksheets:Count() ) )
- Sat May 02, 2020 10:08 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy Birthday Enrico
- Replies: 12
- Views: 4285
Re: Happy Birthday Enrico
May many happy returns of the day Mr.Enrico
- Mon Apr 06, 2020 9:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel - text width
- Replies: 6
- Views: 1754
Re: Excel - text width
I do not know whether this will serve your purpose or not. I haven' tested this. You may have to tweak the code as per your requirement. Just give a try. Function AutoFitAll() AutoFitMergedCells(Range("B4:K4"), oSheet) AutoFitMergedCells(Range("B5:K5"), oSheet) AutoFitMerge...
- Mon Apr 06, 2020 9:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel - text width
- Replies: 6
- Views: 1754
Re: Excel - text width
What about wrapping the text of the merged cell ?