topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
A converter from text-file ( with delimiters ) to DBF ? | Antonio,could you please show how we could automatically check how often the delimiter is present?Thanks in advanceOttoPS: O.T. I use so many times for checking if a variable is emptythis code:if len(ALLTRIM(cText) = 0Is there a build in function existing? |
A converter from text-file ( with delimiters ) to DBF ? | Otto,Use StrCharCount( cText, cChar ). Its also implemented in C code so it is very fast. Example:[code:bol2xibg]
#include "FiveWin.ch"
function Main()
local cText := "C813354668;1063567698;0160 / 1853735;E+;NX;07.07.08;18:58:11;01732644433;VF;;00:28;0;0,0823;0,0000;NX"
local... |
A converter from text-file ( with delimiters ) to DBF ? | [quote="Antonio Linares":37vkogfj]Otto,
Use StrCharCount( cText, cChar ). ...[/quote:37vkogfj]Antonio, Can cChar length be bigger than 1? For example StrCharCount(cText, CRLF) TIA |
A converter from text-file ( with delimiters ) to DBF ? | Otto,[quote:2jj86d5x]PS: O.T. I use so many times for checking if a variable is empty
this code:
if len(ALLTRIM(cText) = 0
Is there a build in function existing?[/quote:2jj86d5x]Maybe you can use this? [code:2jj86d5x]if empty(cText)
...[/code:2jj86d5x] |
A converter from text-file ( with delimiters ) to DBF ? | Hua,No, just one char.But you could use StrTran() to replace CRLFs into ";" or similar |
A converter from text-file ( with delimiters ) to DBF ? | Thank you very much erverybody for his help.With the informations, i can solve the problem and helpthe customer today.Best RegrdsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
A converter from text-file ( with delimiters ) to DBF ? | Hello,once again, thank you very much for the help.With your solutions, everything is solved and works perfect now.My customer is happy.RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
A converter from text-file ( with delimiters ) to DBF ? | Hello,i got a customer response :This month, he had to convert : 181000 Textlines / 12,3 MBWith the old functions before, the used converting-timewas round about => 8 Minutes.With the new functions ( on a Intel Pentium 4 ),i used the very nice sample from nageswaragunupudi,very fast, only 1.4 Seconds.Great !!!Reg... |
A converter from text-file ( with delimiters ) to DBF ? | good nas!! |
A converter from text-file ( with delimiters ) to DBF ? | Hi Otto> "PS: O.T. I use so many times for checking if a variable is emptythis code:if len(ALLTRIM(cText) = 0Is there a build in function existing?"The following should work:[code:3ldzg9dm]IF Empty( cText )[/code:3ldzg9dm]Also covers other data typesRegardsxProgrammer |
A converter from text-file ( with delimiters ) to DBF ? | Uwe,If you avoid the use of the AEval(), I would say that you can get a better time <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->But if the customer is happy with it, then leave it as it is <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!... |
A converter from text-file ( with delimiters ) to DBF ? | Mr Uwe>This month, he had to convert : 181000 Textlines / 12,3 MB With the old functions before, the used converting-time was round about => 8 Minutes. With the new functions ( on a Intel Pentium 4 ), i used the very nice sample from nageswaragunupudi, very fast, only 1.4 Seconds.>Glad the sample was useful to you. But... |
A converter from text-file ( with delimiters ) to DBF ? | hello mr. nageswaragunupudi,i got these informations after a phonecall with my customer.For my tests, i could only use 1000 textlines ( a part of the file ).The complete, converted textfile contains all phonecalls of 1 month.I will ask him again tomorrow, to count the running time exactly.As well, i will double the tes... |
A converter from text-file ( with delimiters ) to DBF ? | [quote="Antonio Linares":3llkv0c3]
No, just one char.
But you could use StrTran() to replace CRLFs into ";" or similar[/quote:3llkv0c3]Thanks for the idea Antonio. I've been using the following to achieve the same purpose. Maybe it's not as optimized as StrCharCount() because of the do..while loop.[code:3llkv0c3]funct... |
A converter from text-file ( with delimiters ) to DBF ? | Hua,StrCharCount() is implemented in C, which means "machine code" generation. No "virtual machine" intervention at all. |
A converter from text-file ( with delimiters ) to DBF ? | Dear Rao,A simple test:[code:25r22fl7]
#include "FiveWin.ch"
function Main()
local a := Array( 1000000 ), n
local nStep1 := GetTickCount(), nStep2, nStep3
AEval( a, { || Date() } )
nStep2 = GetTickCount()
for n = 1 to 1000000
... |
A converter from text-file ( with delimiters ) to DBF ? | BTW, lets compare with the above example Harbour and xHarbour speed:1. Harbour: AEval ... 421 for next ... 2652. xHarbour: AEval ... 749 for next ... 483So Uwe, your application built using Harbour will be even faster <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --... |
A converter from text-file ( with delimiters ) to DBF ? | Antonio,Wow, this is disappointing--two functions tested and both much slower with xHarbour. I would have guessed that they were both almost the same speed.Any ideas why this is?It also makes you wonder if two out of two was just a coincindence, or is xHarbour much slower overall?James |
A converter from text-file ( with delimiters ) to DBF ? | Mr Antonio>he technical explanation is that to evaluate a codeblock a new "virtual machine" frame has to be built (increase and decrease of the stack). Using a for next just keeps using the same virtual machine frame. The calling to Date() from both, also forces a new virtual machine frame, but it is common for both wa... |
A converter from text-file ( with delimiters ) to DBF ? | According to Przemek (current Harbour tech leader), Harbour is much faster than xHarbour, mainly because it is better implemented internally.Less people working on it and better internal organization (no rush to implement features) resulted in a faster virtual machine execution and smaller EXEs.Curiously enough, though... |
A coupe of little changes for TMdiFrame and TMdiChild | TMdiFrame:
1) It seems that the correct default colors for an MDI frame window are
[code:1kktky64]nClrFore := GetSysColor( COLOR_WINDOWTEXT ), nClrBack := GetSysColor( COLOR_APPWORKSPACE ),;[/code:1kktky64]
instead of the current
[code:1kktky64]nClrFore := CLR_BLACK, nClrBack := Ge... |
A coupe of little changes for TMdiFrame and TMdiChild | Enrico,
Implemented,
many thanks! |
A coupe of little changes for TMdiFrame and TMdiChild | Thank you!
EMG |
A different Explorerbar-sample | Hello,
I finished my new Explorerbar-solution ( changed from Folder-selections, I did before )
Maybe it might be interesting to show, how a Explorerbar can be used as well.
After many Tests and calculations, I got my final Result with a complete overview
of possible Settings and Selections.
No exit-buttons are needed ... |
A different Explorerbar-sample | Nice Job. =] |
A different Explorerbar-sample | With some calculations, it works also in Horizontal-direction :
[img:2432ox4e]http://www.pflegeplus.com/pictures/fldsample2.jpg[/img:2432ox4e]
Best Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
A different payment | On a Xbrowse I have some fields ( Qta,Desc,Price,Importe)
I did this table for a restaurant application.
Now let me tell you what is my problem
When customers pay the bill they may want to pay "alla romana" ie everyone who is sitting on the same table can only pay for the products he has personally taken.
I can no... |
A different payment | Just a Idea :
You have the Xbrowse wich will have all articles that are served on the table.
I would think of adding into the dialog besides the xbrowse as many buttons as that the customer alow to pay pro table (In Belgium often this is not allowed <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:... |
A different payment | the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard |
A different payment | Silvio:
An other idea, You must take the orders by table and person, for example
18-1 table 18 person 1 Chicken 50.00
18-2 table 18 person 2 only coffe 10.00
Total per table 60.00
With this, in xbrows you can make a tree and get the total by person and
by table.
Regards |
A different payment | [quote="Silvio.Falconi":hj2ykd7u]the problem is also I cannot use check on the xbrowse because I making a Touch Ecr and the final user not use mouse and keyboard[/quote:hj2ykd7u]
Never used touchscreen, but can't you select items in the browse with a fingertip and than hit a button with a finger ? No Mouse/keyboard ... |
A different payment | Who use touch ECR, user or customer?
- if user,
you can
1 you must have split button for split the item 1 by 1 (if any more quantity than 1)
2 select the item to pay ( add check column in xbrowse ), you will know the total.
3 let the user to press pay button and settle only they select.
- if customer
1 you ... |
A different payment | Ecr is user from final user
this a first beta release !!
[img:3lunwwrb]https://s10.postimg.org/k8xzno34p/jpg.jpg[/img:3lunwwrb] |
A different payment | This is my POS screen. You can see what's function you should have.
[size=150:1y9h1aa9]1.Items function[/size:1y9h1aa9]
- split items for which quantity more than 1.
[img:1y9h1aa9]https://preview.ibb.co/m4Rg2a/Items.png[/img:1y9h1aa9]
[size=150:1y9h1aa9]2.Table function[/size:1y9h1aa9]
- split bill (se... |
A different payment | I'm thinking to create another dialog with two xbrowse
1. with all products
2 empty
on the middle button ==> and <== to insert products from first xbtowse to second
when I insert a product the procedure must erase the product on first xbrowse ( if not have a quantity >1) or change the quantity of the p... |
A different payment | Perhaps I found a method but also not run ok
[img:b2ik036s]https://s1.postimg.org/oaraq2onj/CONTISEPARATI.jpg[/img:b2ik036s]
I create two xbrowse :
on first I insert the ticket and on the second I put an empty array
If I use the mouse the drag and drop run ok
If I press the two button I inser... |
A easy way to do incremental seek on numeric fields ? | Hello,
In a old program of mine, there is a index on
numeric Customer-Numbers ( CDX ).
The index is => Index on STR(number)
index on LTRIM(STR(number)) doesn't work.
When you do a seek on this field ( N 5 0 )
as a sample you seek < 5 > you have to do - - - - 5
4 blanks + "5"
Must i write a function for this ?
R... |
A easy way to do incremental seek on numeric fields ? | Uwe
Index on numeric work fine
index on number to ....
and then seek 5 or whatever else
no problem with it, i have many numeric indexs in my app
Richard |
A easy way to do incremental seek on numeric fields ? | Uwe,
[quote:2t9sdoeu]index on LTRIM(STR(number)) doesn't work.[/quote:2t9sdoeu]
this is normal because all index keys need to be of constant same length.
Moreover it's a bad design to use numeric fields for indexing.
They are better used for numeric operation / calculation.
If you can't avoid it i'd take 'strzero( n... |
A easy way to do incremental seek on numeric fields ? | Detlef Thank you,
Yes it is a very old application and
to much work to change it.
I will try Strzero
Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
A expertos en FWH+xHarbour+TMySql | Hola amigos:
Estoy comenzando con TMySql. Agradezco lo que voy avanzando a mis colegas del foro, especialmente a Gabo, Willi y William, quienes me han apoyado para comenzar.
He logrado presentar una tabla utilizando FWH+xHarbour+TMySql con TxBrowse. Sin embargo (hasta hoy) noto un extraño comportamiento de xBrowse. Si ... |
A expertos en FWH+xHarbour+TMySql | Francisco
Buenas tardes, ¿podrías ayudarme a establecer la conexión al MySql?, e probado con las versiones:
FW 6.12+ BCC551+xH 0.99.71
FW 6.12+ BCC551+xH 1.2.1
FW 11.01+ BCC582+xH 1.2.1
FW 13.01+ BCC582+xH 1.2.3
y NADA !!.
Gracias
Luis |
A expertos en FWH+xHarbour+TMySql | Luis,
Aquí tienes este codigo ejemplo para empezar. Cualquier duda, solo pregunta en este foro y obtendrás toda la ayuda que necesites.
Utilizo TMySql y mi version FHW1204.
[code=fw:ssmqmr3r]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color:... |
A expertos en FWH+xHarbour+TMySql | GRACIAS !!!
Voy a probarlo |
A expertos en FWH+xHarbour+TMySql | Francisco,
Revisa samples\adoxb.prg y la clase TDataROw.
En los foros de inglés tienes ejemplos de ambos.
Es un aproach mucho más sencillo y con menos código.
Un saludo |
A expertos en FWH+xHarbour+TMySql | Francisco
Ya compila pero no conecta, sale este mensaje, desde el YOG si conecta con los mismos datos, te adjunto la pantalla, creo que el problema mas que en el programa es en la configuración.
[img:3cpoqt50]http://s2.subirimagenes.com/privadas/previo/thump_2104584error-conexion-mysql.jpg[/img:3cpoqt... |
A expertos en FWH+xHarbour+TMySql | Luis,
Podés poner una imagen mas grande?
Saludos. |
A expertos en FWH+xHarbour+TMySql | para que conectes con MYSQL, debes de tener junto a tu App.exe la
librería: LIBMYSQL.DLL
saludos |
A expertos en FWH+xHarbour+TMySql | Disculpen, por error coloque el enlace al preview, aquí esta la imagen de la configuración de mi prueba de conexión.
[url:2e6do0c0]http://www.subirimagenes.com/privadas-errorconexionmysql-2105003.html[/url:2e6do0c0]
[url=http://www.subirimagenes.com/privadas-errorconexionmysql-2105003.h... |
A expertos en FWH+xHarbour+TMySql | Probá deshabilitando el firewall de windows. O configuralo para que permita a MySql.
Postea aqui tu codigo para que todos lo podamos revisar y asi obtienes ayuda general del foro. (postea un codigo que podamos compilarlo facilmente)
Saludos. |
A expertos en FWH+xHarbour+TMySql | Francisco
Estoy usando el que me pusiste como ejemplo, solo ese, compila bien pero no conecta, con el utilitario YOG ingreso a la BD normal.
[code=fw:xj2s88lx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span>... |
A expertos en FWH+xHarbour+TMySql | Una pregunta que versión de mysql estas usando ???? |
A expertos en FWH+xHarbour+TMySql | Ante todo gracias Hector, el MySql es 5.5 |
A expertos en FWH+xHarbour+TMySql | Luis
Root tiene permiso en el mysql para acceder desde cualquier lugar, |
A expertos en FWH+xHarbour+TMySql | y otra pregunta, tal vez sea tonta, que password estas usando? , porque en el ejemplo dejastes el indicativo pero al instalar el server debes haber colocado otro o instalastes el servidor con ese. |
A expertos en FWH+xHarbour+TMySql | Hector
Tengo el SQLYog y el MySql WorkBench, con ambos logro ingresar tanto a mi PC, como al servidor. Aún creo que el error es en la configuración del xDevStudio, alguna libreria o incompatibilidad entre ellas debe estar causando este problema, he probado con:
FW 6.12+ BCC551+xH 0.99.71
FW 6.12+ BCC551+xH 1.2.1
FW ... |
A expertos en FWH+xHarbour+TMySql | Estimados
Tal vez enviándome la imagen de su configuración podría copiarla y ver como adaptarme a la misma, yo tengo xDevStudio, xEdit, Verce, xMate.... ustedes dirán.
Gracias
Luis |
A expertos en FWH+xHarbour+TMySql | Luis
Yo trabaje con la Tmysql al principio con la versión 3.3 de mysql y nunca tuve ningún problema, luego cuando pase a mysql 5.xx me pase a la tdolphin y es la que uso, que tiene en una parte una forma muy similar a la tmysql por eso me resulto muy practica y ademas tienes a su creador en el foro con una intensa par... |
A expertos en FWH+xHarbour+TMySql | Luis,
Tengo dos sistemas (Contabilidad, y facturacion) desarrollados con TMySql y no tengo (hasta el momento) ningún problema. El codigo que te posteé es el mismo que uso en ambos.
Prueba lo siguiente, por favor:
1 - Crea, con el SqlYog, un nuevo usuario ej: "Luis", con el password "Luis"
2 - Le das todos los privilegi... |
A expertos en FWH+xHarbour+TMySql | Francisco
Creé el nuevo usuario y nada!, sigo con la idea que es algo de la configuración de xDevStudio o incompatibilidad entre librerías, si pudieran postear como tienen distribuidas sus librerías en este editor y que versiones son, se los agradecería.
Atentamente
Luis |
A expertos en FWH+xHarbour+TMySql | Dame tu email para enviarte un ejecutable funcionando aquí.
Saludos. |
A expertos en FWH+xHarbour+TMySql | Mi correo es <!-- e --><a href="mailto:ltorreslm@hotmail.com">ltorreslm@hotmail.com</a><!-- e -->
Gracias |
A expertos en FWH+xHarbour+TMySql | Te he enviado ejecutable,prg y otros.
Saludos. |
A extra Info-area at xBrowse-bottom ( footer ) ? | To Mr. Rao,
Mr. Rao, could it be possible to have some extra space at the bottom of the xBrowse footer-area ?
In many cases I have to add some infos of the table ( to be exported to Excel as well ).
I think it would be a useful extension.
Maybe something like used on header :
oBrw1:[color=#0000FF:1y9zbfoc]SetGroupHe... |
A extra Info-area at xBrowse-bottom ( footer ) ? | Let us keep this in TODO list.
May not be possible very soon. |
A fastedit sample with recordset? | Mr. Rao:
Excuse me, do you have or where can I find a xBrowse Sample with fastedit full (ADD, DELETE, MODIFY) ?
Regards |
A fastedit sample with recordset? | Simplest:
[code=fw:3jqqammc]<div class="fw" id="{CB}" style="font-family: monospace;">XBROWSER oRs FASTEDIT</div>[/code:3jqqammc]
For a more detailed sample, please see \fwh\samples\testxbr3.prg |
A fastedit sample with recordset? | Mr. Rao:
Thanks a lot, I will.
Regards |
A favor for a friend | Dear friends,
If you have facebook please do this favor for a good friend of mine:
1. Look for "Avenida fotógrafos" and click like it.
2. Look for this photo (in avenida fotógrafos page) and click on like it too.
My good old friend will be very happy, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt... |
A favor for a friend | Done! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
A favor for a friend | Thanks to all, they won <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) --> |
A few minor glitches with GROUP RADMENU | Hi Antonio and fellow FiveLinuxersGROUP doesn't seem to work properly with the PIXEL option, I believe that FiveLinux.ch is not correctly translating the @ <row>, <col> GROUP command because it is not including a [ <lUpdate: UPDATE> ] to pass as <.lUpdate.> into TGroup():New() so the <.lPixel.> value is passed in the w... |
A few questions with regards to RichEdit | Hi guys,
These questions uses a reduced, self-contained example that'll appear way below as point of reference. Just copy it to \fwh\samples and compile and run it from there.
So here's the question:
1. When I click on [b:3cb1n1m2]File -> Edit[/b:3cb1n1m2], the dialogue box appear but the second RTF con... |
A few questions with regards to RichEdit | Antonio,
Any idea? |
A few questions with regards to RichEdit | Hua,
Please try it this way:
[code=fw:vzbs98se]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"richedit.ch"</span><br /... |
A few questions with regards to RichEdit | Thanks Antonio! The program is now working as expected and the error message after exiting the program is gone.
I don't actually understands what ResetOleUninit() is for though <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
A few questions with regards to RichEdit | Hua,
You are not using OLE there, so that change is fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
A few questions with regards to RichEdit | Mr Antonio
[quote="Antonio Linares":3uzrybgk]Hua,
You are not using OLE there, so that change is fine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:3uzrybgk]
Does this interfere with an application extensively using TOleAuto() in other modules ?
How about making... |
A few questions with regards to RichEdit | Dear Rao,
I have been reviewing the source code of RESETOLEUNINIT() and there is no conflict with TOleAuto() except that a call to OleUninitialize() is done.
We need to check if OleInitialize() works like a DLL (using an internal counter). If yes, there should be no conflict at all with TOleAuto(). |
A first overview of the DB-Tools ==> Vers. 8.2 f | Hello from Germany
I'm still busy with testing the DB-Tools, but it
is possible, to show what's going on.
It is not everything translated in english,
but i think it is possible to understand.
Excuse me, when not everything works 100 %
for the moment. It is still a lot to do.
The complete program-source will be
free ... |
A first overview of the DB-Tools ==> Vers. 8.2 f | Mr ukoenig
Very nice effort.
I started the program. Clicked the Left button on the button bar "QuickBrowse". Selected DBF file and then I got this error.
[code:2sul6u8e]
Anwendung
==========
Pfad und Name : C:\TESTS\Bin\G_tools.exe (32 bits)
Größe : 2,006,528 bytes
Zeit ab Start :... |
A font-problem in METRO-app ? | I suggest you do not directly assign fonts to each button. Instead please assign fonts to the metro panel like this:
oPanel:oBtnFont:End()
oPanel:oBtnFont := oNewFontForBtnCaption
oPanel:oTextFont:End()
oPanel:oTextFont := oNewFontForBtnText
You do not destroy your fonts because oPanel destroys these new fonts when ... |
A font-problem in METRO-app ? | Hello,
I have a problem with fonts in my METRO-aplication
[b:2vdpeft8]Fonts defined on top[/b:2vdpeft8]
[color=#008000:2vdpeft8]DEFINE FONT oFontLarge NAME "Arial" SIZE 0, -50 BOLD ITALIC
DEFINE FONT oFontTime NAME "Arial" SIZE 0, -25 BOLD ITALIC
DEFINE FONT oFontMed NAME "Arial" SIZE 0, -20 BOLD
DEFINE FONT oFo... |
A font-problem in METRO-app ? | I tested but got funny results
the LOG-file messages are fixed.
activating : oPanel1:oFont, Title and buttons are using the same font
oPanel1:oBtnFont and oPanel1:oTextFont are not shown
I used :
[code=fw:2xv028fx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// my def... |
A font-problem in METRO-app ? | Ok. Now font destruction issues are resolved.
May I know what other problems you have and what assistance I can provide? |
A font-problem in METRO-app ? | It seems the fonts are not used :
oPanel1:oFont:End()
oPanel1:oFont := oFontLarge // Title
[img:2104yjyp]http://www.pflegeplus.com/IMAGES/Metrob5.jpg[/img:2104yjyp]
oPanel1:oBtnFont:End()
oPanel1:oBtnFont := oFontTiny // Button
oPanel1:oTextFont:End()
oPanel1:oTextFont // Button
[... |
A font-problem in METRO-app ? | Please do these assignments
[code=fw:11lahbi3]<div class="fw" id="{CB}" style="font-family: monospace;">oPanel1:<span style="color: #000000;">oFont</span>:<span style="color: #000000;">End</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br />oPanel1:<span style="color: #00000... |
A font-problem in METRO-app ? | to be sure, nothing strange is included
I added the fonts to sample [b:1dpdrui6]< metrptst.prg >[/b:1dpdrui6] with the same results
title and buttonfonts are the same
[img:1dpdrui6]http://www.pflegeplus.com/IMAGES/MetroB7.jpg[/img:1dpdrui6]
from original sample :
function Main( cParam )
local oWnd, o... |
A free Forum-service : any Textlogo for FWH-users | Hello,
as a free service, I offer to create
any needed special TEXTLOGO
with a defined Background ( structure ) or transparent
for all friends and users of FWH.
The logo can be placed insided this toppic for download
or can be send by email to Your address.
Just define the
[color=#0000FF:32ibzyw5][size=150:32ibzyw5]... |
A free Forum-service : any Textlogo for FWH-users | Uwe,
many thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
A free Forum-service : any Textlogo for FWH-users | Halo Uwe..
Very nice logo..
Can you send me at: <!-- e --><a href="mailto:Mulyadi@ksk.co.id">Mulyadi@ksk.co.id</a><!-- e -->
Thanks...
Best regards..
Mulyadi
FWH+xHarbour+ADO+Oracle |
A free Forum-service : any Textlogo for FWH-users | You can add up to 3 textlines.
Selection [color=#FF0000:3vtet3ma]<[b:3vtet3ma]Deformed[/b:3vtet3ma]>[/color:3vtet3ma] will use the 3 lines to create a Logo
[img:3vtet3ma]http://www.pflegeplus.com/pictures/DLogo8.jpg[/img:3vtet3ma]
The needed Infos :
[b:3vtet3ma]1. Text 1[/b:3vtet3ma]: [b:3vtet3ma][co... |
A free Forum-service : any Textlogo for FWH-users | Very nice... |
A free Forum-service : any Textlogo for FWH-users | The first requested Logo :
1. with Background ( Jpg )
[img:5mlrcgfl]http://www.pflegeplus.com/pictures/jose1a.jpg[/img:5mlrcgfl]
2. transparent Text ( PNG can be painted on any other Background )
[color=#0000FF:5mlrcgfl][b:5mlrcgfl]oBmpAlpha:=TImage():Define(, "Logo.png")
..
ACTIVATE DIALOG oDlg NOW... |
A free Forum-service : any Textlogo for FWH-users | You can select one of the predefined style as well. Next change the color
Select Col and Row
Predefined Styles = E 5
You can change the Background- and Textbrush like :
3. Background
-------------
a) Color : -
b) Gradient : -
c) Material : S 1
4. Text-brush
-------------
a) Color : -
b) Gradient : - -
c) Material... |
A free Forum-service : any Textlogo for FWH-users | Fantastic Many thanks |
A free Forum-service : any Textlogo for FWH-users | Hello Wilson,
no problem, to select another style with maybe more textlines ( new )
or a predefined style.
I changed the selection defines like < A 5 >
have a look at the new style pictures.
Samples of 3 - line Logos
Mouse rightclick /save to save this transparent PNG
[img:1rsgpnyu]http://www.pflegeplus... |
A free Forum-service : any Textlogo for FWH-users | Uwe many thanks nices logos specialy the last |
A friend has gone but he remains in our hearts | Dear friends,
Tonight Otto let me know this sad news, that we must share here, because though Stephan has gone, it has been a pleasure to meet him here, always kind, helping, another true Clipper-heart, with who we have shared many moments:
[url:1svkd7ga]http://www.uni-kassel.de/fb14bau/fileadmin/datas/fb... |
A friend has gone but he remains in our hearts | Ditto |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.