Great !!
Can I use it ?
Using: FWH 23.08 with Harbour
Great !!
Can I use it ?
Uwe,
You are missing the topic title's in the browse.
And the Authors are not indexed or (the index in not active in the browse)
What was your idea about the multiple samples files ? and how would you use it...
You are missing the topic title's in the browse.
And the Authors are not indexed or (the index in not active in the browse)
What was your idea about the multiple samples files ? and how would you use it...
Uwe,
(I don't mean to do any critism... You do a great job)
You should consider to have at least a part of the title inside the browse, because when you say
ex. Headers as lookup item, you get result for :
Treport, XML,, Xbrowse, ....
and with the titles seen, you only hit pagedown. Otherwise you have to look for every row for the title.
Maybe on a small screen you have no place, but I see almost 1/4 screen free (1680/1050)
Or small Font ?
For the authors, you have changed the way of the original idea... It's a other way of working, but that is
as allways the idea of the programmer.
I will become a great tool, for sure...
You should consider to have at least a part of the title inside the browse, because when you say
ex. Headers as lookup item, you get result for :
Treport, XML,, Xbrowse, ....
and with the titles seen, you only hit pagedown. Otherwise you have to look for every row for the title



Very Nice ..
I'm looking to download...
No info from Otto about the Highlight of the words ?
Marc,
I deleted the topic because there was no answer
regards
Uwe ![]()
For the link to the forums.
I think that the problem is in fact that viewtopic will not use the -f parameter.
In PhpBB this -f is obsolite and not used any more...
So in our case, we have the problem that the forums have the same topic numbers.
As a fact English has 35226 and Spanisch has 35228 !! Just 2 apart...
But when you try with 35228, it will go to the spanisch forum and topic.
So the solution could be : renumber the topic like
Engl : 10035226
Span : 20035228
Ital : 300xxxx
But I think that that will be no option for Mr. Antonio
There is maybe a alternative :
On the PhpBB forum, there is the code for showing topic on someone's website...
In this code we could send the Forum, Topic and Item numbers and display it. It will not link to the FWH forum, but it will be shown in a other window or dialog.
Coloring text in a string :
Here was a topic. Maybe a hint
viewtopic.php?f=31t=31113hilit=textout
&&
#include "fivewin.ch"
static oWnd
function main()
DEFINE WINDOW oWnd
ACTIVATE WINDOW oWnd ON PAINT Pinta( hDC )
return nil
function Pinta( hDC )
local nColor
local nLeft := 10
local cTexto := "En un lugar de la mancha de cuyo nombre no quiero acordarme"
local oFont
local hFont
local nLen := len( cTexto )
local cLetra, n
DEFINE FONT oFont NAME "Segoe UI Light" SIZE 0, -18
hFont := SelectObject( hDC, oFont:hFont )
for n := 1 to nLen
cLetra := substr( cTexto, n, 1 )
nColor := SetTextColor( hDC, nRandom( CLR_WHITE ) )
TextOut( hDC, 10, nLeft, cLetra )
SetTextColor( hDC, nColor )
nLeft += GetTextWidth( hDC, cLetra, oFont )
next
SelectObject( hDC, hFont )
oFont:ENd()
return nil
