Search found 279 matches: hua

Return to advanced search

Re: How to make TFolderEx excel-like?

Dear Hua,

Please check DATA aSizes
by Antonio Linares
Thu Nov 10, 2022 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make TFolderEx excel-like?
Replies: 16
Views: 1076

Re: How to make TFolderEx excel-like?

hi hua, i. Allow user to change tab names on the go similar to excel sheet. Right click, key-in new tab name and see it immediately reflected METHOD RButtonDown( nRow, nCol, nFlags ) CLASS TFolderEx...      if ::bRClicked ...
by Jimmy
Wed Nov 09, 2022 8:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make TFolderEx excel-like?
Replies: 16
Views: 1076

Re: My regex fails under Harbour

Dear Hua
Please look description this functions
https://www.kresin.ru/en/hrbfaq_3.html#Doc9
by cnavarro
Mon Nov 07, 2022 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: My regex fails under Harbour
Replies: 6
Views: 660

Re: special Codeblock Syntax under Fivewin

Hi Hua, Just remember that extended codeblock must have RETURN It's not required return clause. Return clause it's neccessary only for return value // Not neccessary return value. Only code. Implicity return value is NILx:= ...
by hmpaquito
Mon Nov 07, 2022 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: special Codeblock Syntax under Fivewin
Replies: 10
Views: 549

Re: wrong Desciption of WaitRun() Error

Dear Hua,

github allows you to search in the wiki repo
by Antonio Linares
Fri Nov 04, 2022 7:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: wrong Desciption of WaitRun() Error
Replies: 3
Views: 288

Re: Display thumbnails of pdfs

https://mybergland.com/fwforum/xdocviewer.mp4 Hi Hua, Here you can see my xDOCViewer. If there are new files in the folders, then jpgs are created automatically. Thumbnails don't really help because you can't see practically anything. That's ...
by Otto
Wed Nov 02, 2022 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2554

Re: Display thumbnails of pdfs

Mr. hua I know you asked for pdf thumbnails and this is not exactly what you asked. But this application mimics windows explorer showing preview of files, same way as explorer. We will get back you on thumbnails a bit later. ...
by nageswaragunupudi
Wed Nov 02, 2022 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2554

Re: Multiple RTF controls each with its own bar

Dear Hua, If I properly understood you, you have to do the following: 1. use "RichEdi5.ch" instead of "RichEdit.ch" ... Thanks for the reply Antonio. I managed to change to use RTF5 but when I add the clause ...
by hua
Tue Oct 18, 2022 9:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple RTF controls each with its own bar
Replies: 5
Views: 547

Re: Multiple RTF controls each with its own bar

Dear Hua, If I properly understood you, you have to do the following: 1. use "RichEdi5.ch" instead of "RichEdit.ch" 2. Do the REDEFINEs this way: REDEFINE RICHEDIT5 ::hoGets["edu_1"] VAR ::hGets["edu_1"] ...
by Antonio Linares
Sun Oct 16, 2022 6:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple RTF controls each with its own bar
Replies: 5
Views: 547

Re: Display thumbnails of pdfs

hi, showing preview thumbnails of all type of files. as i understand Hua want Thumbnails, not "open" any File for Preview. so how to make Thumbnail from pdf, docx, xlsx, ppts :?: --- next Question would be : how to display Thumbnail "like Explorer" ...
by Jimmy
Sun Oct 16, 2022 12:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2554

Re: Display thumbnails of pdfs

Hello Hua, I use this workaround: Best regards, Otto function PdfToJpeg( cPDF )   local cExe     := "c:\Tracker Software\PDF Viewer\PDFXCview.exe"   local cTitle   := cFileNoExt( ...
by Otto
Sat Oct 15, 2022 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2554

Re: Display thumbnails of pdfs

Dear Hua, This is a first prototype based on a Karina example: #include "FiveWin.ch"function Main()   local oWndPdf, oPdf    DEFINE WINDOW oWndPdf TITLE "Generating thumbnail"  ...
by Antonio Linares
Fri Oct 14, 2022 8:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2554

Re: FolderEx + TTitle + RTF: TTitle and RTF not working

Unfortunately, it didn't work when I tried it Antonio. Dear Hua, This is the rigth way to do it:        ACTIVATE DIALOG ::oDlg CENTERED ON INIT ( o:hoTitles[ "edu_1" ]:AddText( 15, 20, "First",,,,, oFont3 ), .T. ...
by Antonio Linares
Tue Oct 11, 2022 7:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx + TTitle + RTF: TTitle and RTF not working
Replies: 8
Views: 737

Re: FolderEx + TTitle + RTF: TTitle and RTF not working

Unfortunately, it didn't work when I tried it Antonio.

Antonio Linares wrote:Dear Hua,

This is the rigth way to do it:
Code: Select all  Expand view

       ACTIVATE DIALOG ::oDlg CENTERED ON INIT ( o:hoTitles[ "edu_1" ]:AddText( 15, 20, "First",,,,, oFont3 ), .T. )
 
by hua
Mon Oct 10, 2022 5:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx + TTitle + RTF: TTitle and RTF not working
Replies: 8
Views: 737

Re: FolderEx + TTitle + RTF: TTitle and RTF not working

Dear Hua, This is the rigth way to do it: #include "fivewin.CH"#include "ttitle.ch"#include "RichEdit.ch"procedure main()  hr():activate()return//----------------------------------------------------------------------class ...
by Antonio Linares
Thu Oct 06, 2022 3:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FolderEx + TTitle + RTF: TTitle and RTF not working
Replies: 8
Views: 737
PreviousNext

Return to advanced search