topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
webserver using RESTFUL API and responsive | Hello,
here is another program where I would like to use Fivewin/Harbour and Fiveweb.
For me using Symfony is a step learning curve.
In Austria every bill must have a QR code.
Scanning this QR code takes automatically note of all your expenses and spendings.
I would like to program this “drivers log” in FIVEWEB. At ... |
webserver using RESTFUL API and responsive | Dear Otto,
I have created this simple FiveWeb test for you:
qrserver.prg
[code=fw:87rjvga2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWeb.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style=... |
webserver using RESTFUL API and responsive | Dear Antonio,
thank you. This easy it should be.
Now I have to talk with Manuel. I think the APP must be changed. We should get handyID + content of the qr code.
Maybe this should be secured in a way.
Can you explain please how I get this sample running on Bluehost.
I wish you a nice weekend.
Best regards,
Otto |
webserver using RESTFUL API and responsive | Otto,
> Can you explain please how I get this sample running on Bluehost
1. If you have an Apple computer, simply go to a terminal window and write:
ssh <!-- e --><a href="mailto:otto@www.ottoweb.com">otto@www.ottoweb.com</a><!-- e -->
where otto is your login name in Bluehost and ottoweb is the name of your site
... |
webserver using RESTFUL API and responsive | Hi Otto,
[quote="Otto":2w8cli19]
here is another program where I would like to use Fivewin/Harbour and Fiveweb.
For me using Symfony is a step learning curve.
[/quote:2w8cli19]
Symfony is a great framework, one of the best without a doubt... but it's learning curve is a little bit heavy.
I browsed to <!-- m --><a cla... |
webserver using RESTFUL API and responsive | Hello Carlos,
the Project is not released yet.
I send you an email.
Best regards,
Otto |
webserver using RESTFUL API and responsive | Hello,
I am now in the process of converting the QRCode project from SQL to DBF. Here I build an order page for the QR code signs.
[url:2pocsw9r]https://www.modharbour.club/mh_portfolioqrcode/portfolio.prg[/url:2pocsw9r]
Best regards,
Otto |
webserver using RESTFUL API and responsive | Hello,
Yesterday I bought a painting. It not only decorates our office but also serves as a background for our webpage for the new mod harbor project.
The whole web page is made with DBF files and mod harbor.
Best regards,
Otto
[img:fmq6t844]https://mybergland.com/fwforum/mistasucanvas.jpg[/img:fmq6t844]... |
webservice desde FWH | Estimados amigos
Necesito acceder a un Webservice desde una aplicacion de FWH usando la WinInet.dll
El webservice solicita varios datos que deben ser pasados como parametros, un User y un Password,he probado de varias maneras y no logro hacerlo funcionar!
He usado un ejemplo que encontre en el foro que es para consulta... |
webservice developed with mod_harbour | webservice.prg
[code=fw:2tkt72va]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> AP_SetContentType<span style="color: #000000;">(</span> <span style="color:... |
webservice implementation using php | [quote="cnavarro":7uu7fc30]You are welcome
Gabriel, explain better what you need[/quote:7uu7fc30]
I researched and only found something about importing three libraries to xHarbour in order to enable access to APIs with "https". But I can not get these libraries and I do not understand how to imbibe them.
Another solut... |
webservice implementation using php | Dear All ,
Is Any wrapper function exists to execute any kind of URL as given below ?
[code=fw:3mznp0nr]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #B900B9;">// for JSON</span><br /> jsonData := ExecuteURL<span style="color: #000000;">(</span> cU... |
webservice implementation using php | [quote="cnavarro":1vlvgar4]Well, the best thing to do is to do it in Harbour, so you will not have trouble finding the libraries, or at least it will be easier, but in any case, doing it with CreateObject is a good solution to access a WebService.
What version of Fivewin do you use?[/quote:1vlvgar4]
I use the Fivewin ... |
webservice implementation using php | Surely the best tool is CURL but my experience with CreateObject is also very good and I have not had any problems |
webservice implementation using php | Well, the best thing to do is to do it in Harbour, so you will not have trouble finding the libraries, or at least it will be easier, but in any case, doing it with CreateObject is a good solution to access a WebService.
What version of Fivewin do you use? |
webservice implementation using php | webservice.php
[code=fw:29mkmjuj]<div class="fw" id="{CB}" style="font-family: monospace;"><?php <br /> header<span style="color: #000000;">(</span><span style="color: #ff0000;">"Content-Type:application/json"</span><span style="color: #000000;">)</span>;<br /><br />  ... |
webservice implementation using php | Hi,
Basic code
[code=php:lxbv45jr]<div class="php" id="{CB}" style="font-family: monospace;"><span style="color: #808080; font-style: italic;">#include 'fivewin.ch'</span><br /><br /><span style="color: #808080; font-style: italic;">#define URL_ENDPOINT "http://www.fivetechsoft.com/webservice.php"</span><br /><br /><... |
webservice implementation using php | Thank you Carles! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Now lets enhance our webservice to inspect any provided parameters:
webservice.php
[code=fw:3ki84rn3]<div class="fw" id="{CB}" style="font-family: monospace;"><?php <br /> h... |
webservice implementation using php | Lets asume that we want to open a remote database table and retrieve a SQL query:
[url:2rse3im8]http://www.fivetechsoft.com/webservice.php?database=test&tablename=users&username=fivetech&password=1234&sql=select%20*[/url:2rse3im8]
We get this:
{"status":"ready","about":"FiveTech Software S.L. webservi... |
webservice implementation using php | Buenos días Antonio,
Interesante tema.
¿ Conectaremos con nuestro sistema fwh, al menos a nivel de datos (dbf) ?
¿ Podremos ejecutar un .exe fwh que genere un json ?
Salu2 |
webservice implementation using php | Paco,
Carles has already published the basic code to use it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=219690#p219690">viewtopic.php?p=219690#p219690</a><!-- l -->
Now we are... |
webservice implementation using php | A very basic example to allow SQL queries from our webservice:
webservice.php
[code=fw:3k1z7b11]<div class="fw" id="{CB}" style="font-family: monospace;"><?php <br /> header<span style="color: #000000;">(</span><span style="color: #ff0000;">"Content-Type:application/json"</span><span style="color: #000000;... |
webservice implementation using php | Hi,
Basic code (with params)
[code=PHP:2rqr9dcf]<div class="php" id="{CB}" style="font-family: monospace;"><span style="color: #808080; font-style: italic;">#include 'fivewin.ch'</span><br /><br /><span style="color: #808080; font-style: italic;">#define URL_ENDPOINT "http://www.fivetechsoft.com/webservice.php"</span... |
webservice implementation using php | <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
webservice implementation using php | [quote="Antonio Linares":kprex47h]Lets asume that we want to open a remote database table and retrieve a SQL query:
[url:kprex47h]http://www.fivetechsoft.com/webservice.php?database=test&tablename=users&username=fivetech&password=1234&sql=select%20*[/url:kprex47h]
We get this:
{"status":"ready","about... |
webservice implementation using php | Enhanced webservice:
webservice.php
[code=fw:110gvtg4]<div class="fw" id="{CB}" style="font-family: monospace;"><?php <br /> header<span style="color: #000000;">(</span><span style="color: #ff0000;">"Content-Type:application/json"</span><span style="color: #000000;">)</span>;<br /><br /> $response<s... |
webservice implementation using php | Also
[code=fw:2ijam6bc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">(</span><span style... |
webservice implementation using php | With Curl
[code=fw:1csjzj80]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#ifndef HBCURL_CH_<br /><br /><span style="color: #00D7D7;">#define</span> HB_CURLOPT_URL <span style="color: #000000;">2</span><br /><span style="color: #00D... |
webservice implementation using php | Hello, good afternoon!
I am new here and i wanted to know what i need to access "https"?
I have the Fivewin 17.07 and xHarbour 1.2.3 and BCC 7 |
webservice implementation using php | You are welcome
Gabriel, explain better what you need |
webservice implementation using php | If your question is how to access HTTPS with curl,
If you HTTPS is an invalid certificate then you need set this:
[code=fw:c6rufijr]<div class="fw" id="{CB}" style="font-family: monospace;">curl_easy_setopt<span style="color: #000000;">(</span>curl, CURLOPT_SSL_VERIFYHOST, <span style="color: #000000;">0</span><s... |
webservice implementation using php | Good Morning
Thank you for your attention
What I need is to use a webservice that works only with "https".
I'm testing with the TIpClientHttp class and with it I'm only able to access "http" webservices.
the error you present is this:
[code=fw:305jwkhs]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Er... |
webservices sending the JPK_V7 file | maybe someone has an example of sending the JPK_V7 file to the gate of the Ministry of Finance in Poland
best regard
KAJOT |
website 2.0 | Hola
Alguien tendra de casualida el website de o'reilly version 2.0 ya que me comentaron que esta mas estable el la verison 1.0, agradeceria si me la pudieran pasar o donde la consigo
Gracias Elias |
website 2.0 | Yo lo tengo, pero como te comente, tu problema no es el WebSite, tu problmea es que te tienes que pasar tu aplicacion a 32 bits, sino vas a seguir teniendo los mismos problemas que teines actualmente con tu aplicacion Clipper. |
website 2.0 | de hecho ya tengo un 50% de cambio por eso quiero probrar con la v2.0
Gracias. |
webview - como brush? | Antonio buenas tardes como estas?
Se puede colocar webview como fondo de escritorio de la aplicación? o toca hacerlo con una ventana child al inicio?
De antemano gracias |
webview - como brush? | Estimado Leandro,
Cuando se construye el objeto TWebView si al método New() se le pasa como segundo parámetro oWnd:hWnd, webview se situa sobre esa ventana sin crear una nueva:
TWebView():New( lDebug, oWnd:hWnd ) |
webview - como brush? | Ok, intento y comento. |
webview - desde FW al navegador como? | Antonio buenos días como estas?
Logramos montar un ejemplo para poder validar el acceso de los usuarios a la aplicación, podemos recoger la variables desde el navegador y enviarlas a FW para que se haga el proceso de validación mediante una dbf. Aunque ya es funcional, ahora nos gustaría poder enviar información al na... |
webview - desde FW al navegador como? | <!-- l --><a class="postlink-local" href="https://forums.fivetechsupport.com/viewtopic.php?f=3&t=43397&p=261297#p261297">viewtopic.php?f=3&t=43397&p=261297#p261297</a><!-- l --> |
webview - desde FW al navegador como? | Para eso es para lo que existe WebView_Return |
webview - desde FW al navegador como? | Estimado Leandro,
Resuelto! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
oWebView:Eval( "alert( 'from javascript' )" )
Ya lo teniamos, pero lo olvidé <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Aqui tienes un ejemplo:... |
webview - desde FW al navegador como? | oWebView:Return() se usa para devolver un valor desde el oWebView:bOnBind
Nuevo ejemplo webviewuni2.prg
[code=fw:2u9iu47i]<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: #B900B9;">//... |
webview - desde FW al navegador como? | Excelente Antonio, muchas gracias por el ejemplo <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->, hace lo que queremos.
[quote:pfxo7kyz]oWebView:Eval( "alert( 'from javascript' )" )[/quote:pfxo7kyz]
Por otro lado, será que nos puedes actualizar las lib para xharbour ... |
webview - desde FW al navegador como? | Estimado Leandro,
Por favor envíame un email para asegurarme que te las envío al correcto, gracias |
webview - desde FW al navegador como? | <!-- l --><a class="postlink-local" href="https://forums.fivetechsupport.com/viewtopic.php?p=261337&sid=1934e473c91385f3ae5b2619e2bcaedc#p261337">viewtopic.php?p=261337&sid=1934e473c91385f3ae5b2619e2bcaedc#p261337</a><!-- l --> |
webview - desde FW al navegador como? | Librerías recibidas.
Voy a compilar el ejemplo y te molesto si salen dudas. |
webview - how to get values from js to FWH | Dear Antonio,
can you please show again an example of how to bring the values from JavaScript to Fivewin.
With kind regards,
Otto |
webview - how to get values from js to FWH | Dear Otto,
Please review FWH\samples\webviewuni2.prg
webviewuni2.prg
[code=fw:2xt0bktb]<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: #B900B9;">//----------------------------------... |
webview - how to get values from js to FWH | Dear Antonio,
thank you.
Best regards,
Otto |
webview - how to get values from js to FWH | Dear Antonio,
thank you.
Best regards,
Otto
BTN-ADD
[img:38zi6gd6]https://mybergland.com/fwforum/sendtofwhclip1.jpg[/img:38zi6gd6]
BTN - Read
[img:38zi6gd6]https://mybergland.com/fwforum/sendtofwhclip2.jpg[/img:38zi6gd6]
[img:38zi6gd6]https://mybergland.com/fwforum/sendtofwhclip3.... |
webview - how to get values from js to FWH | 1. Create the WebView Object
2. Interoperability Bridge (from JavaScript)
Function for communication and data transfer between the two different programming languages JavaScript and Harbour
3. WebView Layer:
Part of the program that uses web technologies (HTML, CSS, JavaScript) within a WebView to implement user inte... |
webview - how to get values from js to FWH | [img:189u7va7]https://mybergland.com/fwforum/sendtofwhharbourino.jpg[/img:189u7va7] |
webview2 object WINDOW/DIALOG | Dear Antonio,
Can you show us how to display a webview2 object inside a control on a window or dialog?
Best regards,
Otto |
webview2 object WINDOW/DIALOG | [quote="Otto":1np7xo9p]Dear Antonio,
Can you show us how to display a webview2 object inside a control on a window or dialog?
Best regards,
Otto[/quote:1np7xo9p]
Hi Mr. Otto.
You can look at the last example. [url:1np7xo9p]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=42010&start=30&sid=8b9b5... |
webview2 object WINDOW/DIALOG | Dear Otto,
oWebView:SetParent( oWnd ) |
webview2 object WINDOW/DIALOG | Hi Hakan,
thank you.
I will run all the samples of the post you mentioned.
I tested with:
METHOD SetParent( oWnd ).
I will try to extend the method and pass width and height and top.
This is such a great class.
Here is a test with bootstrap button. I think now HTML for reports is perfect.
[img:2jmjehbv]https:/... |
what LIB Type does Fivewin use : | hi,
i found in ReadMe.TXT to build hbpgsql.lib
[quote:1gzbd5cg]Script makelib.bat creates PostgreSQL wrapper lib for Harbour (../Harbour/lib/hbpgsql.lib)
and transforms original libpq.lib in this map (MSVC COFF type) to Borland OMF type (../Harbour/lib/libpq.lib)[/quote:1gzbd5cg]
it seem that CODE and *.BAT was Ori... |
what LIB Type does Fivewin use : | Dear Jimmy,
You can easily create an import library using hbmk2.exe:
-depkeyhead=test:libmariadb64.dll
-depcontrol=test:yes
-depimplibs=test:libmariadb64.dll
-depincpath=test:.
For Borland use:
-iflag={bcc}-a |
what about Visual FiveWin ? | what about Visual FiveWin ? |
what about Visual FiveWin ? | We are close to release a first beta, though still far from functional. |
what are possible Pen styles and their numbers for Pen Obj ? | Hello All,
what are the possible Pen styles and their numbers TO be Used WITH Pen OBJECT ?
TIA
Milan. |
what are possible Pen styles and their numbers for Pen Obj ? | Milan,
From the Window API docs: (search for these defines at bcc55\include)
The CreatePen function creates a logical pen that has the specified style, width, and color. The pen can subsequently be selected into a device context and used to draw lines and curves.
HPEN CreatePen(
int fnPenStyle, // pen style
... |
what can make Problem with BEGIN SEQUENCE ? | hi,
i have a funny "Problem" when using BEGIN SEQUENCE
i have put this on "top" of Method
[code=fw:sw93ax89]<div class="fw" id="{CB}" style="font-family: monospace;">#ifdef Use_SEQUENCE<br /> bSaveError := ERRORBLOCK<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> ERRORBL... |
what is the type of a device connected to a usb port? | How to know what is the type of a device connected to a usb port (coding a function) ?
Thanks |
what is the type of a device connected to a usb port? | <!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?f=6&t=35720&sid=2a77f10cce59b400af30136c4c41728c#p212886">viewtopic.php?f=6&t=35720&sid=2a77f10cce59b400af30136c4c41728c#p212886</a><!-- l --> |
what is use for CRLF in HTLM ? | hi
i do have use
[code=fw:289cxlk7]<div class="fw" id="{CB}" style="font-family: monospace;"> cMemo := STRTRAN<span style="color: #000000;">(</span> cMemo, CHR<span style="color: #000000;">(</span> <span style="color: #000000;">10</span> <span style="color: #000000;">)</span>, CRLF <span style="color: #00... |
what is use for CRLF in HTLM ? | Hi Jimmy,
Do you have a text example?
Have you already examined the text with a HEX code editor?
LG
Otto |
what is use for CRLF in HTLM ? | Hi Jimmy,
I have been working on the reverse for the last few days.
Here it works like this:
[code=fw:2alu1ykb]<div class="fw" id="{CB}" style="font-family: monospace;"><br />html<br /> cText += <span style="color: #ff0000;">'<html> <span style="color: #000000;">\n</span> '</span> ;<br /> cText += <span styl... |
what is use for CRLF in HTLM ? | hi Otto,
your \n have bring me on right Way <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
have found out that i have use
[code=fw:1jogj6dl]<div class="fw" id="{CB}" style="font-family: monospace;"> cMemo := STRTRAN<span style="color: #000000;">(</span>cMemo,... |
what to do if you don't get answers | Sometimes I miss posts, maybe because there are many, or because someone else is answering and attending, or simply because I miss it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
In those cases, please reply to yourself with +1 or up or similar, so we have another chanc... |
whatsapp | Buena tarde... tengo la versión 23.05... es posible obtener la clase whatpSapp, mencionada en la última version de fwh---
Gracias
JONSSON RUSSI |
whatsapp | The function provided with FWH2310 can send files as attachments. That is possible only due to some low level ( c language modules ) in FWH2310. So, that is not compatible with earlier versions.
We provide here a modified version with which we can send messages and also some images optionally. This works with FWH2304.... |
whatsapp | hBitmap = NViewLib32( cBmpFile , 1 )
Vs
FW_ReadImage( nil, cBmpFile, , .t. ) |
whatsapp | We do not know other libraries
But FWH's FW_ReadImage() is very powerful than any. |
whatsapp | Saludos buen dia y gracias.
Tengo aplicación con FW 2.4 con usuarios en producción y tiene personalizaciones, para este caso necesito copiar la Imagen hacia el clipboard del OS, cuento con la funcion NViewLib32( cBmpFile , 1 ) que devuelve un valor numérico. Necesito copiar la imagen hacia el clibboard del OS.
Igualme... |
whatsapp | Saludos y gracias a la ayuda de jose Alberto alvares, voy a validar con METHOD CopyToClipboard() CLASS TBitmap
local oClipboard := TClipboard():New( CF_BITMAP )
oClipboard:SetBitmap( Self )
oClipboard:End()
return nil |
whatsapp | Buen día...
Funciona perfecto... pero tengo necesidad de enviar PDF... La idea es generar una factura y dar la opción de enviar a whatsApp.
Gracias |
whatsapp | If you have FWH2310, you can send images and any files as attachments, pdf, etc |
whatsapp | Buen dia..
He actualizado a la fwh 23.10 y funciona perfecto....
Gracias |
whatsapp | If you are using FWH2310, please see fwh\samples\whatsapp.prg
Use the function given in that sample program, but not the program I posted above. |
whatsapp.prg | Saludos
Compile este programa y me genera incidencia, posiblemente debo suministrar un numero de teléfono correcto.
alguien tiene esta aplicación en producción, mis clientes necesitan gestión de las comunicaciones de manera sistematizada. |
whatsapp.prg | +1 |
whatsapp.prg | [url:2ew1se3i]https://wassenger.com/[/url:2ew1se3i]
[code=fw:2ew1se3i]<div class="fw" id="{CB}" style="font-family: monospace;">curl --request POST \<br /> --url https:<span style="color: #B900B9;">//api.wassenger.com/v1/messages \</span><br /> --header <span style="color: #ff0000;">'token: <api key>'</span>... |
whatsapp.prg | Outra opção:
<!-- m --><a class="postlink" href="https://documenter.getpostman.com/view/4545782/SWTHbveC?version=latest#intro">https://documenter.getpostman.com/view/ ... test#intro</a><!-- m --> |
whatsapp.prg | whatsapp web sem abrir o navegador com WSL
<!-- m --><a class="postlink" href="http://fivewin.com.br/index.php?/topic/29571-msg-whatsapp-web-sem-abrir-o-navegador/">http://fivewin.com.br/index.php?/topic/ ... navegador/</a><!-- m --> |
whatsapp.prg | Dear Otto,
Since Facebook bought Whatsapp, its API is no longer available, as far as I know it.
You should consider using Telegram:
[url:11k4ikur]https://telegram.org/[/url:11k4ikur] |
whatsapp.prg | wassenger.com
Dear Antonio,
Do I understand this in the right manner.
You practically have to buy a service from wassengr.com that costs around 70 € / month to be able to use their API interface.
Best regards,
Otto |
whattsapp | Alguien sabe como funciona la tecnología whattsapp internamete, no me refiero a la forma de hacerlo funcionar que se ve bien claro. La cuestión es si lo podemos emplear para hacer cosas con nuestros programas. He visto varias cosas entre ellas como utilizarlo mediante un emulador de android desde el pc: <!-- m --><a cl... |
whattsapp | Andres,
Que quieres decir [quote:2ls0ub8s]como funciona la tecnología whattsapp internamete[/quote:2ls0ub8s] ? <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
whattsapp | Andrés,
Te refieres a si existe un API para poder usar ese servicio desde nuestras aplicaciones ?
No que yo sepa (y ojalá existiese) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
whattsapp | Pues sí, a eso me refiero, tengo ya implementado todo el tema de sms y de correo en casi todos los programas, pero ahora esta tecnología está muy de moda en los móviles y la verdad toda la información que tenemos es de uso y no sobre su implementación o tecnología que emplea. Tenemos previsto la incorporación de equipo... |
when clausule from a button | Hello ,
[code=fw:3rh9w45h]<div class="fw" id="{CB}" style="font-family: monospace;"><br />lBuild := .F.<br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BUTTON</span> oBut<span style="color: #000000;">[</span><span style="color: #000000;">2</span><span style="color: #000000;">]</s... |
when clausule from a button | Using a buttonbar we must
oWnd:oBar:AevalWhen()
Still : Why it works when the edit button is used AND Aevalwhen is executed and why not whit doubleclicking ? |
when de los gets | Hola Amigos: tengo una dialog con muchos gets, cada vez que uno de ellos pierde foco me revisa todas las condiciones when de cada get, esto es normal, es algo de las clases? o me esta pasando algo raro.
Saludos. Gracias. |
when de los gets | Leonor:
La condicion when de tus gets se evaluan todas juntas al activar el dialogo que los contiene, por ejemplo si vos tenes en variables locales las condiciones asociadas a cada get al activarse el dialogo los que no cumplan la condicion when estaran deshabilitados. Una vez que el dialogo esta activado ... |
when de los gets | Esta bien lo que me explicas, y así esta trabajando, pero lo que me hace es lo siguiente: ejecuta los when de cada get en el activate del dialog, despues por cada get que pierde foco vuelve a ejecutar los when de cada get, en el dialog veo como se refrescan todos los get por cada uno que pierde foco y me puse carteles ... |
when de los gets | Leonor:
Mostranos el codigo involucrado.
Saludos, |
when de los gets | Leonor,
Todos los WHEN de los GETs tienen que evaluarse, porque en función del cambio que se haya hecho, podría afectarles. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.