topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
B4a free | Exelente. Tambien hemos desarrollado App. |
BACKGROUND ON A WINDOW | I must insert an image jpg as background in a window
but I know this only for bitmap and not run for jpg
sample
#define OSFONDO "D48.JPG"
...
DEFINE BITMAP oBmpSFONDO SFONDO FILENAME OSFONDO
...
ACTIVATE WINDOW oWChld MAXIMIZED;
ON PAINT (showBitmaps( oWnd, hDC, oBmpSFONDO:hBitmap,oBmpSFONDO ) )
// this is g... |
BACKGROUND ON A WINDOW | I made also this :
oBmpSFONDO = TImage():Define( , OSFONDO )
oWnd:oWndClient:bPainted := {|hDC| PalBmpDraw( hDC, 0, 0,oBmpSFONDO:hBitmap,,;
oWnd:oWndClient:nWidth, oWnd:oWndClient:nHeight,, .T.) }
but not run |
BACKGROUND ON A WINDOW | Silvio,
Do MsgInfo( oBmpSFONDO:hBitmap ) to check that you have a valid handle there. |
BACKGROUND ON A WINDOW | Hi Silvio:
This works for me:
[code:1tb4wumm] @ 0, 0 IMAGE oImg FILENAME C:\MG\IMAGES\MGLogom.jpg" OF oWnd:oWndClient ;
SIZE GetSysMetrics( 0 ), GetSysMetrics( 17 ) - GetSysMetrics( 15 ) - oBar:nHeight() - ;
oWnd:oMsgBar:... |
BACKGROUND ON A WINDOW | I try this sample but not run ok
[code:feqzftf1]
#include "FiveWin.ch"
#define OSFONDO "D48.JPG"
static oWnd
function Main()
local oBar
DEFINE WINDOW oWnd TITLE "Test" MDI ;
MENU BuildMenu()
DEFINE BUTTONBAR oBar 3DLOOK BUTTONSIZE 39,39 OF oWnd 2007
SET MESSAGE OF... |
BACKGROUND ON A WINDOW | Hi Silvio:
[quote="Silvio":3flbb92p]I try this sample but not run ok[/quote:3flbb92p]
For a MDICHILD try this:
@0,0 IMAGE oImg FILENAME OSFONDO OF oWChld SIZE oWChld:nWidth, oWChld:nHeight PIXEL ADJUST
Just remember that oImg is not a brush of oWChld, then other controls for this child window should belong to oImg in... |
BACKUP MYSQL como ? | Gente como executar e restaurar backup no mysql ?
Alguem poderia fornecer um exemplo de como criar uma rotina para esta finalidade?
Aokisantos |
BACKUP MYSQL como ? | SOLUCIONADO <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
BACKUP MYSQL como ? | Me podrias Indicar como lo hiceste...
De antemano Gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
BACKUP MYSQL como ? | [quote="leandro":1ywki5hr]Me podrias Indicar como lo hiceste...
De antemano Gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->[/quote:1ywki5hr]
Leandr,
Me corroe la inquietud.
Me gustaria que compartieras tu solución.
gracias de antemano |
BACKUP MYSQL como ? | En PHP:
[code:2915gxkt]
<?php
//Copyright (C) 2000-2006 Antonio Grandío Botella http://www.antoniograndio.com
//Copyright (C) 2000-2006 Inmaculada Echarri San Adrián http://www.inmaecharri.com
//This file is part of Catwin.
//CatWin is free software; you can redistribute... |
BACKUP MYSQL como ? | segue a solução:
<!-- m --><a class="postlink" href="http://www.fivewin.com.br/forum/topic.asp?TOPIC_ID=9423">http://www.fivewin.com.br/forum/topic.asp?TOPIC_ID=9423</a><!-- m -->
Aokisantos |
BACKUP MYSQL como ? | Holas, si se le asigna la usuario el priviliegio >"files", se puede usar la siguiente orden
"SELECT * INTO OUTFILE '/BACKS/listado.txt' FROM listado"
donde listado.txt contendra la infoirmacion de la tabla listado en formato txt plano...
Salu2 |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Saludos, estoy usando xHarbour, alguien ha hecho respaldo y restauracion de las database mysql con la clase TDolphin.? ...logre hacer el backup, luego probe restaurarlo con navicat y no me trajo las tablas, parece que el .SQL no es compatible, estoy probando restaurar con la misma TDolphin, [b:353msxux]mis tablas son I... |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Hola...
Yo uso estas sentencias para el backup y el restore,,,,( el detalle esta en que no guarda las estructuras,,, pero es mucho mas rápido que mysqldump)...
pero,,, solo backupeas y las restauras desde tu aplicación,,,,
SELECT * INTO OUTFILE //copias/productos FROM tabprod ORDER BY código // copia la data de la t... |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Willi, esa opcion la estoy probando, pero como dices, solo guarda la data y no la estructura de la tabla, intente usar mysqldump en un excute() y aun no me funciona bien, creo me falta un parametro, estoy leyendo sobre su uso, lei que algunas funciones de respaldo de MySql solo funcionan en tablas MyISam, saludos... <!... |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Hola,,,
Un detalle, esas funciones que te indique, solo funcionan en el server... no en las estaciones de trabajo,,, esto es valido por un tema de seguridad,,, así que desde cualquier estación no se puede sacar backups.... ya suena mas seguro.. |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Ya lo pille Willi, pero el detalles es que solo respalda la data y no la estructura de las tablas, pude hacer respaldo y estauracion con TDolphin, pero tengo una tabla con 700 registros, para respaldarla todo bien, pero cuando intento restaurarla no lo hace en esa tabla, probe borrando todas las tablas y crea la de los... |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Hola...
Hago backups con una 60m tablas y algunas de ellas con 500,000 registros,,, con los comandos que te mencione,,, y además los zipe con password... asi nadie (o casi nadie) las puede ver... echale un ojo a este código
[code=fw:3dmikk49]<div class="fw" id="{CB}" style="font-family: monospace;"><br /># include <spa... |
BACKUP/RESTORE DATABASE MYSQL CON TDOLPHIN | Jose Luis,
yo hago el mysqldump por medio de un .bat
cFile := "backup.bat"
lEsc := .f.
FErase( cFile )
if ! FILE( cFile )
nHand := FCreate( cFile )
FWrite(nHand, cComando )
FClose(nHand)
// Respaldo Antes de la Auditoria, Nombre del DUMP
cFileBackup := 'respaldo_' + DTOS(Date(... |
BAR 2007 | when I write a say into BAR style 2007 the say not is trasparent
when I insert the clausole trasparent to say it make error |
BAR 2007 | You have to use oBar:Say() method instead.
EMG |
BAR 2007 | I not see none method on Tbar
I have
DEFINE BUTTONBAR obar 3D OF oWnd SIZE 42,42 2007
@ 8, 987 SAY oSay PROMPT "Manager " SIZE 200,15 OF obar FONT oFont PIXEL
How I can do ? |
BAR 2007 | Silvio,
oBar:bPainted := { || oBar:Say( ... ) }
Please review source\classes\rpreview.prg for a oBar:Say( ... ) full sample |
BAR 2007 | thanks antonio I resolve It |
BARCODING READING AND PRINTING USING FWH | Hi Friends,
Has anybody implemented Barcoding, reading and Printing using FWH.
Kindly give me some examples.
- Ramesh Babu P |
BARCODING READING AND PRINTING USING FWH | If you need a aprofessional tools looks at <!-- w --><a class="postlink" href="http://www.combit.net">www.combit.net</a><!-- w -->
Regards Maurizio |
BARCODING READING AND PRINTING USING FWH | Hi Maurizio,
Do you work with combit list and label report in your app ?
If affermative could you pls. share with me a sample app to interface FWH to L&L ?
Thanks in advance
Marco |
BARCODING READING AND PRINTING USING FWH | [quote="RAMESHBABU":242dfpx9]Hi Friends,
Has anybody implemented Barcoding, reading and Printing using FWH.
Kindly give me some examples.
- Ramesh Babu P[/quote:242dfpx9]
Hello,
there are many possibilities, free and no free. Free you can use True Type Fonts, use google to get some of them, or you can use barlib, ... |
BARCODING READING AND PRINTING USING FWH | Barlib works great with xHarb and FWH
<!-- m --><a class="postlink" href="http://www.arrakis.es/~cayetano/barlib.htm">http://www.arrakis.es/~cayetano/barlib.htm</a><!-- m -->
Rick Lipkin
SC Dept of Health, USA |
BARCODING READING AND PRINTING USING FWH | [quote="Rick Lipkin":3w213owo]Barlib works great with xHarb and FWH
[/quote:3w213owo]
Is it free or payable? |
BARCODING READING AND PRINTING USING FWH | Free.
EMG |
BARCODING READING AND PRINTING USING FWH | As stated by Rick :
Barlib really works great with xHarb and FWH.
Is there any class available to read the barcodes into FWH through the
barcode reader and which barcode reader is simple, costeffective and good to work with FWH.
- Ramesh Babu P |
BARCODING READING AND PRINTING USING FWH | Keyboard-emulation barcode readers are the easiest to use as they don't require any special action from the programming side.
EMG |
BARCODING READING AND PRINTING USING FWH | [quote="RAMESHBABU":2z00bqan]Is there any class available to read the barcodes into FWH through the
barcode reader and which barcode reader is simple, costeffective and good to work with FWH.
- Ramesh Babu P[/quote:2z00bqan]
As stated by Enrico:
The modern barcode readers go attached to the keyboard plug, so, they w... |
BARCODING READING AND PRINTING USING FWH | Thanks to Mr.Enrico and RF.
You have suggested the right and easiest way to implement barcode reading.
Now I am now comfortable in implementing the barcodes in FWH.
- Ramesh Babu P |
BARCODING READING AND PRINTING USING FWH | Hello,
Where can I get BARLIB.LIB with documentation?
Thank you, |
BARCODING READING AND PRINTING USING FWH | Hi cdmmaui
[quote:1jg1r70g]Where can I get BARLIB.LIB with documentation? [/quote:1jg1r70g]
Send a request mail to my e-mail ID.
I will send a copy of BARLIB.ZIP
- Ramesh Babu P |
BARCODING READING AND PRINTING USING FWH | Hi Ramesh,
Thank you for your response. I have sent the request to your email.
Sincerely, |
BARCODING READING AND PRINTING USING FWH | Hi Ramesh,
Did you receive my request via email?
Thank you, |
BARCODING READING AND PRINTING USING FWH | I recently incorporate barcode printing and reading using de Cayetano's code. It was quite simple to do and althought not all the codes support by the library was correctly recognise, it was enought for me with the Ean13.
In a few day i'd like to test a OCX control captable to print PDF417 codes (but I don't have a re... |
BARCODING READING AND PRINTING USING FWH | <!-- m --><a class="postlink" href="http://hyperupload.com/download/021bdf8b63/BarLib.rar.html">http://hyperupload.com/download/021bdf8 ... b.rar.html</a><!-- m -->
Aqui encontrarán la clase barlib con ejemplos y la poca documentación existente (pero suficiente) probada con xHarbour 0.99.60 , funcionando muy bien.
Es... |
BARCODING READING AND PRINTING USING FWH | I agree that Barlib is a wonderful barcode library and I use it since years. But please notice that it has some resource leakages. As an example, in banner.prg che command RELEASE is incorrectly used:
release ofont
release open
instead of
release font ofont
release pen open
EMG |
BARCODING READING AND PRINTING USING FWH | I've noticed that with barlib barcodes are not displayed when previewing. Bar codes work well only when creating the print job without PREVIEW.
Can someone confirm this?
Thank you,
Reinaldo. |
BARCODING READING AND PRINTING USING FWH | No, I'm using Barlib and preview without problems.
EMG |
BARCODING READING AND PRINTING USING FWH | Mi amigo;
Thank you for your reply. BTW - congrats on the WC.
I went back and checked my code. Indeed I'm not using barlib, I'm using VRDBcode instead.
Has anybody been able to preview barcodes using the VRDBcode class?
Thank you,
Reinaldo. |
BARCODING READING AND PRINTING USING FWH | I could see a preview o the barcode but only when print 'one' barcode on the page.
I have modify also the VRDCODE class o fix a bug when print big size barcodes and add support for circular style barcodes.
If you are interest send me a email to send you a copy. |
BARCODING READING AND PRINTING USING FWH | Santi,
Please upload it to <!-- w --><a class="postlink" href="http://www.hyperupload.com">www.hyperupload.com</a><!-- w --> and post here the download url. Thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
BARCODING READING AND PRINTING USING FWH | Using VRDBCODE class if you want to do a preview of a report you must use oPrn:hDcOut instead oPrn:hDc when create the codebars.
Greetings.
Santiago Pérez. |
BARCODING READING AND PRINTING USING FWH | thanks santiago, i try this :
[code:2jnxa82d]
Function PrintBarCode()
Local oPrn
Local oBc6
printer oPrn preview
page
oBC6 := VRDBarcode():New( oPrn:hDcOut , "12345678", 80, 80, 10, 10,2 )
oBC6:lCircular:=.t.
oBC6:ShowBarcode()
endpage
end... |
BARCODING READING AND PRINTING USING FWH | Ok, I will implement the banner option also.
Create a 180º barcode could be a problem because I use solid circles to get a good barcode image. The arcs can't be easily fill with a color.
Perhaps a good solution it's to overwrite with a white rectangle the half of the circle to want to hide (top, bottom, left or righ... |
BARCODING READING AND PRINTING USING FWH | I sent you My test program .
Creating a 180° barcode you can use only black COLOR
YOu must give th epossibility to create option 90°, 180°, 270°, 360°
Yes the solution is good but you must write the code also on the center of barcode
there are many option you can make :
see this picture:
[url=http://img153.... |
BARCODING READING AND PRINTING USING FWH | To : Ramesh
You sent me barlib, to my email.
Is that you mean the barlib on this forum ?
thank
Areang |
BARCODING READING AND PRINTING USING FWH | Hi Areang
[quote:h2vg6245]Is that you mean the barlib on this forum ? [/quote:h2vg6245]
Sorry!. I don't remember exactly.
- Ramesh Babu P |
BARCODING READING AND PRINTING USING FWH | <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=3929">http://fivetechsoft.com/forums/viewtopic.php?t=3929</a><!-- m --> |
BARCODING READING AND PRINTING USING FWH | Thank Antonio
This lib work fine.
Areang |
BARLIB | Estoy utilizando desde hace tiempo BARLIB.
Me surgio un pequeño problema al querer utilizar Impresora Laser, antes usaba a Injet (chorro tinta).
xCor := ::oPrn:Cmtr2Pix(nArriba,nIzq)
yCor := ::oPrn:Cmtr2Pix(nAbajo,nDerecha)
nLen := ::oPrn:Cmtr2Pix( 4, 4 )[1]
@ xCor[1], xCor[2] + (nLen/5) ean8 cCod of ::oPrn bann... |
BARLIB | Eduardo.
Serias tan amable de facilitarme algun ejemplo ( prg chiquito ) para imprimir codigos de barra?
Yo uso en la actualidad fwh+hb y requiero imprimir un codigo de barras en una nota de venta y no he tenido tiempo para probar e investigar ( esa es la verdad ).
Podrias ayudarme con esto.
Saludos
Julio Gonzalez V.
... |
BARLIB opcion Banner | Un saludo al foro, estoy utilizando esta libreria utilizando la opcion de impresion en centimetros pero cuando incluyo la opcion BANNER si imprime el codigo de barra pero el letrero que va abajo del codigo no lo imprime.
Ej.
@ nRen, nPos CM_UPCA strzero(L,6) WIDTH nGro SIZE nLar OF opr banner
yo defino linea, poicion... |
BARRA O BOTONES EN FOOTER DE XBROWSE | Saludos, viendo unos sistemas modelos, me llamo la atencion un browse que contiene la barra del footer pero con botones y otros objetos, es posible hacer eso con nuestro xBrowse, creo seria algo muy favorable, seria como una buttonbar en ventana o dialogo, no tendria que ser exactamente en el footer, pero lo veo una bu... |
BARRA O BOTONES EN FOOTER DE XBROWSE | Has visto la funcion: XBrowse ( array ) por ejemplo?, aunque puede ser tambien una base de datos (depende de la version de FWH) |
BARRA O BOTONES EN FOOTER DE XBROWSE | [quote="cnavarro":3b8bmg54]Has visto la funcion: XBrowse ( array ) por ejemplo?, aunque puede ser tambien una base de datos (depende de la version de FWH)[/quote:3b8bmg54]
Saludos Navarro, gracias por tu rapida respuesta, el detalle es que mi xbrowse esta en un folder y tengo 2 xbrowse, al igual que la aplicacion dond... |
BARRA O BOTONES EN FOOTER DE XBROWSE | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=33970">viewtopic.php?f=3&t=33970</a><!-- l --> |
BASE/1132 Bound Error: array access from Errorsys line 360 | Hi again!
This error is happening when I pressing the CTRL+VK_LEFT on xBrowse:
[b:15nbczvh]Error BASE/1132 Bound Error: array access from Errorsys, line 360[/b:15nbczvh]
[img:15nbczvh]http://lh4.ggpht.com/ferreira.together/R_9Y-TjDQsI/AAAAAAAAAHs/Wasedib4WGY/s800/error.JPG[/img:15nbczvh] |
BASE/1132 Bound Error: array access from Errorsys line 360 | Júlio,
Are you using FWH 6.12 ? That version is from December 2006 !!!
There are lots of changes, enhancements and new features since then. |
BASE/1132 Bound Error: array access from Errorsys line 360 | [quote="Antonio Linares":12ots2oh]Júlio,
Are you using FWH 6.12 ? That version is from December 2006 !!!
There are lots of changes, enhancements and new features since then.[/quote:12ots2oh]
Ok Linares but, in my version, how I can resolve this? |
BASE/1132 Bound Error: array access from Errorsys line 360 | Júlio,
I can not tell you for sure right now. We will have to look for it and see what we changed then. |
BASE/1132 Bound Error: array access from Errorsys line 360 | [quote="Antonio Linares":l24ra16n]Júlio,
I can not tell you for sure right now. We will have to look for it and see what we changed then.[/quote:l24ra16n]
Ok Linares, please!
I have detected that this only happens when the last column of xbrowse is marked with lHide := .T.
It's happens inside of the method GoRightM... |
BASE/39 Write not allowed in MariaDB | Hi,
I got an error message:
[code=fw:363nx61f]<div class="fw" id="{CB}" style="font-family: monospace;"> Error occurred <span style="color: #00C800;">at</span>: <span style="color: #000000;">04</span>/<span style="color: #000000;">05</span>/<span style="color: #000000;">2020</span>, <span style="color: #000000;">00... |
BASE/39 Write not allowed in MariaDB | Hi,
I think I found my mistake.
in oTb_YAPILAN:D_BOS(YENIKAYIT)
[code=fw:2y2faoci]<div class="fw" id="{CB}" style="font-family: monospace;"> oRec:<span style="color: #000000;">SetDefault</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"YPL_BNK1"</span>, <span style="color: #000000;">3</... |
BASE/39 Write not allowed in MariaDB | Rowset:
oRs:SetDefault( field, uValue, lReadOnly ) // default lReadOnly is .t. |
BASE/39 Write not allowed in MariaDB | [quote="nageswaragunupudi":2l7sxlaf]Rowset:
oRs:SetDefault( field, uValue, lReadOnly ) // default lReadOnly is .t.[/quote:2l7sxlaf]
I could not find SetDefault in [url:2l7sxlaf]http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_fwmariaconnection[/url:2l7sxlaf]
I have learnt.
Thanks. |
BASE/39 Write not allowed in MariaDB | You will find it in the WIKI
<!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivewin_class_fwmariarowset">http://wiki.fivetechsoft.com/doku.php?i ... ariarowset</a><!-- m --> |
BASE/39 Write not allowed in MariaDB | Hi Mr. Rao,
I am stuck in here. |
BASE/39 Write not allowed in MariaDB | [quote="nageswaragunupudi":14a3cu7b]Rowset:
oRs:SetDefault( field, uValue, lReadOnly ) // default lReadOnly is .t.[/quote:14a3cu7b]
Hi Mr. Rao,
Is it valid for TDataRow class? |
BASE/39 Write not allowed in MariaDB | There is a similar method in TDataRow also.
But it should be enough if you set default in the rowset class. |
BASE/39 Write not allowed in MariaDB | [quote="nageswaragunupudi":ukzhx1i3]There is a similar method in TDataRow also.
But it should be enough if you set default in the rowset class.[/quote:ukzhx1i3]
Hi Mr. Rao,
I have a procedure for every table to set defaults (not READONLY). I use this procedures for set default both rowset and datarow class object. o... |
BASE/39 Write not allowed in MariaDB | [quote:2jl8mcl9]Is there any lReadOnly parameter in TDataRow? I need .f.[/quote:2jl8mcl9]
Yes |
BASE/39 Write not allowed in MariaDB | Hi Mr. Rao,
[code=fw:2nnaedol]<div class="fw" id="{CB}" style="font-family: monospace;">oRec:<span style="color: #000000;">SetDefault</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"KRM_TIP"</span>, <span style="color: #ff0000;">"S"</span>, .F.<span style="color: #000000;">)</span></... |
BASE/39 Write not allowed in MariaDB | I will check this. |
BASE/39 Write not allowed in MariaDB | waiting ... |
BASE/39 Write not allowed in MariaDB | Syntax for SetDefault in TDataRow class
[code=fw:2y9id1h8]<div class="fw" id="{CB}" style="font-family: monospace;">SetDefault<span style="color: #000000;">(</span> ncField, uDefault, lCanModify <span style="color: #000000;">)</span></div>[/code:2y9id1h8]
If the 3rd parameter is true, then user can modify.
It ... |
BASE/39 Write not allowed in MariaDB | [quote="nageswaragunupudi":35aw6vzz]Syntax for SetDefault in TDataRow class
[code=fw:35aw6vzz]<div class="fw" id="{CB}" style="font-family: monospace;">SetDefault<span style="color: #000000;">(</span> ncField, uDefault, lCanModify <span style="color: #000000;">)</span></div>[/code:35aw6vzz]
If the 3rd paramete... |
BASE/39 Write not allowed in MariaDB | [quote:3usi1yws]So you say the opposite is working with rowset.
[/quote:3usi1yws]
Yes. |
BASE/39 Write not allowed in MariaDB | Buenas noches
Tengo una tabla con la siguiente estructura en un campo:
[code=fw:1h8ywu33]<div class="fw" id="{CB}" style="font-family: monospace;">id_categ TINYINT<span style="color: #000000;">(</span><span style="color: #000000;">2</span><span style="color: #000000;">)</span> UNSIGNED ZEROFILL NOT <span st... |
BASE/39 Write not allowed in MariaDB | Por favor!
Como lo soluciono?... no puedo avanzar!
muchas gracias |
BASE/39 Write not allowed in MariaDB | [quote="Horizon":2iav08gv]Hi,
I think I found my mistake.
in oTb_YAPILAN:D_BOS(YENIKAYIT)
[code=fw:2iav08gv]<div class="fw" id="{CB}" style="font-family: monospace;"> oRec:<span style="color: #000000;">SetDefault</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"YPL_BNK1"</span>, <span s... |
BAT de compilação para FWH + HARBOUR + MSVC | Olá Antonio,
Você teria o fluxo para gerar a lib do fivewin usando FWH + HARBOUR + MSVC ? |
BAT de compilação para FWH + HARBOUR + MSVC | Rossine,
Puedes modificar este simple BAT para que use MSVC:
[code=fw:2f436l34]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">for</span> %%f in <span style="color: #000000;">(</span>*.prg<span style="color: #000000;">)</span> <span style="color: #00C800;">do</span... |
BAT de compilação para FWH + HARBOUR + MSVC | Rossine,
Mira como Kleyber esta modificando el BAT:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14669&p=76500#p76499">viewtopic.php?f=6&t=14669&p=76500#p76499</a><!-- l --> |
BAT para Recompilar FWH802 com xHB1.21 | Sr. Antonio,
Gostariamos de recompilar fwh8.02 com o novo xharbour 1.2.1, seria possível o Sr, informar a melhor maneira de faze-lo.
Ou seja, é possível o Senhor fornecer um BAT de Compilação?
Muito obrigado |
BAT para Recompilar FWH802 com xHB1.21 | Puedes usar HARB2LIB.EXE <!-- m --><a class="postlink" href="http://www.fivewin.com.br/exibedicas.asp?id=582">http://www.fivewin.com.br/exibedicas.asp?id=582</a><!-- m -->
Muchos saludos! |
BAT para Recompilar FWH802 com xHB1.21 | Alejandro, obrigado por responder.
Eu já utilizo o harb2lib, mais minha pergunta é, o mesmo já não esta desatualizado? |
BAT para Recompilar FWH802 com xHB1.21 | Yo utilice el HARB2LIB.EXE para compilar la FWH 9.04 con la version xHarbour 1.1.0 de abril del 2008 (por usar libs de terceros que no funcionan con las versiones posteriores de xHarbour).
Las aplicaicones me funcionan estables.
Saludos |
BBCode para Edit - Memo | Hola foro,
Me preguntaba... Hay alguna forma de rellenar un EDIT o MEMO con información con BBCode (<b></b> para negrita, <u></u> para subrayado, etc...)?
O de cambiar interactivamente ciertas cosas dentro de un get multilinea?
El usuario final no va a modificar NADA, es solamente para mostrar un conjunto de mensaje... |
BBCode para Edit - Memo | Puedes plantearte usar un control RICHEDIT, aunque evidentemente tendrías que realizar en la cadena del mensaje un STRTRAN de los tags que te vienen del BBCODE a los tags que utiliza el RICHEDIT. |
BBCode para Edit - Memo | An easy way is the save it as a temporary HTML file and view it as HTML.
Example:
[code=fw:11u812q2]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">local</span> cText := <span style="color: #ff0000;">"Normal <b>Bold text</b> <i>this is italics</i> again normal"</span><br /> ... |
BBCode para Edit - Memo | Mr Rao.,
Thanks a lot, it's what I'm looking for! |
BBDD en mysql | Estoy pasando una aplicación con bases distribuidas a MySql. Esta aplicación es para la liquidación de sueldos. Cada vez que termina un periodo de liquidación genero un nuevo directorio donde guardo el periodo ya liquidado ( esto es en Dbf´s). Así una empresa al correr del año genera unos 12 directorios. Mi pregunta es... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.