topic
stringlengths
1
63
text
stringlengths
1
577k
records disappear [solved]
[quote="Otto":1fh853o4]Are these records at the end of the database are these old entries.[/quote:1fh853o4] [quote="lucasdebeltran":1fh853o4]Old entries.[/quote:1fh853o4] A record that is not the last one simply cannot disappear without a PACK. EMG
records disappear [solved]
Like Enrico wrote : A record that is not the last one simply cannot disappear without a PACK. Have you checked what happens when you compare the same record number between the file copy and the actual file ? If you use DATABASE class with aBuffer , It happens sometime that the record pointer changes ( for example in...
records disappear [solved]
[quote:9w4fk856]A record that is not the last one simply cannot disappear without a PACK.[/quote:9w4fk856] I would disagree with the above statement.... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> I have a app that was written years ago used for generati...
records disappear [solved]
[quote="Jeff Barnes":15kmniiv][quote:15kmniiv]A record that is not the last one simply cannot disappear without a PACK.[/quote:15kmniiv] I would disagree with the above statement.... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> [/quote:15kmniiv] To physica...
records disappear [solved]
Jeff, overwrite I can imagine also delete in conjunction with pack but > Every now and then (very rare indeed) I will notice that a record has gone missing. without a reason and not seeing a corruption inside the database I can’t. But we must take this issue very serious because if there is really a problem with the...
records disappear [solved]
Hi Otto, I have no good explanation as to what is causing this. All I know is that there are three of us that use my program in my office. Only I have access to delete records. Each new record is assigned a service report number (ie: 12001, 12002, 12003 etc...) This number is locked from editing. A while back I ha...
records disappear [solved]
It looks like a bug in your code-generating function. EMG
records disappear [solved]
Jeff, I belive that you have a printed copy. How do you print the records. Do you read from disk. I think you missed to commit and then the data is somewhere in the cache. Maybe then there was a program error and the data was not written to the disk. Is your data on a network dirive. Best regards, Otto
records disappear [solved]
Yes the records are read from the hard drive and yes on a network. -Record is created when equipment comes in -Any work done on equipment is entered into the record. -The equipment is left running for 24 hours to verify the problem has been solved -The record is re-opened, any additional comments added, and the final ...
records disappear [solved]
Jeff, Well, I agree with Enrico, without a PACK an existing record cannot be removed from a DBF file. The only explanation for your example that I can think of, is that you printed the report, then a new record was created and it was saved over the existing record for the previous ID. I have had this happen in the pa...
records disappear [solved]
Hello James, Would you be so kind to explain how index or go bottom has an effect if I add a record with append blank. Best regards, Otto
records disappear [solved]
I guess anything is possible. we don't use the software anymore for new reports ... only used now to pull up old ones.
records disappear [solved]
Otto, >Would you be so kind to explain how index or go bottom has an effect if I add a record with append blank. Now I remember exactly what was happening. I was using an ID index to find the last used ID by issuing a GO BOTTOM (while the index on ID was the current index). Normally this worked fine, but when the ind...
records disappear [solved]
Hello James, do you know is the dbf database engine checks if the number of records corresponds to the value stored in the header. Otherwise what happens if a antivirus software tries to repair a file and deletes some records inside a dbf file. Best regards Otto 4-7 32-bit number Number of records in the table. (Least...
records disappear [solved]
No. Even at very low level a sequential file (a DBF [b:31vxjnxx]is[/b:31vxjnxx] a sequential file) can only be truncated (ie. deleted from a point to the end). To delete an inner part of it the only way is to copy it to another file. EMG
records disappear [solved]
I'm glad this thread was started. I don't believe in ghosts, or gremlins, but they still seem to exist in our computers. I know what should not be able to happen, but I do know what does happen: 1) A "workorder" is created. It has totals, client link numbers, etc. When it is created it is Saved ! Then, when d...
records disappear [solved]
Timm, Which antivirus do you use in that PC?. Thanks
records disappear [solved]
[quote="TimStone":1761wffj]I know what should not be able to happen, but I do know what does happen[/quote:1761wffj] No, you only see the final effect that can have many different reasons to happen. Simply, the real reason is not the one you imagine. EMG
records disappear [solved]
If indexes are fine, then the technical reason that comes to my mind is that the writting of a record may fail randomly (and this could happen from the DBF engine itself, its a possibility). If this is the case, maybe you could use a (sort of) backup DBF where you also register your latest activity of the initial DBF....
records disappear [solved]
[quote="Antonio Linares":rlheh39k]If indexes are fine, then the technical reason that comes to my mind is that the writting of a record may fail randomly (and this could happen from the DBF engine itself, its a possibility).[/quote:rlheh39k] A failed operation can corrupt the DBF or write garbage to the current record...
records disappear [solved]
Enrico, If a buffered chunk of data is written and part of it gets corrupted, that could do it A log file (what I named a "backup" dbf) could reveal if the operation was done but the record vanished (?). I am just guessing, trying to imagine what may be going on... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif...
records disappear [solved]
As Enrico, Antonio, and I have said, it is not possible for records to disappear from the middle of a DBF (unless a PACK or COPY TO has been done). The only ways for records to seem to disappear is for the record to never have actually been written to the file (I have never had this happen), or for the original record...
records disappear [solved]
[quote="Antonio Linares":wi2euqf6]Enrico, If a buffered chunk of data is written and part of it gets corrupted, that could do it[/quote:wi2euqf6] Then you would get a corrupted record not a vanished record. EMG
records disappear [solved]
Enrico, Yes, I think you are right about it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
records disappear [solved]
Antonio, Wouldn't your suggestion (using a backup DBF) not slow down the application enormously? In my application a few thousand new records are written every day. Some DBF-files have moren than 1.000.000 records. Thanks.
records disappear [solved]
Michel, [quote:yzg0dk0w]Wouldn't your suggestion (using a backup DBF) not slow down the application enormously?[/quote:yzg0dk0w] I don't think he meant to create a backup of the entire database each time it was updated (if that is what you were thinking). I think he just meant to add records to two identical databas...
records disappear [solved]
driessen, I have some DBFs with 10 million records, without problems. regards
records disappear [solved]
Michel, Is the only solution that I can think about (by now) to debug it. Maybe you could code it to set it on and off if required. If a record disapears, then we need to have a concrete situation, some initial info and a way to reproduce it so if there is a problem, it could be reproduced, reported and solved <!-- ...
records disappear [solved]
FYI - The problem of orphan child records can be solved using .Adt tables with a primary index key and simple Referential Integrity rules on the data dictionary. ...and it works with the local (free) version of the server just as well. One other thing: In the old days, before I used the ADS server, I used to keep al...
records disappear [solved]
I confirm it was the antivirus. Moving to Eset Nod 32 solved the problem. Thanks for your feedback and very interesing advice.
records disappear [solved]
I set antivirus proograms to ignore DBF and NTX files. In addition to other problems you don't want the antivirus software to scan DBF's and NTX's every time a record is saved. Regards, James
recorido de columnas en xbrowse con freeze
hola a todos: Supongamo un browse de 10 cols. tengo dos columnas cogeladas solo muestro 5 , si voy hacia la derecha oviamente muestra las ultimas (8,9,10), pero si regreso a la izquierda, estando el la col. 8, se va a las columnas congeladas , ¿como hacer para que muestre la adyacente hacia la izquierda ? Saludos a tod...
recorrer para atras en un tree
Hola. Estoy posicionado en una rama que no se si estan dentro de otra... necesito recorrer desde esa rama para ATRAS hasta llegar a la raiz, como lo hago?
recorrer para atras en un tree
Gustavo, El método Scan() de la Clase TTreeView usa esta función para "avanzar en los items" [code=fw:eza23j2r]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> ScanItemsBlock<span style="color: #000000;">&#40;</span> aI...
recorrer una matriz con aEVal
buenas tardes. Necesito recorrer toda la matriz de 10 columnas por 20 filas y poner en la columna 4 de todas las filas un determinado valor intente con esto pero no va: [code=fw:28vj7avw]<div class="fw" id="{CB}" style="font-family: monospace;">bBloque:= <span style="color: #000000;">&#123;</span> |x| ::<span style...
recorrer una matriz con aEVal
[code=fw:5q7dnid4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />&nbsp; &nbsp;AEVal<span style="color: #000000;">&#40;</span> aDatos, <span style="color: #000000;">&#123;</span> | a | a<span style="color: #000000;">&#91;</span> <span style="color: #000000;">4</span> <span style="color: #000000;">...
recorrer una matriz con aEVal
gracias!
recorrido de columnas hacia izquierda en xbrowse con freeze
hola a todos:Supongamo un browse de 10 cols. tengo dos columnas cogeladas solo muestro 5 , si voy hacia la derecha oviamente muestra las ultimas (8,9,10), pero si regreso a la izquierda, estando el la col. 8, se va a las columnas congeladas , ¿como hacer para que muestre la adyacente hacia la izquierda ?Saludos a todos...
recto verso printing
Is there a function that permits to print recto verso?
recto verso printing
Sorry, it depends on the printer type
recto verso printing
The printer type (HP laserjet) permits to print recto verso in Word for example
recto verso printing
The question is of there exist a function within Fivewin that, without manual intervention of the printer, can send pages to the printer ready to be printed recto verso
recuperar datos de cuit
Hola gente, estoy tratando de obtener los datos de un cuit y lo que me responde no me dice nada. Esto es lo que envío: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:a5="http://a5.soap.ws.server.puc.sr/"> <soapenv:Header/> <soapenv:Body> <a5...
recuperar datos de cuit
Hola, de donde eres?
recuperar datos de cuit
Hola, de Luján, bs as. Saludos Jorge
recuperar texto desde richedit
Hola, estoy pasanto una variable al richedit ACTIVATE WINDOW oWndR on init oRTF:SetText( crtf ) Funciona perfecto, una ves que termine de modificar el texto como hago para recuperarlo en la variable. Saludos Jorge
recuperar texto desde richedit
Estmado Jorge, oRichEdit:SaveAsRTF() --> cRTFText
recuperar texto desde richedit
Hola Antonio, gracias por responder, Feliz Año. Hay alguna forma de recuperar el contenido sin tener que guardarlo y leerlo para guardar en la base. Saludos Jorge
recuperar texto desde richedit
Estimado Jorge, Feliz año No entiendo bien a lo que te refieres. Puedes explicarme con más detalle lo que necesitas ? gracias
recuperar texto desde richedit
Buen día, estoy desarrollando una aplicación que va a tener varios campos que necesito editarlos con richedit, para que puedan dar formato al texto. Entonces cuando editan cada campo pensé en abrirlos con richedit, para eso le paso la variable y luego necesito recuperarla para guardarla en la base que será con sql ser...
recuperar texto desde richedit
Jorge, El contenido de un RichEdit puede recuperarse como RTF ó como texto estandard, y esa elección tiene que hacerla el programador
recuperar un tipo CHAR desde HB_FUN...?
EStimados: Tengo que recuperar un parametro de tipo CHAR pasado como parámetro a una función del tipo HB_FUNC como se hace para luego mostrarla... [code:1wq1y4q9]HB_FUNC &#40;PRUEBA&#41;&#123; // Aca tendria que recuperar el parametro // y luego mostrarlo&#46;&#46;&#46;&#46; MessageBox&#40;0, PARAMETRO REC...
recuperar un tipo CHAR desde HB_FUN...?
Hola Te refieres a esto? [code:2eeaaxb0]HB_FUNC &#40;PRUEBA&#41;&#123; // Aca tendria que recuperar el parametro // y luego mostrarlo&#46;&#46;&#46;&#46; char * micadena = hb_parc&#40; 1 &#41;; MessageBox&#40;0, PARAMETRO RECUPERADO, "Se envio el dato&#46;&#46;&#46;", micadena, MB_OK&#41;; &#46;&#...
recuperar un tipo CHAR desde HB_FUN...?
Si paco, gracias.
redefine BUTTONBAR
Hola, como seria el style que debo usar en una buttonbar dentro de un folderex para que no tenga bordes? Gracias.
redefine BUTTONBAR
Alguna idea o sugerencia?
redefine BUTTONBAR
[quote:1uekwaxo] oBar:nStyle -= WS_BORDER [/quote:1uekwaxo]
redefine BUTTONBAR
Cristobal, gracias x responder, lo que quiero es SACARLE el borde no ponerlo, y cuando uso REDEFINE BUTTONBAR en un DIALOG, pone un nStyle con borde pero no encuentro el nStyle sin borde. Saludos.
redefine BUTTONBAR
Y, poniendo esto que te indico no lo quita? [quote:3ukrhsgv] oBar:nStyle -= WS_BORDER [/quote:3ukrhsgv]
redefine BUTTONBMP ... tooltip no funciona
Amigos , Estoy implementando los botones con bitmaps para apariencia XP y funcionan y lucen perfectos pero ya no funciona el tooltip para indicar lo que el botón hace cuando posicionamos el puntero del ratón sobre el; redefine BUTTONBMP ob103 ID 103 of ODLGINI BITMAP "CALENDARIO" action ABREANO() tooltip "Abre Nuevo...
redefine BUTTONBMP ... tooltip no funciona
Hola LaFug Prueba asi: REDEFINE BUTTONBMP ob103 ; ID 103 of ODLGINI ; BITMAP "CALENDARIO" ; ACTION ABREANO() .. .. ob103:cTooltip := "Abre Nuevo Año" Salu2
redefine BUTTONBMP ... tooltip no funciona
GRACIAS WILLI <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> FUNCIONÓ PERFECTO UN xHabrazo
redefine checkbox con font
Estimados alguna forma de colocar un font en un checkbox no me funciona con ACTIVATE .. ON INIT oChk:setFont(oFont)
redefine checkbox con font
Saludos: Prueba asi: [code=fw:127diyxm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span>   xFont <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"Consolas"</span> <span style="color: #0000...
redefinir metodo Execute... como?
hola. Necesito aniadir al methodo Execute que se utiliza en este código un comando mas, simplemente para que me detenga la ejecucion para poder mostrar un cartel de control interno mio. Cómo lo hago? [code=fw:3n3056d3]<div class="fw" id="{CB}" style="font-family: monospace;"> cCmdSql:= <span style="color: #ff0000;">"U...
redefinir metodo Execute... como?
Para que lo detenga en que momento? Explicame un poco más porque no he podido entender bien que querés hacer, creo que tengo una pista.
redefinir metodo Execute... como?
Gracias Carlos, [code=fw:1lg4pwux]<div class="fw" id="{CB}" style="font-family: monospace;"><br />     cCmdSql:= <span style="color: #ff0000;">"USE "</span> + AllTrim<span style="color: #000000;">&#40;</span>oApp:<span style="color: #000000;">cDataBase</span><span style="color: #000000;">&#41;</span><br />     <span st...
redefinir metodo Execute... como?
Hola Goos, en lugar de msginfo podés usar dbwin32.exe, buscalo en el foro. Tambien posteé unos comandos para facilitar la tarea, evitar los msgInfo y cosas por el estilo <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=12952">viewtopic.php?f=6&t=12952</a><!-- l --> No m...
redefinir metodo Execute... como?
gracias, ytilizo de por si un debug en mis programas del estilo que mostras ahi. pero lo que necesito es saber donde esta ese método para poder modificarlo y que ese msginfo o al utlizar el debug lo pueda incluir en ese metodo para no tener que ponerlo cada vez ... gracias.
redefinir metodo Execute... como?
Una consulta, oApp:oCon <-- ¿ Que clase de objeto es ?, si es una coneccion ado, el metodo execute es parte del objeto ado y el harbour solo invoca el metodo, pero no contiene codigo para el. Si es un odbc ahi deberias poder modificarlo en la clase todbc ya que ese es un metodo que invoca a la fucion sqlexecute, si m...
redefinir metodo Execute... como?
Si es ADO. Gracias por la aclaración.
redimensionar dialogos...
Hola foro, se que en alguna ocasion se toco el temo, pero lo encontre.. Tengo dialogos diseñados para una resolucion de 800x600 pero si mi resolucion es mayo quiero que el dialogo se ajuste al tamaño nuevo de resolucion incluyendo controles, sera posible? gracias Paco
redimensionar dialogos...
Paco, En la clase TDialog en el método Initiate tienes este código que sirve para redimensionar un diálogo. Se podría generalizar, para usarlo como método y al tamaño que se desease: [code:20j8b3rb] #define SCALE_FACTOR 1&#46;16668 if &#58;&#58;lResize16 &#46;and&#46; ! Empty&#40; &#58;&#58;cResName &#41; ...
redimensionar dialogos...
[quote="Francisco Horta":3pzkbvqj]Hola foro, se que en alguna ocasion se toco el temo, pero lo encontre.. Tengo dialogos diseñados para una resolucion de 800x600 pero si mi resolucion es mayo quiero que el dialogo se ajuste al tamaño nuevo de resolucion incluyendo controles, sera posible? gracias Paco[/quote:3pzkbvqj] ...
redimensionar dialogos...
Hola Carlos, me tira error ...
redimensionar dialogos...
[quote="Francisco Horta":9uv9sism]Hola Carlos, me tira error ...[/quote:9uv9sism] Si, pero cual? Saludos Carlos G.
redimensionar dialogos...
Si te Sirve ahi te envio como lo hago Llamas al CheckRes() en el on init del dialog, tambien esta para modificar el font del dialogo o controles... se puede tambien modificar el tsbrowse o la barra de mensages... contactame por el MSN <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="Wink" /><!-- s;...
redimensionar dialogos...
[quote="RenOmaS":3i1u81jp]Ya tenemos avanzado algo el Punto de Venta [/quote:3i1u81jp] ¿Teneis ya depurado el código?. Sería interesante contar, en la propia clase Tdialogo, con la posibilidad de adaptar los dialogos y controles a la resolucion de la pantalla.
redimensionar dialogos...
RenOmaS Siempre sorprendiéndonos con buen código, estoy de acuerdo con Manuel de lo interesante que sería contar con una clase de ese tipo. Desde ya Gracias por el código que has volcado.
redimensionar dialogos...
Pos ese es el mismo codigo.. Sigue funcionando.. pos la clase esta ahi TMDialog Saludos
redimensionar dialogos...
Renomas, tiens un ejemplo simples de uso de TMDialog? Gracias. Regards, saludos.
redimensionar dialogos...
[quote="karinha":3lxqm3zi]Renomas, tiens un ejemplo simples de uso de TMDialog? Gracias. Regards, saludos.[/quote:3lxqm3zi] +1
redimensionar ventanas
alguien que tenga funcionando la funcion AUTRESIZ() para harbour y fwh? me la pudiera facilitar, gracias salu2 paco
redimensionar ventanas
[quote="Francisco Horta":15xp3bwa]alguien que tenga funcionando la funcion AUTRESIZ() para harbour y fwh? me la pudiera facilitar, gracias salu2 paco[/quote:15xp3bwa] La he puesto en UTILIDADES (en FWH 2.6 funciona): <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?p=22589#22589">http:...
redimensionar ventanas
Carlos, ya probe y me truena, no me funciona en ningun dialogo, unicamente en ventanas con un control browse, donde tengo btnget,combobox,checkbox,sbutton,stsay, text, group no me va, alguna idea? aki me truena Application =========== Path and name: C:\Proyectos\Harbour\xPV2\Caja5.Exe (32 bits) Size: 2,373,120...
redimensionar ventanas
La funión en si lo que realiza és gestionar un :Move() sobre la ventana/diálogo/control que corresponda. Por tanto lo único que se me ocurre es probar de realizar un :Move() directamente sobre los controles a ver que pasa. Desconozco si todos los controles que mencionas son propios de FiveWin y si además disponen del m...
redimensionar ventanas
Puedes poner un trozo de código donde te funciona y donde no? Saludos Carlos G.
redireccionar salida a txt con tprinter
Gracias willi, Tal vez alguien me echa una manito con el redireccionamiento de impresion Saludes Ramon Paredes
redireccionar salida a txt con tprinter
Ramón: Prueba con la claúsula TO FILE, ejemplo: REPORT oReporte CAPTION "Catálogo de clientes" TO FILE Prueba.txt; .... .... ... Saludos
redireccionar salida a txt con tprinter
Amigos del Foro, 1.- En una aplicacion necesito mandar un reporte a impresora , hasta aqui ok, pero ahora necesito enviarlo por correo para ello debo redireccionar la salida a un archivo de texto para adjuntarlo al email, alguien puede orientarme como hacer eso con la clase Tprinter y con la Treport. 2.- Alguien sabe...
redireccionar salida a txt con tprinter
Hola... Aqui tengo algo para las horas,,,, //---------------------------------------------------------------------------------------------------- Function QTiempo(cTime1, cTime2) local nSec1, nSec2, nSec3, nHora, nMinu IF EMPTY(cTime1) .OR. EMPTY(cTime2) .OR. VAL(SUBSTR(cTime2,1,2)) * 3600 + VAL(SUBSTR(cTime2,4,2)) *...
redireccionar salida a txt con tprinter
Armando, Gracias por tu aporte, funcion ok con Treport, asi como indicas pero con Tprinter : PRINT oPrn TO "TEXTO.TXT" no funciona, no se si habra alguna otra forma de enviarlo a un archivo de texto con tprinter, Saludos desde Managua, Nicaragua Ramon Paredes
redireccionar salida a txt con tprinter
Ramón: Para PRINTER usa la vieja usanza como cuando lo hacias con clipper: Ahora no tengo un ejemplo a la mano, lo busco y te lo publico, pero recuerdo que iba mas o menos así SET PRINTER OFF SET PRINTER TO SET PRINTER TO "PRUEBA.TXT" SET PRINTER ON @ x,y SAY etc etc SET PRINTER OFF SET PRINTER TO A ver si con eso ...
redirecting index.prg
Dear friends, I have to make a redirection on an existing index.prg. When I insert the following code I get an error ... [code=fw:3d71im4p]<div class="fw" id="{CB}" style="font-family: monospace;"><!DOCTYPE html><br /><html><br /><head><br />  <meta http-equiv=<span style="color: #ff0000;">"refresh"</span> content=...
redirecting index.prg
Dear Ruth Your index.prg It must have Harbour instructions. This is a possibility to implement it. [code=fw:2xt0wnoi]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span...
redirecting index.prg
Dear Ruth, [code=fw:2r0v91xv]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Redirect<span style="color: #000000;">&#40;</span> cUrl <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;AP_RPuts<span style="color: #000000;">&#40;</span> <span style=...
redirecting index.prg
Thank you two so much...this made my day <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> now the redirect is working fine...thanks a lot again and have a nice weekend...
redirecting index.prg
You can refer to: [url:23zrensl]http&#58;//www4&#46;zzz&#46;com&#46;tw/phpBB3/viewtopic&#46;php?f=2&t=356[/url:23zrensl] and you can use: [code=fw:23zrensl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><!DOCTYPE html><br /><html><br /><head><br />  <meta http-equiv=<span style="color: #ff0000;">"refr...
redirecting index.prg
Hello, Thank you. Very interesting. Can you describe the concept in more detail? Best regards, Otto
redirecting index.prg
You can use WYSIWYG web design software to design your website and embedded into prg code like PHP in general. but save file name is .prg not .php open browser and open the .prg This is the closest web design mode!