topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
resources or commands | Me too. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
responseXML | Hi, all !
I make a request to the site and want to get the DOM document
TRY
oHttp:= CreateObject( "MSXML2.XMLHTTP" )
CATCH
oHttp:= CreateObject( "microsoft.XMLHTTP" )
END
oHttp:Open( "GET", MyURL, 1)
oHttp:setRequestHeader( 'Content-type', 'text/xml')
oHttp:Send(NIL)
fl:=int(gettickcount... |
responseXML | Try with
[code=fw:7pwzt8pt]<div class="fw" id="{CB}" style="font-family: monospace;">oHttp:<span style="color: #000000;">ResponseBody</span></div>[/code:7pwzt8pt]
EMG |
responseXML | Thank you, Enrico, for your help. However responceBody returns HTML, but not the document |
responseXML | What do you mean with "the document"? XML is a text, just like html body.
EMG |
responseXML | WEB document-page website. Respobsetext/Responsebody return a html page. ResponseXML returns a DOM-compatible document page, which you can parse with DOM tools.
For example oHttp:responseXML:getElementById("ABC") |
responseXML | Ok. Try
[code=fw:3hxv2rba]<div class="fw" id="{CB}" style="font-family: monospace;">oHttp:<span style="color: #000000;">Open</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"GET"</span>, MyURL, .T.<span style="color: #000000;">)</span></div>[/code:3hxv2rba]
EMG |
responseXML | In fact oHttp:Open( "GET", MyURL, 1), no different from oHttp:Open( "GET", MyURL, .T.) <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
It's still not working |
responseXML | Ok. I don't know why ResponseXML it's empty, sorry. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
EMG |
responseXML | try with: oHttp:responseText |
restar dos horas diferentes | saludos amigos, alguien tendra o habra una funcion que me de la diferencia en minutos entre 2 horas devueltas con time()
de antemano gracias |
restar dos horas diferentes | Aqui va.. espero te sirva. (tomado de un antiguo libro de librerias para clipper.....)
Salu2,,,
SET DATE ITALIAN
? DifTiempo(CTOD("01/08/91"), , CTOD("31/08/91"), "23:59" )
---> 44639
[code=fw:12zsk1mx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> DifT... |
restar dos horas diferentes | Gracias Willi por el código. |
restar dos horas diferentes | QAZWSX2K,
Si usas xHarbour puedes usar lo siguiente.
ElapTime( <cStartTime>, <cEndTime> ) --> cElapsedTime |
restringir acceso a las dbfs en un grupo de trabajo de XP | Hola,
Tengo el siguiente problema tengo una aplicación que trabaja en el directorio app y tiene las bases de datos en el directorio data.
El programa sirve a varios usuarios de un grupo de trabajo en Windows XP, estoy buscando la forma de protejer los archivos del directorio data, de modo que los usuarios no puedan ... |
restringir acceso a las dbfs en un grupo de trabajo de XP | José:
Yo tengo la siguiente estructura
C:\CarpetaDeLaAplicacion
|_____CarpetaDeArchivos
Entonces una solución muy primitiva es asignarle la propiedad de OCULTO a la carpeta de la aplicación, ojo solo a la carpeta de la aplicacion.
Así el usuario no ve donde estan los datos, <!-- s:-) --><img src="{SMILIES_PAT... |
restringir acceso a las dbfs en un grupo de trabajo de XP | Este es un trabajo paraaaaaaa.... Advantage Database Server.
Con ADS no es necesario que compartas tu carpeta de datos, simplemente en tu programa pones:
AdsRightsCheck(.f.)
Y listo... a seguir funcionando. Solo compartes la carpeta del EXE pero no de los datos.
La Explicacion:
El servidor ADS corre en el servidor... |
restringir acceso a las dbfs en un grupo de trabajo de XP | [quote="RF":2ce3jy77]Este es un trabajo paraaaaaaa.... Advantage Database Server.
Con ADS no es necesario que compartas tu carpeta de datos, simplemente en tu programa pones:
AdsRightsCheck(.f.)
Y listo... a seguir funcionando. Solo compartes la carpeta del EXE pero no de los datos.
La Explicacion:
El servidor ADS... |
reto para Antonio y los expertos en C | Hola Antonio,
No se si sabes que Microsoft liberó el código fuente de Word 1.1 con fines educativos:
[url:24ugy1mz]https://computerhistory.org/blog/microsoft-word-for-windows-1-1a-source-code/[/url:24ugy1mz]
[url:24ugy1mz]https://github.com/BlastarIndia/msword[/url:24ugy1mz]
A mi el C se me escapa, ... |
retomo Tree pasar de item en item | Hola.
Tengo un Arbol con sus ramas. ese arbol lo guardo en oTree
ahora quiero ir opsicionandome item a item, como lo hago? |
retrieve excel headers | Hello,
I am reading an Excel Sheet as follows:
oRange := GetExcelRange( ExePath() + "test.xls" )
@ 0,0 XBROWSE oBrw OF oWnd AUTOCOLS ;
DATASOURCE oRange CELL LINES FOOTERS ;
SIZES 80, 80, 80, 80
How can I get Excel´s header names?.
Thanks. |
retrieve excel headers | If you know the first row of the range contains headers, you can extract them
oHead := oRange:Rows( 1 )
oHead is a single row object representing the first row of oRange.
May I know what is your exact requirement? |
retrieve excel headers | Mr. Rao,
Thanks for reply.
I want to xBrowse an Excel and I want to set Excel headers in xBrowse.
This is my code:
[code=fw:35kfbhyg]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D... |
retrieve file date and time for a Internet file | Hi,
Is it possible to obtain the date and time from a file in <!-- m --><a class="postlink" href="http://www.google.com/files/update.exe">http://www.google.com/files/update.exe</a><!-- m -->?
Thank you. |
retrieve file date and time for a Internet file | Something like this:
[code=fw:2xicz7fz]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">Public</span> <span style="color: #00C800;">Function</span> GetRemoteFilenameTimestamp<span style="color: #000000;">(</span>ByVal address As Uri<span style="color: #000000;">)</span> ... |
returning a wchar_t variable back to harbour function | Hello everyone!
Inside a harbour wrapper function I need to declared a variable as wchar_t or HB_WCHAR but I don't know how to return that variable back to calling harbour function. I tried using hb_retc as with any other string but that won't return wide strings. Is there another vm return function I can use to re... |
returning a wchar_t variable back to harbour function | This is how FWH returns Wide Strings.
[code=fw:31dwzloh]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//also include</span><br /><span style="color: #00D7D7;">#include</span> <fwh.h> <span style="color: #B900B9;">// fwh\include folder</span><br /><span style="color: #B900B9;"... |
returning a wchar_t variable back to harbour function | Hello Mr. Rao and everyone else;
Your information is valuable to me but this is a different situation.
I'm sorry I should have been more specific. I'm trying to return a c wchar_t variable type from a VM Harbour wrapper c function back to the calling Harbour (clipper) code.
[code=fw:3q7eh0ln]<div class="fw" id=... |
returning a wchar_t variable back to harbour function | Even in this case
[code=fw:2h46ve32]<div class="fw" id="{CB}" style="font-family: monospace;">fw_retWide<span style="color: #000000;">(</span> cMsg <span style="color: #000000;">)</span></div>[/code:2h46ve32]
will work, as long as we are working with Windows OS.
Please try.
You need to include "<fwh.h>"
Or plea... |
returning a wchar_t variable back to harbour function | Yes, Mr. Rao, it does work.
I followed the header file down into getfile.c and saw how it is being done and why it works. It is a good learning experience for me.
Thank you very much, |
revisando fivelinux | Con fines didacticos he intentado instalar y hacer funcionar el fivelinux-gpl .
El primer paso fué descargar harbour del repositorio y construir sus librerías .
Segundo paso descargar la ultima version de fivelinux y construir sus librerias .
1º problema al compilar database.prg no encuentra el include hbcompat.ch . E... |
revisando fivelinux | Manuel,
hbcompat.ch pertenece a Harbour, está en harbour/contrib/xhb/
El makefile, efectivamente, usa Harbour y xHarbour, la idea es borrar la parte que no se use, aunque seria mejor como indicas, que fuese facilmente configurable |
revisando fivelinux | Manuel,
El diseñador de ventanas, fiveform.prg, con FiveLinux, ya va tomando forma y acercándose a los de FiveWin y FiveMac <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Una delicia... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- ... |
revisando fivelinux | he intentado con este makefile que a mi para harbour me funciona bien . Seria bueno probarlo con xharbour.
[code=fw:3byh5b8k]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /># FiveLinux makefile<br /><br />HB_COMPILER:= harbour<br /><br />all : ./lib/libfive.a ./lib/libfivec.a<br /><br />ifneq <sp... |
revisando fivelinux | viendo un poco como va el tema de añadir funcionalidades a los controles he metido este codigo que parece que funciona :
Para say :
[code=fw:2t1y9srf]<div class="fw" id="{CB}" style="font-family: monospace;"><br />en says.c <br /><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">(</span> S... |
revisando fivelinux | Manuel,
Veo que te estas animando, bien! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Si te parece te doy de alta en el proyecto FiveLinux en Google code y asi puedes subir tu código directamente.
gracias!
Editado: ya estás dado de alta. Bienvenido y gracias! <!-- s:... |
rewrite dbf01.prg using code | I am trying to rewrite the sample dbf01.prg from code not from resources but I face problem with dlg:update() as no change hapnneded with buttons change and with settext() method I have syntax error.
[code:ki8r9c3y]
// FiveWin - DataBase Objects Tutorial - 01
// FiveWin DataBase tools
#include "FiveWin.ch"
#includ... |
rewrite dbf01.prg using code | Ehab,
This is the right way to do it:
[code:2cca3v1m]
#include "FiveWin.ch"
static oWnd
//----------------------------------------------------------------------------//
function Main()
SET _3DLOOK ON
DEFINE WINDOW oWnd FROM 2, 2 TO 20, 70 ;
TITLE "Testing DataBase Objects" ;
M... |
rewrite dbf01.prg using code | Sorry I also rewrite the ClientsBrowse() with error :
No exported method: BLCLICKED
[code:18d2bk88]
function ClientsBrowse()
local oDlg, oDbf, oBrw, oFnt
USE customer
DATABASE oDbf
@ 10,20 LISTBOX oBrw;
FIELDS oDbf:first, oDbf:last ;
HEADERS "first", "last" ;
... |
rewrite dbf01.prg using code | You are missing DEFINE DIALOG. This is the right code:
[code:2wxnbjxd]
function ClientsBrowse()
local oDlg, oDbf, oBrw, oFnt
USE customer
DATABASE oDbf
DEFINE DIALOG oDlg FROM 5, 5 TO 20, 80 TITLE "Browse"
@ 1, 2 LISTBOX oBrw;
FIELDS oDbf:first, oDbf:last ;
HEADERS... |
rfc 4648 y rfc 1321 | Hola que tal:
Necesitaría aplicar a un archivo zip el algoritmo estándar MD5 (rfc. 1321) y a otro archivo ZIP pasarlo a código Base64 (rfc 4648).
Alguien podría ayudarme.
Un saludo
Gracias
Carlos |
ribbon - round button | Sr. Antonio, é possível adicionar um round button como postado abaixo?
viewtopic.php?f=3&t=17636&p=92095&hilit=ribbon#p92095 |
ribbon - round button | SGS
[url:1qilpt5a]http://forums.fivetechsupport.com/viewtopic.php?p=84673#p84673[/url:1qilpt5a]
[url:1qilpt5a]http://forums.fivetechsupport.com/viewtopic.php?p=91426#p91426[/url:1qilpt5a] |
ribbon - round button | Daniel,
Muito obrigado |
ribbon object | can I insert a get and date pick on a group of ribbon ? |
ribbon object | For me it is working.
This is my code:
@ 2,20 GET oSay VAR cFind OF oGruppe PIXEL SIZE 100,16
oGruppe is the ribbon group
Best regards,
Otto |
ribbon object | thanks |
ribbon+oPanel+Xbrowse+TASKPANEL | Amigo estoy usando este codigo pero al mostrar el xbrowse se queda pegado
no hace nada:
FUNCTION WINGES01()
LOCAL oBrow
LOCAL oDlg, oLbx
LOCAL oFnt
LOCAL nW, nH
LOCAL cPersonalca:=Space(60)
LOCAL oGet
LOCAL cVar, oCbx, cHelp,oCbx1
LOCAL oBar, oPop, oIcon, cTit
LOCAL oBtn, aX[6], aIdx:={},oC... |
ribbon+oPanel+Xbrowse+TASKPANEL | Tienes un ribbonbar arriba, y abajo un panel y encima del panel un xbrowse.
Es eso todo lo que hay en la pantalla ?
Para que necesitas el panel ahi ? |
ribbon+oPanel+Xbrowse+TASKPANEL | Gracias antonio por responderme, resulta q no puse todo el codigo aca va:
cPersonal:=XServer:Query("SELECT * FROM personal ORDER BY cod_personal")
cPersonal:GoTop()
@ 0, 0 XBROWSE oLbx FIELDS cPersonal:Cod_personal,cPersonal:Nom_Personal,cPersonal:Rut_Personal,cPersonal:Dir_Personal,cPersonal:Ciu_Personal,cPerson... |
ribbon+oPanel+Xbrowse+TASKPANEL | Jose,
En FWH\samples\re.prg tienes un ejemplo de cómo hacerlo. Aqui te muestro una imagen:
[img:331w16zp]https://bitbucket.org/fivetech/screenshots/downloads/re.jpg[/img:331w16zp]
la forma de construirlo la encuentras en la función OpenRCFile. Basicamente lo que se hace es usar un splitter, por lo que no... |
ribbonbar | when I linking my sources where I using Ribbon i get error:
my source
DEFINE RIBBONBAR oRib Window oWnd;
HEIGHT 130;
TOPMARGIN 25 ;
PROMPT "Dokumenty", "Ewidencja", "Kontrahenci","Raporty","Administrator","Koniec"
oRib:nLeftMargin = 85
o... |
ribbonbar | Kajot,
It does not fail with FWH 13.05 (13.06), so surely it has been fixed since the version that you are using.
Could you please run this test and let me know if it also fails there ? thanks
[code=fw:j56h869w]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <s... |
ribbonbar con bmp desde recurso | Hola.
[code=fw:8c3l6wd8]<div class="fw" id="{CB}" style="font-family: monospace;"> @ <span style="color: #000000;">8</span>, <span style="color: #000000;">75</span> ADD <span style="color: #0000ff;">BUTTON</span> ::<span style="color: #000000;">oBtns</span><span style="color: #000000;">[</span> <span style="color: ... |
ribbonbar con bmp desde recurso | Hola.
[code=fw:wzrno4b0]<div class="fw" id="{CB}" style="font-family: monospace;"> @ <span style="color: #000000;">8</span>, <span style="color: #000000;">75</span> ADD <span style="color: #0000ff;">BUTTON</span> ::<span style="color: #000000;">oBtns</span><span style="color: #000000;">[</span> <span style="color: ... |
ribbonbar con bmp desde recurso | Estimado Goosfancito
Quizás éste código le ayude
[code=fw:3vh7a3jb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">DEFINE</span> RIBBONBAR oRBar <span style="color: #0000ff;">WINDOW</span> oWnd <span style="color: #0000ff;">PROMPT</span> <span style="color: #... |
ribbonbar con bmp desde recurso | jajja
espectacular! gracias gracias! |
ribbonbar con bmp desde recurso | BITMAP "RBTOOLS" <<<-----assim mesmo |
ribbonbar high | Hello,
I am still working on the “Metro like” release.
Although I made some changes in usability. I do not use full screen obligatory as I planed when I started.
It seems to me that the ribbonbar consumes to much space. How can I reduce high.
Best regard,
Otto
[img:10hi3usr]http://www.bergland.info/fivewi... |
ribbonbar high | Otto, try with clausule nHeight ?
As always, his designs are great
[code=fw:2n3p6ii0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />#xcommand <span style="color: #0000ff;">DEFINE</span> RIBBONBAR <span style="color: #000000;">[</span> <oRBar> <span style="color: #000000;">]</span> ;<br /... |
ribbonbar high | Hello Cristobal,
Thank you and thank you for your kind words.
Now it is working. I have to set HEIGHT and TOPMARGIN.
Best regards,
Otto |
ribbonbar windows 10 | Hola
Como puedo poner en una ribbonbar el estilo windows 10 ?
Saludos,
Gabriel |
ribbonbar windows 10 | Puedes poner una imagen?
Gracias |
ribbonbar windows 10 | DEFINE RIBBONBAR oRBar WINDOW oWnd PROMPT "Tab 01", "Tab 02", "Tab 03" 2010 |
ribbonbar windows 10 | Prueba también:
DEFINE RIBBONBAR oRBar WINDOW oWnd PROMPT "Tab 01", "Tab 02", "Tab 03" 2015 |
ribbonbar windows 10 | Hola
Adjunto pantallazo del paint, esta sería la idea.
Saludos,
[url=http://es.zimagez.com/zimage/windows20.php:2jfoaqkp][img:2jfoaqkp]http://es.zimagez.com/miniature/windows20.jpg[/img:2jfoaqkp][/url:2jfoaqkp] |
ribbonbar windows 10 | Prueba con la cláusula 2015
No es exactamente el mismo, pero se asemeja bastante |
ribbonbar windows 10 | Antonio, se ve regular, en el degradado al pasar por lo botones no es el mismo, adjunto una pantallazo.
Saludos y Mil gracias
[url=https://imgbb.com/:rw8fi64d][img:rw8fi64d]https://image.ibb.co/dR6b5k/Dibujo.jpg[/img:rw8fi64d][/url:rw8fi64d] |
ribbonbar windows 10 | Utiliza el estilo 2013 y configura los colores que no te gusten como necesites |
ribbonbar windows 10 | Una funcionalidad interesante de las Ribbonbar de office es que haciendo doble click en la pestaña la ribbon se contrae, y unicamente se muestran los títulos de las pestañas asemejando a un menú. ¿ Esto se puede hacer con la RB de FWH ?
Saludos, |
ribbonbar windows 10 | José Luis,
De momento no |
ribbonbar windows 10 | José Luis,
Modificando asi el Método LDblClick() en la Clase TRibbonBar y con el ejemplo que te pongo a continuación se consigue el efecto que comentas:
[code=fw:38q4rmxk]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> LDblClick<span style="color: #000000;">(</... |
ribbonbar windows 10 | nice |
ribbonbar windows 10 | Hola
Como puedo cambiar el color de selección de un botón ?
Saludos,
Gracias
[img:2pt6j64o]http://img.fenixzone.net/i/b0XNSvl.jpeg[/img:2pt6j64o] |
ribbonbar windows 10 | [quote="Antonio Linares":3dfat4b7]José Luis,
Modificando asi el Método LDblClick() en la Clase TRibbonBar y con el ejemplo que te pongo a continuación se consigue el efecto que comentas:
[code=fw:3dfat4b7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> LDblClick<sp... |
ribbonbar windows 10 | Ejemplo
[code=fw:19qy74dj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #00C800;">local</span> aClrMenu1 := <span style="color: #000000;">{</span> <span style="color: #000000;">{</span> <span style="color: #000000;">0.5</span>, RGB<span style="color: #... |
ribbonbar windows 10 | Antonio,
I tried to insert this features on my app
on a Window I open a dialog with nStyle := nOR( WS_CHILD, 4 )
if this dialog is actived and I click then it insert a space from tab and the dialog activated and I not Know How refresh the dialog to change the size
I tried with aClient := GetClientRect (oWnd:hWnd ... |
ribbonbar windows 10 | Try with oWnd:Resize() |
ribbonbar windows 10 | ::oBar:bLDblClick = { || (If( ::oBar:nHeight > 27, ::oBar:nHeight := 27, ::oBar:nHeight := nHeightRib),;
ResizeWndMain())}
my resize function
oApp():oBar is a ribbonbar
Function ResizeWndMain()
local aClient
if oApp():oDlg != NIL
aClient := GetClientRect (oApp():oWndMain:hWnd )
... |
ribbonbar windows 10 | Gracias Antonio, el hack funciona perfectamente.
Saludos, |
ribbonbar windows 10 | Hola
Perdonen por tanta molestia, pero no hay manera de cambiar el color, al pasar el ratón por encima del boton de la ribbonbar, como se puede hacer ?
[img:24kf5lb2]http://img.fenixzone.net/i/a2cDWXd.jpeg[/img:24kf5lb2]
Saludos |
ribbonbar windows 10 | Aqui tienes un ejemplo:
[code=fw:7ayv02yb]<div class="fw" id="{CB}" style="font-family: monospace;">oButton:<span style="color: #000000;">bClrGradNormal</span> := <span style="color: #000000;">{</span> | lPressed | <span style="color: #00C800;">If</span><span style="color: #000000;">(</span> lPressed,;<br />&... |
ribbonbar windows 10 | Gracias Antonio, ahora si me funciona perfectamente.
Saludos, |
ribonbar ocultar pestaña ( SOLUCIONADO ) | Estimados
se puede ocultar del ribonbar una pestaña
desde ya gracias |
ribonbar ocultar pestaña ( SOLUCIONADO ) | DEFINE RIBBONBAR oRibbon OF oWnd Prompt "" HEIGHT 45 TOPMARGIN 3 2010
oRibbon:aVisible[1] := .F. // Para que NO se Pinten los Tabs |
ribonbar ocultar pestaña ( SOLUCIONADO ) | Hola SantaCroya
Muchas gracias, funciono perfecto, solo que si es un pestaña posterior queda en blanco
lo solucione asi
oRBar:hide(5)
oRBar:Hide(6) |
ribonbar tolltip not showing | Good morning
Tooltips donot show on buttons inside ribbonbar , any idea ?
I am using fwh 11.04
Thanks for help
small sample of code
[code=fw:16kyxsee]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">BRUSH</span> OBRUSH1 FILE D... |
ribonbar tolltip not showing | Richard,
Here tooltips are working fine on ribbonbar buttons, in fact we have modified FWH\samples\rbdesign.prg to allow buttons tooltips editing, and its working.
Please notice that in your example you are setting the tooltip after the ACTIVATE WINDOW ... so the program execution does not reach there until the windo... |
ribonbar tolltip not showing | Antonio
The define button is in the init method , i did not show all the code
I can not see whete to apply the change in the trbtn.prg , in which method ?
Thanks for your help,
Richard |
ribonbar tolltip not showing | Richard,
Please build the rbdesign.prg that I have provided and let me know if tooltips show fine in it, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
That change is for method cGenPrg() but it will not affect your code, only the generation of PRG code from rbdes... |
ricerca programmatore | SI ricerca programmatore per rifacimento funzione decompilata dal CA-Clipper d in un vecchio programma dos |
ricerca programmatore | Puoi dare maggiori dettagli? Di che si tratta, codice sorgente, compenso.
EMG |
rich3d20.dll | è possibile sapere dove andare a vedere tute le funzioni che questa dll supporta? per esempio potrebbe creare i paragrafi come in word ?
e le tabelle le puo' creare ?
silvio |
rich3d20.dll | Sulla MSDN alla voce "Rich Edit Control Reference".
EMG |
rich3d20.dll | grazie...
io avrei coem gia detto anche un altro file rtfpreview.prg ma non so se linares vuole che lo dico oppure lo posso pubblicare e dare agli altri che faccio ? Non mi ricordo chi me lo ha dato anni addietro... e dato che linares è uno degli autori non so se faccio bene a farlo scaricare anche agli altri dato che ... |
rich3d20.dll | No, non c'è. Ti conviene chiedere direttamente ad Antonio.
EMG |
rich3d20.dll | Ho risolto.
Non posso fare niente .
Ho due versioni della classe rtf una di OZS ( prima della litigata con linares) e l'altra quella della ultima versione di fw.
Quindi il richpad funzionerebbe anche con l'anteprima di stampa mentre la seconda ha solo la stampa diretta.
Ho provato ad inserire solo il metodo dell'antep... |
rich3d20.dll | Sono tre funzioni presenti nella printdc.c dell'attuale versione delle FWH.
EMG |
rich3d20.dll | strano dovrebbe prenderle ....allora |
rich3d20.dll | le funzioni sono state chiamate in un altro modo
ho dovuto sotituire prnget margins perchè non c'è lafunzione
adesso l'anteprima dell'rtf funziona egregiamente sono che i margini non sono stati settati come scritto sopra.
Mi facciouna captina sul file per vedere se posso modificare questo inconveniente e vi faccio s... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.