topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
cajón portamonedas con tprint | Podrias mostrar el código completo...
Salu2 |
cajón portamonedas con tprint | Normalmente una de las propiedades que incorporan las impresoras de tickes, es que al realizar un listado abran el cajón, que es lo que estas haciendo tu ahora, eso conlleva la impresión de un trocito de ticket.
Otra alternativa, es enviar directamente la secuencia de escape para abrir el cajon, sin realizar ningún li... |
cajón portamonedas con tprint | Biel,
Con unas preguntas: ??
Donde se consigue esta función:
[code=fw:hfyv5057]<div class="fw" id="{CB}" style="font-family: monospace;">WIN_PrinterPortToName<span style="color: #000000;">(</span><span style="color: #000000;">)</span></div>[/code:hfyv5057]
Y para que sirve?
Saludos.
Carlos. |
cajón portamonedas con tprint | Son funciones propias de harbour (hbWin.lib)
Win_PrinterPortToName(cPortName) Retrieves the name of the printer connected to a printer port.
Win_PintFileRaw(cPrinterName,cFileName) Prints a file to a Windows printer in RAW mode.
Antes ya existian, pero sin el prefijo WIN_ |
cajón portamonedas con tprint | Gracias Biel, me fue muy útil esa forma de abrir el cajón. |
cajón portamonedas con tprint | Gracias Biel, por la información.
Saludos cordiales.
Carlos. |
cajón portamonedas con tprint | Hola Biel.
Hay un equivalente de estas funciones WIN_PrinterPortToName y WIN_PrintFileRaw para xharbour?
Saludos |
cajón portamonedas con tprint | Me alegra que os sea de utilidad, con referencia a si existen estas funciones para xHarbour, creo que si, pero hace años que no uso xHarbour y no he seguido su evolución, prueba sin el prefijo WIN_
PrinterPortToName()
PrintFileRaw() |
cajón portamonedas con tprint | Willi, cuando la impresora está en puerto paralelo o en serie yo utilizo el siguiente código haciendo uso de TDOSPRN:
[code=fw:1482spos]<div class="fw" id="{CB}" style="font-family: monospace;">funct abrir_cajon<br /> oPrn:=TDosPrn<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<... |
calc the same record on xbrowse | the user insert products into a xbrowse
but can happened the user can insert thesame product is on xbrowse
How I can make to replace the quantity of the product and hid total into xbrowse
do you have a small sample ? |
calculadora nativa em FW | uso MsgDate para abrir o calendario ao clicar em button
@ 1, 1 GET oDat_Rece,,,dDat_Rece.. ... BITMAP "" PICTURE "99/99/9999" ACTION MsgDate( Date(),, oDat_Rece)
pergunta... existe algo semelhante para calculadora nativo de fw? |
calculadora nativa em FW | MsgCalc( nInitValue ) --> nVal |
calculadora nativa em FW | the calc msgcalc not show good the buttons
[img:1g9v02w1]https://i.postimg.cc/TYYpfbNQ/calc.png[/img:1g9v02w1] |
calculadora nativa em FW | obrigado nageswaragunupudi, Silvio
onde encontro o msgcalc.prg? procurei e não encontrei |
calculadora nativa em FW | [quote="Sistem":1w7rw3vm]obrigado nageswaragunupudi, Silvio
onde encontro o msgcalc.prg? procurei e não encontrei[/quote:1w7rw3vm]No se que versión tienes de fivewin pero en la actual esta incluida.
Enviado desde mi ONE A2003 mediante Tapatalk |
calculadora nativa em FW | brakaman
tenho a versão FWH1903, estranho não encontro |
calculadora nativa em FW | fwh\source\function\msgcalc.prg |
calculadora nativa em FW | Sivio, vi em um post que você tem sua própria calculadora
é open source? |
calculadora nativa em FW | alterei o msgcalc
obrigado a todos |
calculadora nativa em FW | Hace ya unos añitos que publiqué una calculadora que incluye un rollo de operaciones.
Como los links para descargar los fuentes se han ido eliminando copio aquí el código por si te viene bien.
Saludos.
[b:1m1wp9hk]TCALC.PRG[/b:1m1wp9hk]
[code=fw:1m1wp9hk]<div class="fw" id="{CB}" style="font-family: monospace;"><span ... |
calculadora nativa em FW | Verhoven ... Gracias |
calcular ancho de fuentes | Hola necesitaría saber como hago para saber el espacio que ocupa una fuente en mm con el distinto tamaño que elija en las impresiones.
Gracias |
calcular ancho de fuentes | Con:
oPrn:GetTextWidth(cTexto,oFuente) = Ancho (En Puntos/Pixeles) Del cTexto Usando oFuente En La Impresora Definida
oPrn:GetTextHeigth(cTexto,oFuente) = Alto (En Puntos/Pixeles) Del cTexto Usando oFuente En La Impresora Definida
Espero te sirva |
calcular ancho de fuentes | Gracias Rodolfo
Luis |
calcular ancho de fuentes | oPrn:GetTextWidth(cTexto,oFuente) me da el ancho en pixeles de un texto con una fuente en la impresora.
Ahora, como podre saber lo mismo pero de un texto colocado en una ventana?
oWnd:GetTextWidth(cTexto,oFuente) me da un error. |
calcular ancho de fuentes | GetTextWidth( <hDC>, <cString>, [<hFont>] ) --> <nPixelWidth>
Copiado del Manual
Saludos |
calcular ancho de fuentes | tambien tienes en la clase windows:
[code=fw:3s5j9emo]<div class="fw" id="{CB}" style="font-family: monospace;"><br />nsize := oWnd:<span style="color: #000000;">GetWidth</span><span style="color: #000000;">(</span> cText, oFont <span style="color: #000000;">)</span><br /> </div>[/code:3s5j9emo]
Saludos. |
calcular ancho de fuentes | Excelente!!! gracias. |
calcular edad entre fechas | Felicidades a todos! Buen año!
Como puedo calcular la edad entre dos fechas? |
calcular edad entre fechas | Esto es lo que tengo hasta ahora pero cuando pongo estas fechas da error
inicio: 07/11/1972
final: 06/11/2022
deberia dar 49 y da 50
[code=fw:3rsk2tmb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//////////////////////////////////////////////////////////////////////////////</... |
calcular edad entre fechas | [code=fw:3ohr5ahz]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\TFECHAS.PRG</span><br /><span style="color: #B900B9;">// Con xHarbour funciona Bien, Con Harbour, NO.</span><br /><br /><span style="color: #B900B9;">//////////////////////////////////////////////... |
calcular edad entre fechas | Goos
Prueba esta función y nos muestras el resultado.
[code=fw:3s6la2j4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">/*<br /> Edad : Función para determinar la edad en Años, meses y dias<br /> &nbs... |
calcular edad entre fechas | Ahora funciona con HABROUR y xHARBOUR perfecto.
[code=fw:35y5d2p4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\TFECHAS2.PRG</span><br /><span style="color: #B900B9;">// Con xHarbour funciona Bien, y ahora Con Harbour Tambien.</span><br /><span style="color:... |
calcular edad entre fechas | [quote="goosfancito":h0tcg8bc]Felicidades a todos! Buen año!
Como puedo calcular la edad entre dos fechas?[/quote:h0tcg8bc]
[code=fw:h0tcg8bc]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> ETA<span style="color: #000000;">(</span> dDat <span style="color: #... |
calcular edad entre fechas | Using example by Enrico:
[code=fw:3afglnkm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\TFECHAS2.PRG</span><br /><span style="color: #B900B9;">// Con xHarbour funciona Bien, y ahora Con Harbour Tambien.</span><br /><span style="color: #B900B9;">// Harbour e... |
calcular edad entre fechas | goosfancito
Aquí una función corta.
[code=fw:ub59nxd0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> Edad<span style="color: #000000;">(</span>Fx,Fa<span style="color: #000000;">)</span><br /><br /> Di=Day<span style="co... |
calcular edad entre fechas | Hola !
[code=fw:3a4zsywi]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> Fnct_Prueba<span style="color: #000000;">(</span>dFechaNacimiento, dFechaActual<span style="color: #000000;">)</span><br /><br /><br /> <span style="color: #00C800;">Local</span>... |
calcular edad entre fechas | Que buena clase eh José? Felicidades. Ahora, tiene incluso la edad de escribir.
[code=fw:29bdhgk8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\TFECHAS2.PRG</span><br /><span style="color: #B900B9;">// Con xHarbour funciona Bien, y ahora Con Harbour Tambien.<... |
calcular edad entre fechas | [quote="karinha":3t5iq3k2]Que buena clase eh José? Felicidades. Ahora, tiene incluso la edad de escribir.
[code=fw:3t5iq3k2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// \SAMPLES\TFECHAS2.PRG</span><br /><span style="color: #B900B9;">// Con xHarbour funciona Bien, y a... |
calcular stock dentro de un select con funciones de usuario | Gente:
Estoy migrando de dbf a sql y hasta ahora voy avanzando pero ahora tengo que mostrar el stock de artículos, mi tabla de artículos esta diseñada
asi:
[img]
[url=http://www.subirimagenes.com/otros-selectdearticulo-9890276.html:12t7pdzl][img:12t7pdzl]http://s2.subirimagenes.com/otros/pr... |
calcular stock dentro de un select con funciones de usuario | es un ejemplo con mysql, para que te oriente un poco
[url:pmolfpww]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=32245[/url:pmolfpww] |
calcular stock dentro de un select con funciones de usuario | Hola Armando gracias por responder
quiero convertir esta función en fivewin en una función sql
[code=fw:213f4g7f]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> INGANO<span style="color: #000000;">(</span>cAlias, nMes<span style="color: #000000;">)</... |
calcular stock dentro de un select con funciones de usuario | ¿Tus tablas estan migradas a Sql-server? |
calcular stock dentro de un select con funciones de usuario | Así es |
calcular stock dentro de un select con funciones de usuario | deja que el mismo motor sql te realice el trabajo, en vez de función ocupa una Procedure y que el dato devuelto lo tratas como un select común y corriente.
ejemplo personal para que te oriente un poco
[code=fw:361f9iar]<div class="fw" id="{CB}" style="font-family: monospace;"><br />USE <span style="color: #000000;">&... |
calcular stock dentro de un select con funciones de usuario | Gracias armando lo resolvi con función
tengo una duda existe macro sustitucion en sql , como era en vfp coningXX por los valores 01,02,03, 04,05, 06 ...12, que son los meses del año
[code=fw:3qjtcq23]<div class="fw" id="{CB}" style="font-family: monospace;"><br />CREATE <span style="color: #00C800;">FUNCTION</span> Cal... |
calculate the right position | I saw I can create a dialog with
local nHt := Int( ScreenHeight() * 0.5 )
local nWd := Int( ScreenWidth() * 0.5 )
DEFINE DIALOG oDlgAgenti SIZE nWd, nHt PIXEL FONT oFont TRUEPIXEL ;
TITLE cTitle TRANSPARENT COLOR CLR_BLACK,RGB( 245,244,234 ) ICON oIcon
But How I can calc the exact position of each say an... |
calculate a week | Dear Friends,
I have a date sample 16.10.2015
I wish Know the week where there is this date
sample : from 12.10.2015 to 17.10.2015
exist a function give me this ?
thanks in advance
I need this because I must calculate how many times a teacher is on a specific classroom |
calculate a week | The DOW() function? |
calculate a week | Sorry,
DOW() returns the day of the week as a number between zero and seven.
I want the function return me the date of first day of the week and the date of the seven day of the week of the date past
sample if I have 16.10.2015 -----> give me 12.10.2015 and 18.10.2015
I hope you undestood me |
calculate a week | Yes, that's right. But by using the function DOW(), you can get your goal like this :[code=fw:rtuhxqrs]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> FirstLastDOW<span style="color: #000000;">(</span>dDate<span style="color: #000000;">)</span><br /><br />... |
calculate a week | wom(date()), i read your post now |
calculate a week | FirstLastDOW(dDate) RUN GOOD ONLY
in Italy we have the first day monday and the six saturday ( seven sunday) |
calculate days | I have a dbf where I save some periods, each period have a different price list
I must calculate numbers of days totals and for each period
[img:7sc1uk7d]https://i.postimg.cc/mrfsPdn0/ff.png[/img:7sc1uk7d]
Now there are 4 periods but can be more periods
I have two date: dDateFrom and DateTO and I mu... |
calculate days | [code=fw:1instlza]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Test<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br... |
calculate days | cmq thanks
I saw now that maybe the reasoning is wrong because each price list must have n example periods:
Price list 1 has the periods displayed
Price list 2 has other periods
so I still do not know how to do the procedure |
calculate days | [code=fw:1kj3fkz6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Test<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br... |
calculate days | thanks |
calculate days | **********************************************
* para comparar datas com hora inicial e final
* $DOC$
* $FUNCNAME$
* FT_ELAPSED()
* $CATEGORY$
* Date/Time
* $ONELINER$
* Return elapsed time between two days and/or times
* $SYNTAX$
* FT_ELAPSED([ <dStart> ], [ <dEnd> ], ;
* <cTimeStar... |
calculate days | Dear Ing. Anton Lerchster,
on my database I have the filed date
if ! File( "periodi.dbf" )
aStructure = { { "date" , "D", 8, 0 },;
{ "rooms_id" , "C", 4, 0 },;
{ "check_in" , "D", 8, 0 },;
{ "check_out", "D", 8, 0 },;
... |
calculate days | Now run I add
SET DATE FORMAT "dd/mm/yyyy"
SET DATE ITALIAN
SET CENTURY ON
SET EPOCH TO ( YEAR( DATE() ) - 50 ) |
calculate the frequency of a number | I have to calculate the frequency of a number that is, I'll explain
I have these ninety numbers
[img:2f5g1he3]https://i.postimg.cc/fyMTTWFQ/box.png[/img:2f5g1he3]
For each number I must calculate the frequency
that is, how many times this number is repeated in the archive and in the same position, co... |
calculate the frequency of a number | Read the database once while copying all the data into a multidimensional array.
Then calculate the frequency using the array. |
calculate the frequency of a number | [quote="James Bott":184dq9lp]Read the database once while copying all the data into a multidimensional array.
Then calculate the frequency using the array.[/quote:184dq9lp]
that is in practice how should I do?
if I asked in the forum it means that I don't know how to do it
I cannot use ascan() on all fields because ... |
calculate the frequency of a number | [quote="James Bott":maib36j7]Read the database once while copying all the data into a multidimensional array.
Then calculate the frequency using the array.[/quote:maib36j7]
I made it but the time is big |
calculate the frequency of a number | Silvio,
Can you show your code?
LG
Otto |
calculate the frequency of a number | [quote="Otto":29bfhn05]Silvio,
Can you show your code?
LG
Otto[/quote:29bfhn05]
pls
[url:29bfhn05]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=41773&sid=58834d69e74baf1a1e9dfff11e5ebde3&sid=58834d69e74baf1a1e9dfff11e5ebde3#p250337[/url:29bfhn05] |
calculate the frequency of a number | [quote="Otto":350pzcnt]Silvio,
Can you show your code?
LG
Otto[/quote:350pzcnt]
Do you saw the code ?
LG ?
It is not here to discuss how to do the calculation because finding the frequency of a number is quickly done.
this is one of last draws
[img:350pzcnt]https://i.postimg.cc/ZRhVp32t/h.jpg[/img:... |
calculates the distance between two towns | Hello,
I converted a javascript program to FW.
This routine calculates the distance between two points (given the latitude/longitude of those points). It is being used to calculate the distance between two locations using GeoDataSource (TM) prodducts
Best regards,
Otto
[code=fw:2uvrob92]<div class="fw" id="{CB}"... |
calculates the distance between two towns | Otto:
Nice and interesting job.
Regards |
calculates the distance between two towns | [quote="Otto":2qt47886]Hello,
I converted a javascript program to FW.
This routine calculates the distance between two points (given the latitude/longitude of those points). It is being used to calculate the distance between two locations using GeoDataSource (TM) prodducts
Best regards,
Otto
[code=fw:2qt47886]<d... |
calculates the distance between two towns | Otto, Do you Know how show on a GoogleMAp a line from one point to another and calculate the distance ? |
calculates the distance between two towns | Otto,
the lat and long are wrong
but I create the map with a new class ( no googlemap)
these are right
Local aLineaTest:={;
{ "Brunic" , "46.79300837", "11.95655823" },;
{ "Sillian" , "46.7474103", "12.4196248" },;
... |
calculates the distance between two towns | Hello Silvio,
>the lat and long are wrong
what do you mean with this.
Very good. Can you share your source code.
Best regards,
Otto |
calculates the distance between two towns | [quote="Otto":187ve87s]Hello Silvio,
>the lat and long are wrong
what do you mean with this.
Very good. Can you share your source code.
Best regards,
Otto[/quote:187ve87s]
I mean the latitude the longitude of Sillian and Lienz that you wrote are wrong
I use a MapControl class that they published at least two years a... |
calculates the distance between two towns | [quote="Silvio.Falconi":32rp0ryc]I use a MapControl class that [b:32rp0ryc]they[/b:32rp0ryc] published at least two years ago,[/quote:32rp0ryc]
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very ... |
calculates the distance between two towns | [quote="AntoninoP":1ku0vas1][quote="Silvio.Falconi":1ku0vas1]I use a MapControl class that [b:1ku0vas1]they[/b:1ku0vas1] published at least two years ago,[/quote:1ku0vas1]
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggri... |
calculates the distance between two towns | Hello Antonino,
thank you so much for this source code.
All is working fine.
Silvio can you please show how you inserted the markers.
Best regards,
Otto |
calculates the distance between two towns | Read the class before..
For show markervyou must use use omap:addmarker method |
calculates the distance between two towns | Hello Silvio,
Thank you.
I see that there are values inside ::aMarkers.
But there are no markers painted.
Best regards,
Otto
xbrowse( ::aMarkers )
// draw the markers
for ix:=1 to len(::aMarkers)
x := ::GetTileNumber(::aMarkers[ix,1],::aMarkers[ix,2])
y := (x[2] - sy) ... |
calculates the distance between two towns | I NOT UNDERSTOOD
YOU MUST INSERT
OMAP:ADDMARKER(LONG,LAT,BDRAW)
AND THIS DRAW THE MARKER ON X,Y |
calculates the distance between two towns | Hello Silvio,
This is what I tried. But I do not see the marker.
I see that the array containing the marker is filled. But in my case, the marker is not painted.
Best regards,
Otto |
calculates the distance between two towns | Hi Otto,
see this piece of code:
[code=fw:u2s6as1k]<div class="fw" id="{CB}" style="font-family: monospace;"> bDraw := <span style="color: #000000;">{</span>|hDC,x,y| FW_DrawImage<span style="color: #000000;">(</span>hDC, oMarker, <span style="color: #000000;">{</span>y<span style="color: #000000;">-30<... |
calculates the distance between two towns | [quote="Otto":1tcvjr5i]Hello Silvio,
This is what I tried. But I do not see the marker.
I see that the array containing the marker is filled. But in my case, the marker is not painted.
Best regards,
Otto[/quote:1tcvjr5i]
you not see any markers because [b:1tcvjr5i]your lat and long are wrong [/b:1tcvjr5i]
[code=fw:1... |
calculates the distance between two towns | Thank you, Silvio.
But here the markers do not work.
Why do you have another bDraw block.
Would you be so kind to post yours.
Best regards,
Otto |
calculates the distance between two towns | Otto, have you see my post in previous page?
[quote="Silvio.Falconi":25efr5gn]
oMap:addmarker(12.417510,46.747540,bdraw)
[/quote:25efr5gn]
Silvio, you keep forgetting the radius parameter |
calculates the distance between two towns | yes sorry
[img:1y0j6q8q]https://i.postimg.cc/0yStsgyb/ggg.png[/img:1y0j6q8q]
// sample for Sillian
local oMarker := FW_ReadImage(oWnd,"marker.png")
DEFINE WINDOW oWnd TITLE "Map Test"
SetWndDefault(oWnd)
oMap := TMapControl():New() // open the class
oMap:SetCenter(12.417510,46.747540... |
calculates the distance between two towns | Hello Antonino, hello Silvio,
Thank you.
I have found the problem. On my system 667px-Map_marker.svg.png is missing.
Now all is working fine.
Best regards,
Otto |
calculo de font s de pantalla en impresora | Estimados colegas
Existe algun algoritmo para que me coincidan la ubicacion exacta de los
objetos en pantalla con que imprimo en la impresora, alguien tendria un ejemplo
lo hare despues de tener la resolucion calculada
Gracias |
calculo en campo get numerico | Hola,
Creo haber visto esto en algun sitio, pero....
En un get de una variable/campo numerico (con PICTURE '999,999.99'), ¿puedo colocar 2*4000 en vez de 8000?
Gracias anticipadas... |
calendar + planing | I am locking for any samples , how may I show calendar where is mark date from 2008.12.27 to 2009.01.13 |
calendar + planing | Kajot,Please review Class TPickDate (is a calendar that displays the entire year) where you can select a dates range. It was developed by Otto and me <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --><!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.... |
calendar not run ( DBLCLICK) | I use a get to select date
@ nRow, 70 GET aGet[1] VAR ddatacambio SIZE 100,24 PIXEL OF oDlgSub;
BITMAP "date.bmp" ACTION ( Selecdata(@ddatacambio, aGet[1]),aGet[1]:refresh())
the calendar run but when I double click it not run
i.e. it doesn't close the dialog and it doesn't refresh the date in the get
[cod... |
calendar not run ( DBLCLICK) | [b:nu73y9b5]Resolved !!!![/b:nu73y9b5] from Cristobal on December 2022 topic [url:nu73y9b5]https://forums.fivetechsupport.com/viewtopic.php?f=6&t=42588&hilit=handleevent&sid=be8d4e36fad4faadc29be0a06fc6690c&sid=be8d4e36fad4faadc29be0a06fc6690c#p256286[/url:nu73y9b5]
[b:nu73y9b5]Antonio, w... |
calendar not run ( DBLCLICK) | hi Silvio,
try
[code=fw:24aojq42]<div class="fw" id="{CB}" style="font-family: monospace;"> DBLCLICK <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">(</span> oCalendar:<span style="color: #000000;">GetDate</span><span style="color: #000000;">(</span><span style="color: #000000;">... |
calendar not run ( DBLCLICK) | [url:38i0rg4h]https://forums.fivetechsupport.com/viewtopic.php?f=6&t=42588&p=256489&hilit=DBLCLICK&sid=3f8c40518e679d3e6d0d162c76e82f08&sid=c0c8286d56d23c1b5c6b605b12e7d56d#p256489[/url:38i0rg4h]
Regards. |
calendar not run ( DBLCLICK) | [quote="karinha":q8nnqv0y][url:q8nnqv0y]https://forums.fivetechsupport.com/viewtopic.php?f=6&t=42588&p=256489&hilit=DBLCLICK&sid=2be243c98a21a4ca0d0c035997a14f73&sid=2be243c98a21a4ca0d0c035997a14f73#p256489[/url:q8nnqv0y]
Regards.[/quote:q8nnqv0y]
[b:q8nnqv0y]I not understood How resolve it
no entend... |
calendar not run ( DBLCLICK) | What I understood in the topic is that you need to report the problem to Master Antônio, so he can send an update. Explain the problem to Liñares, please.
Lo que entendí en el tema es que debe informar el problema al maestro Antônio para que envíe una actualización. Explíquele el problema a Liñares, por favor.
Regard... |
calendar not run ( DBLCLICK) | hi Silvio,
you use the wrong Control <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="Wink" /><!-- s;) -->
you have to use DTPICKER instead of CALENDAR <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: -->
in CLASS TCALENDAR is
[code=fw:3vm80tdr]<di... |
calendar not run ( DBLCLICK) | Jimmy,
if i use datepick instead of calendar then i don't get empty date.
why do i need the date to be empty?
because I have to lock the btnbmp control in fact the btnbmp control is active only when the data field is not empty.
Do you understand now why I have to use a control other than datepick? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.