topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
checkbox and on change | Hello Silvio,
it might be the best to ask Antonio, if it is possible, to display fields with empty date.
I searched for the source of datapicker-class, but couln't find it.
In [color=#FF0000:12d3bk34]datetime.prg [/color:12d3bk34]I found a checkbox inside the Date-Field,
maybe there is a way to use it.
Best Regards
... |
checkbox and on change | Silvio, Uwe,
it should be possible to display an empty datefield if you add DTS_NONE to the style of DTPicker. |
checkbox and on change | Uwe
the check not run the DTPICKERs not refresh()
REDEFINE DTPICKER oT:oDat[24] VAR oT:aDat[ 24] ID 128 OF oDlc ON CHANGE oT:oDat[24]//dal
REDEFINE DTPICKER oT:oDat[25] VAR oT:aDat[ 25] ID 129 OF oDlc ON CHANGE oT:oDat[25]//dal
REDEFINE CHECKBOX oT:oDat[26] VAR oT:aDat[26] ID 130 O... |
checkbox bug | I made this test but I think there is a bug if I create a dialog NO resource
I cannot click the checkbox
[code=fw:2mrboctm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">(</span><span style="color: #000000... |
checkbox bug | hello silvio
your checkbox are so big and cross over other chkbox ... try with size 30,20 |
checkbox en columna de un listbox | Hola a todos.
Como puedo hacer para colocar un checkbox editable en cada renglon para la columna correspondiente a un campo logico de un listbox? Lo que deseo hacer es algo tan sencillo para el usuario como "palomear" los registros que le interesa seleccionar antes de un proceso siguiente.
Existe algun ejemplo?
Gracia... |
checkbox en columna de un listbox | Arturo,
Es facil de hacer:
1. Necesitas tener un campo logico en la DBF que indique si el registro esta seleccionado.
2. En una columna del browse muestras un dibujo (bitmap) de un checkbox segun ese campo sea verdadero o falso:
... FIELDS If( MiAlias->Selecion, hBmpOn, hBmpOff ), ...
3. Al evento de doble clic... |
checkbox en columna de un listbox | Gracias Antonio.
La solución que me das es sencilla y efectiva.
Estoy dudando como asignar un bitmap a una variable, voy a intentar las formas que se me ocurren y si no puedo pediré ayuda de nuevo.
Saludos. |
checkbox en columna de un listbox | Arturo,
Puedes guardar el bitmap en los recursos que van incrustados en el EXE o usar un fichero BMP externo.
Las formas de cargarlo en una variable son:
1. Desde recursos:
local hBmp := LoadBitmap( GetResources(), cBmpResName )
2. Desde un fichero BMP externo:
local hBmp := ReadBitmap( 0, cBmpFileName )
En FWPPC... |
checkbox en columna de un listbox | Gracias Antonio. Saludos. |
checkbox en xbrowse | Hola
no consigo hacer que aparezca el cuadradito de check en una columna que es de tipo logica
me pinta .t. o .f.
le he dado todas las formas posibles con "ON" y "OFF"
[code=fw:xw6dy1fn]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">REDEFINE</span> <span style="color... |
checkbox en xbrowse | Primero, estas usando DBF o MYSQL.?
Segundo, si es DBF tiene el campo como logico.?
Tercero, si es MYSQL debes de convertir el valor del campo en .t. / .f. ya que mysql no maneja campos logicos.
Cuarto, puedes poner todas las opciones como defines esa columna para usar el SetCheck,
Quinto, saludos... <!-- s:shock: -->... |
checkbox en xbrowse | Me explico mejor con una imagen
<!-- m --><a class="postlink" href="http://img534.imageshack.us/img534/552/8azl.jpg">http://img534.imageshack.us/img534/552/8azl.jpg</a><!-- m -->
espero su ayuda |
checkbox en xbrowse | [quote="joseluisysturiz":aovps0nb]Primero, estas usando DBF o MYSQL.?
Segundo, si es DBF tiene el campo como logico.?
Tercero, si es MYSQL debes de convertir el valor del campo en .t. / .f. ya que mysql no maneja campos logicos.
Cuarto, puedes poner todas las opciones como defines esa columna para usar el SetCheck,
Qu... |
checkbox en xbrowse | intenta suspender el IF haber si te lo muestra y el oCol:bStrData:={||NIL} es el valor del campo, porque lo colocas en NILL si debe ser .f. o .t. para que aparezca el checkbox.? saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
checkbox en xbrowse | por favor, pon despues del redefine xbrowse
oBrw:SetRdd()
prueba y comentas.
salu2
carlos vargas |
checkbox en xbrowse | joseluis:
le he puesto oCol:bStrData:={|| .t.} y bota error
[quote="joseluisysturiz":2k18eozm]intenta suspender el IF haber si te lo muestra y el oCol:bStrData:={||NIL} es el valor del campo, porque lo colocas en NILL si debe ser .f. o .t. para que aparezca el checkbox.? saludos... <!-- s:shock: --><img src="{SMILIES_P... |
checkbox en xbrowse | Pon el SetRdd inmediatamente despues del REDEFINE por favor |
checkbox en xbrowse | [quote="carlos vargas":3bkhj5gn]Pon el SetRdd inmediatamente despues del REDEFINE por favor[/quote:3bkhj5gn]
Gracias carlos x tu ayuda pero no funcka
sera x la version fwh que tengo es la 8.11?, compile unos prgs demos de xbrowse que consegui por alli pero igual
me sale .t. ó .f. en la columna de campo logica en vez de... |
checkbox en xbrowse | Intenta asi haber
oCol:bStrData:={|| nombre_del_campo con su alias }
y confirma bien si el tipo de campo el logico...deberia funcionarte...saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
tambien intenta asi haber que te hace setcheck({"ON","OFF", ... |
checkbox en xbrowse | [quote="joseluisysturiz":2m8mteap]Intenta asi haber
oCol:bStrData:={|| nombre_del_campo con su alias }
y confirma bien si el tipo de campo el logico...deberia funcionarte...saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
tambien intenta asi haber ... |
checkbox en xbrowse | Con array a mi me funciona como sigue,
adjunto el exe con todo y codigo,
marca y desmarca con doble clik o barra espaciadora espero te de una LUZ
[url:6f4060ty]https://app.box.com/s/riv066zwek9qqkgugx8f[/url:6f4060ty]
saludos.
[code=fw:6f4060ty]<div class="fw" id="{CB}" style="font-family: monospace;">* ma... |
checkbox en xbrowse | [quote="sysctrl2":3m16erha]Con array a mi me funciona como sigue,
adjunto el exe con todo y codigo,
marca y desmarca con doble clik o barra espaciadora espero te de una LUZ
[url:3m16erha]https://app.box.com/s/riv066zwek9qqkgugx8f[/url:3m16erha]
saludos.
[code=fw:3m16erha]<div class="fw" id="{CB}" style="fo... |
checkbox en xbrowse | Gracias cesar ya funciono
asi lo solucione
[code=fw:mj7u3z09]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /> <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">1000</span>... |
checkbox en xbrowse | Sabia que te daria una LUZ,
saludos. |
checkbox en xbrowse | Hola.
Seguí tu ejemplo, entendi pero... en mi caso es un campo logico, y me sale el .f. o .t. como hago para que solo salga el tilde y no los valores .f. o .t.?
intente ponerle nil a :bStrData pero salto error.
gracias. |
checkbox en xbrowse | Tengo el siguiente problema, tengo un array con un item lógico, probé de varias formas pero no funciona correctamente. Alguien me podría facilitar un pequeño ejemplo de como hacerlo. Yo hice esto
[code=fw:v3s4eodr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <s... |
checkbox en xbrowse | creo que te falta una definicion de columna
[code=fw:xnz7s7qh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBrowse</span> obrw1 <span style="color: #0000ff;">id</span> <span style="color: #000000;">101</span> oD... |
checkbox en xbrowse | Armando muchas gracias, tu código me sirvió para aclarame muchas cosas.
Un abrazo.
Luis |
checkbox in tcbrowse | salve a tutti,
in un programma uso le classi tcbrowse e tccolumn per gestire un dbase,
è possibile cambiare dati logici con una checkbox invece di inserire F o T?
(fwh7.1 con xHarbour 0.99.71)
grazie, marzio |
checkbox in tcbrowse | Questo è un esempio con TWBrowse immediatamente adattabile a TCBrowse.:
[code:1g4cakzc]#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oBrw
LOCAL hBmp1 := READBITMAP( 0, "SELECT.BMP" )
LOCAL hBmp2 := READBITMAP( 0, "UNSELECT.BMP" )
USE TEST
DEFINE... |
checkbox in tcbrowse | funziona bene con listbox.
con column browse:
@ 0, 5 COLUMN BROWSE oBrw OF oDlg SIZE 360, 195 PIXEL ALIAS "test"
oBrw:AddColumn(TCColumn():New(, {|| FIELD->first}...
oBrw:AddColumn(TCColumn():New(, {|| FIELD->last}...
oBrw:AddColumn(TCColumn():New(, {|| IF(FIELD->married, hBmp1, hBmp2)},, ,,, 10, .F., .t.,,,, .f., ))... |
checkbox in tcbrowse | L'ottavo parametro di TCColumn():New() è lBitmap.
EMG |
checkbox indeterminate | [img:2fqags6e]https://2000thingswpf.files.wordpress.com/2011/07/001-threestate.png[/img:2fqags6e]
I saw on the checkbox there is chech() and uncheck() but on Web I saw there is also the possibility to set undeterminate set , so checkbox has 3 state
How create in fwh the third state ? |
checkbox into a listbox | Dear antonio,
perhaps I found a solution for tlistboxcheck class but now I see checkbox not 3d and not on theme xp
how I can create it ?
I made a try test also with xplook.rc but I cannot see checkbox 3d and no theme why ?
look the beta test sample
[img:1pkd9g18]http://img262.imageshack.us/img262/9117/c... |
checkbox into a listbox | dear antonio,
I think I found the error
when I draw the item of listbox I call a structure for dra the item :
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/92fhtw0f(VS.80">http://msdn.microsoft.com/en-us/library/92fhtw0f(VS.80</a><!-- m -->).aspx
typedef struct tagDRAWITEMSTRUCT {
UINT... |
checkbox into a listbox | Silvio,
Please review FWH\samples\ownerdra.prg and do it that way <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
checkbox into a listbox | Sorry Antonio,
I not use BITMAPS in My class listboxcheck as FWH\samples\ownerdra.prg
I create from an simply array a listbox show with check and the boxes of the check are not bitmaps
I create a real framecontrol
DEFINE WINDOW oWnd
oLbx:Tlistboxcheck():New( 10, 10, 150, 150, oWnd)
oLbx:AddItem( "linares", ... |
checkbox into a listbox | Antonio,
how I can call the OpenThemeData function and call a button control ?
I 'm searching but I not Know How call it
<!-- m --><a class="postlink" href="http://msdn.microsoft.com/en-us/library/bb759821.aspx">http://msdn.microsoft.com/en-us/library/bb759821.aspx</a><!-- m --> |
checkbox into a listbox | I need these functions
OpenThemeData
DrawThemeBackground
CloseThemeData
someone can help me ? |
checkbox into a listbox | Silvio,
> If I use bmps we eat resources to our application
No, you don't consume resources, if you properly release them |
checkbox into a listbox | Antonio,
why I cannot use listbox control and create a frame control into ?
why you're saying to me to use bitmaps as onwdraw.prg sample ?
Do you think I 'm making something against someone we Know ?
I create this class it not use resource
If I not resolve the problem of theme I use it the same ...
I 'am sure Reyes ... |
checkbox on ribbonbar | I made
@ 5, 7 ADD BUTTON oChk2 GROUP oGroup[1] BITMAP ".\bitmaps\checkon.bmp" MOSTLEFT SIZE 80, 45 PROMPT "Normale" ;
ACTION ( lNormale := ! lMultipla, oChk2:SetFile( If( lNormale, ".\bitmaps\checkon.bmp", ".\bitmaps\checkoff.bmp" ) ),;
)
@ 55, 7 ADD BUTTON oChk3 GROUP oGroup[1] BITMA... |
checkbox on ribbonbar | Silvio,
Try VALID and WHEN clauses. |
checkbox on xBrowse with surplus info | When creating a checkbox column for an array I get the following case:
<!-- m --><a class="postlink" href="https://imgur.com/a/rawGRIt">https://imgur.com/a/rawGRIt</a><!-- m -->
The code is created this way:
[code=fw:24b28dly]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;">... |
checkbox on xBrowse with surplus info | [quote:2usy76c1]
Needless to say that with previous version of FiveWin it did work. Surely is something simple that changed between versions,
[/quote:2usy76c1]
Nothing changed.
The code posted above does not exactly correspond to the image posted. Also the above code (without any other additions or modifications) cann... |
checkbox on xBrowse with surplus info | Mr. Nages:
If you make this simple modification to your program you get something similar:
...
oBrw:SetArray(aData)
WITH OBJECT oBrw:InsCol( 1 )
:bEditValue := { || AScan( oBrw:aSelected, oBrw:BookMark ) > 0 }
...
Of course, I corrected my program deleting the offending lines ( oBrwO:aCols :... |
checkbox on xBrowse with surplus info | Please do not use SetArray( aData ) again. This method is intended to be called only once while creation of the browse.
When defining XBROWSE, please specify the array as DATASOURCE aData. This command calls SetArray( aData ) at the right time.
We again request to specify the ArrayData in the XBROWSE command only bu... |
checkbox problem | I have a checkbox and I wish change the state
lVALUE:= .F.
@ 3, 3 CHECKBOX oChk VAR lVALUE PROMPT "&TEST " SIZE 300, 20 OF oDlg ;
ON CHANGE (lVALUE:=!lVALUE) UPDATE
if I click on checkbox it is activated , if I repeat the click it doesn't change the state |
checkbox problem | [code=fw:1ezpzxd2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">(</span>lVALUE:=!lVALUE<span style="color: #000000;">)</span></div>[/code:1ezpzxd2]
Remove it. |
checkbox problem | thanks |
checkbox transparente... | hola foro,
como hago un checkbox transparente? estan desde recurso y ahi ya le especifique tambien transparente...
ya probe:
define dialog ..... TRANSPARENT
activate dialog on init crea()
stat fun crea()
FOR x := 1 TO 16
REDEFINE CHECKBOX oChk[x] VAR lChk[x] ID (nID+x) OF oDlg
oChk[x]:l... |
checkbox transparente... | Paco,
Usas un brush en el diálogo ? |
checkbox transparente... | No, uso simplemente color..
Define dialog oDlg COLOR nRGB(232,232,208),nRGB(232,232,208) TRANSPARENT
tengo say e bitmap y esos si los toma transparentes...
gracias
Paco |
checkbox transparente... | Paco,
Tu aplicación usa temas ? (fichero WindowsXP.Manifest incluido en los recursos) |
checkbox transparente... | no estoy usando temas, pero si tengo incluido el windowsxp.manifest en el archivo de recursos..
salu2
Paco |
checkbox transparente... | Paco,
Aunque no los uses, al incluir ese fichero, FWH entiende que estás usando temas y eso modifica ciertos comportamientos (busca en los PRGs de FWH por IsAppThemed() )
Si tienes un color de fondo y quieres que el checkbox sea transparente, porque no le asignas el mismo color que el del diálogo ? Pero posiblemente ... |
checkbox transparente... | bien
gracias Antonio
salu2
Paco |
checkbox transparente... | Hola antonio yo estoy usando brush en mis dialogos y no logro ver transparentes ni los checkbox ni los radio.
Si lo logre con los Says gracias a la clase TGSAY qu eme baje.
Se te ocurre algo que pueda probar?
Gracias y saludos! |
checkbox transparente... | Hola gente,
¿Probaron haciendo ...
[code:18pcb06m]
oCheckBox:lTransparent:= .T.
[/code:18pcb06m]
?
Un saludo,
Carlos. |
checkbox transparente... | Nolgiati,
Por favor revisa fwh\samples\TestFldB.prg
[url=http://imageshack.us:2tviibp3][img:2tviibp3]http://img257.imageshack.us/img257/443/transjq8.png[/img:2tviibp3][/url:2tviibp3]
[url=http://imageshack.us:2tviibp3][img:2tviibp3]http://img257.imageshack.us/img257/2003/t... |
checkbox transparente... | Mil gracias!!
Ya tengo todos mis dialogos con los fondos que deseo y con todos los recursos totalmente transparentes. Esto lo hace muy bonito. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Gracias! |
checkbox with Bitmaps | can I create checkbox control with different bitmaps ? |
checkbox with Bitmaps | Hello Silvio,
a possible way, how to do it :
[img:1tiatq77]http://www.pflegeplus.com/pictures/checkbox2.jpg[/img:1tiatq77]
Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
checkbox with Bitmaps | [quote="Silvio":yh18i6jk]can I create checkbox control with different bitmaps ?[/quote:yh18i6jk]
Hi Silvio:
Could you show me a graphical approach of your request?
Regards.
Manuel Mercado |
checkbox with Bitmaps | LIKE as this :
[img:sxhb9aqr]http://img10.imageshack.us/img10/4564/chechbox.png[/img:sxhb9aqr] |
checkbox with Bitmaps | Silvio,
Your choice is my solution No. 2
It is easy to do :
1. Inside Your resource create the checkbox
2. delete the text and trim the resource to the square-size
3. next to the checkbox create a Image-Resource ( right )
4. next to the Image-resource write the needed text.
[img:2pmcm5du]http://www.pflegepl... |
checkbox with Bitmaps | Hi Silvio:
To do that, you better use a xBrowse grid you'll found some samples with checkbox and bitmaps in a xBrowse here in previous posts.
Regards.
Manuel Mercado. |
checkbox with Bitmaps | Hallo Manuel,
with a list of checkboxes, it might to be a good solution.
Many times, I have only one checkbox or checkboxes are not in line.
Of that kind, it is the only solution, showing a picture between checkbox
and belonging text, like shown in my screenshot.
Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/ic... |
checkbox with Bitmaps | [quote="ukoenig":153hysaz]with a list of checkboxes, it might to be a good solution.
Many times, I have only one checkbox or checkboxes are not in line.
Of that kind, it is the only solution, showing a picture between checkbox
and belonging text, like shown in my screenshot.[/quote:153hysaz]
Hello Uwe:
I agree, now ou... |
checkbox with Bitmaps | But I remember , I saw , there was a class , it creted checkbox with bitmaps or perhaps I remember bad
TYPE
@ x,y CHECKBOX oCheck BITMAP Filename "uno.bmp" Size XX,YY |
checkbox with Bitmaps | thanks |
checkbox with Bitmaps | Why don't you just use two columns--put the checkbox in the first column and the bitmap in the next one. It will look the same as you example.
Regards,
James |
checkbox tree.. idea... quien se suma? | A ver, les dejo este codigo no muy elaborado pero funciona.La idea es que me devuelva una cadena conteniendo un "1" cuando un checkbox de una rama esta seleccionada y un "0" cuando no. Cuando se cambia de rama pone un ".", lo hice para poder guardar esta cadena dentro de una tabla, asi lo uso luego para rearmar el tree... |
checkbox tree.. idea... quien se suma? | Gustavo,Has comprobado si oTreeView:GetCheck( oItem ) te devuelve .T. para un item con el checkbox marcado ? |
checkbox tree.. idea... quien se suma? | No logre entender tu pregunta, pero este codigo funciona. te mando por mail una prueba. no se donde poder colgarlo asi lo ven todos.Gracias.[quote="Antonio Linares":9ezs1o47]Gustavo,
Has comprobado si oTreeView:GetCheck( oItem ) te devuelve .T. para un item con el checkbox marcado ?[/quote:9ezs1o47] |
checkbox tree.. idea... quien se suma? | Hola y para que sirve <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?:... |
checkbox tree.. idea... quien se suma? | Aida,El trozo de codigo?[quote="AIDA":30lu657h]Hola
y para que sirve <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_ques... |
checkbox tree.. idea... quien se suma? | Gustavo,Súbelo a rapidshare y pon aqui la dirección de descarga, gracias |
checkbox tree.. idea... quien se suma? | [url:2oqlvq9d]http://rapidshare.com/files/158151410/testree.rar.html[/url:2oqlvq9d][quote="Antonio Linares":2oqlvq9d]Gustavo,
Súbelo a rapidshare y pon aqui la dirección de descarga, gracias[/quote:2oqlvq9d] |
checkboxes and DTPickers in xbrowse | <!-- m --><a class="postlink" href="http://www.mediafire.com/imageview.php?quickkey=dmdip477dmd&thumb=4">http://www.mediafire.com/imageview.php? ... md&thumb=4</a><!-- m -->
In Capelblog I saw that ourXdbu this wonderful tool, is completely developed with FWHX and xHarbour.....
In its browses we can see nice checkbo... |
checkboxes and DTPickers in xbrowse | ourdbu use tsbrowse I think |
checkboxes and DTPickers in xbrowse | [quote="Silvio":2ofv5ar4]ourdbu use tsbrowse I think[/quote:2ofv5ar4]
Well I could`nt be shure because I haven`t the source code, but the browse is themed and have all caracteristics of txbrowse, but may be I could be wrong... |
checkboxes and DTPickers in xbrowse | on an old tread Linares sad to use combox (yes or no) |
checkboxes and DTPickers in xbrowse | [quote="Silvio":2675j1nb]on an old tread Linares sad to use combox (yes or no)[/quote:2675j1nb]
Thank you Silvio,
That is what I´m doing now.
I thought that ourXdbu was using xbrowse, but his author told me that is an special browse modified by him.
So... I hope in future xbrowse will have checkboxes implemented, i... |
checkered sheet of paper from EASYREPORT | Hello,
for an intern report I needed a checkered sheet. Attached is the code I use.
[b:3hfkp1jf]EasyReport is very powerful. [/b:3hfkp1jf]
[code=fw:3hfkp1jf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> f_druck<span style="color: #000000;">(</span>... |
checkered sheet of paper from EASYREPORT | Nice Otto.
My dear friend Otto, I might also like ER but I could not complete the program in Harbour, I wanted the full version without the latest additions, I wanted to see if I could add ER in my applications but I did not succeed. It is difficult to draw an invoice or an order. In Italy the bills have the VAT rates ... |
checkered sheet of paper from EASYREPORT | Hello Silvio,
please post a screenshot. I will try to design this footer.
Best regards,
Otto |
checkered sheet of paper from EASYREPORT | [img:10wi3uyc]https://s8.postimg.org/lndgd0yt1/iva5.png[/img:10wi3uyc]
think
each product have a tax you must calc the sum for this tax
I have that values on a array..I make a cicle to calc subtotals
generally we insert until 4 tax different
[b:10wi3uyc]Imponibile[/b:10wi3uyc] is the total of i... |
checkered sheet of paper from EASYREPORT | [url:24qjrquo]http://www.atzwanger-software.com/fw/yunus2.zip[/url:24qjrquo]
Hello Silvio,
I uploaded a working sample to our server.
This is Yunus.prg extended with EASYREPORT.
Copy the files into your fivewin sample folder.
You have to link in vrd.lib ( from sources of github repository ) to your bu... |
checkered sheet of paper from EASYREPORT | Itried but there is a error
Application
===========
Path and name: C:\Users\admin\Downloads\yunus2\silvio\yotto.exe (32 bits)
Size: 5,843,968 bytes
Compiler version: xHarbour 1.2.3 Intl. (SimpLex) (Build 20150712)
FiveWin Version: FWHX 16.10
Windows version: 6.2, Build 9200
Time from start: 0 hou... |
checking an url | Hello,
To check an url, I use this function :[code=fw:2rkd0gps]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">FUNCTION</span> wfReadURL<span style="color: #000000;">(</span>cUrl,cNr,dUrl<span style="color: #000000;">)</span><b... |
checking an url | Michael
I googled the difference between Http and Https ..
[quote:2c5lqqep]
HTTPS is HTTP with encryption. The only difference between the two protocols is that HTTPS uses TLS (SSL) to encrypt normal HTTP requests and responses. As a result, HTTPS is far more secure than HTTP. A website that uses HTTP has http:// in... |
checking an url | [quote="driessen":mil4kla7]
[/code]Why is this function working fine while using an url starting with "http://" and why is it not working with "https://"?
In that case I got an error on the TipClienthttp:new() function.
Anyone any idea?
Thank you.[/quote:mil4kla7]
Maybe this can help you.
<!-- l --><a class="postlink... |
checking an url | Hi,
Is there any solution? |
checking an url | You are using hbtip.lib in your example, right?
You need the lib hbtipssl.lib to support https sites. |
checking an url | URLDOWNLOADTOFILE()
or
ohttp:= CreateObject( "MSXML2.XMLHTTP" )
ohttp:Open( "GET", "https://....", 1) |
checking an url | Thank you,
URLDOWNLOADTOFILE() function solved my problem. |
checking an url | Can you please try this simple function?
[code=fw:1v2681z5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cRet := WebPageContents<span style="color: #000000;">(</span> cUrl <span style="color: #000000;">)</span><br /><span style="color: #00C800;">if</span> Empty<span style="color: #000000;">... |
checking an url | [quote="nageswaragunupudi":39zkfy8l]Can you please try this simple function?
[code=fw:39zkfy8l]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cRet := WebPageContents<span style="color: #000000;">(</span> cUrl <span style="color: #000000;">)</span><br /><span style="color: #00C800;">if</span> Em... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.