topic
stringlengths
1
63
text
stringlengths
1
577k
wBrowse Hernan x (xHarbour 1.2.1 + FWh 10.6 )
Estou tentando recompilar minha aplicacao utilizando: FiveWin 10.6 + xHarbour Compiler build 1.2.1 (Simples) <Rev. 6633> estou encontrando um unico problema com a wBrowse do Hernan: xLINK: error: Unresolved external symbol '__param referenced from (wBRWLINE.obj)'. xLINK: error: Unresolved external symbol '__reta refe...
wBrowse Hernan x (xHarbour 1.2.1 + FWh 10.6 )
Use this version, I think it will work properly. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- m --><a class="postlink" href="http://www.box.net/shared/iqiml7jff3">http://www.box.net/shared/iqiml7jff3</a><!-- m -->
wBrowse Hernan x (xHarbour 1.2.1 + FWh 10.6 )
Mui grato... funcionou...
wBrowse de Hernan
Hola Amigos:En el Brw de Hernan modificado por Rossine y usando RECURSOS, el Brw se pinta en nTop=0 y nLeft=0 aunque en el recurso esté en otra posición.He buceado en el Brw buscando el momento en que se toman los datos del recurso, no lo tiene cuando hace el ReDefine, y cuando entra en el método Default ya lo tiene, a...
wBrowse de Hernan
Jorge,Prueba este código y dinos que te aparece:ACTIVATE DIALOG oDlg ; ON INIT MsgInfo( oBrw:nTop )
wBrowse de Hernan
Hola Antoniomuchas gracias por responder.en msginfo(oLbx:nTop) sale 0, tambien en nLeftSaludosJorge Vargas
wBrowse de Hernan
Pruébalo asi:ACTIVATE DIALOG oDlg ; ON INIT MsgInfo( WndTop( oBrw:hWnd ) )
wBrowse de Hernan
AntonioSale 0Gracias por tu tiempoJorge Vargas
wBrowse de Hernan
Jorge,Prueba esto y veamos si cambia de posición:ACTIVATE DIALOG oDlg ; ON INIT WndTop( oBrw:hWnd, 200 )
wBrowse de Hernan
Hola AntonioMovió el oLbx bastante abajoQue sigue ahora?. Muchas gracias por tu ayudaSaludosJorge Vargas
wBrowse de Hernan
SE ME OCURRE QUE EL ARCHIVO DE RECURSO DEBE TENER ALGO MALO,EDITALO COMO TEXTO Y BUSCA EL DICHOSO LISTBOX HABER EN QUE POSICION TE ALMACENÓNOSE, DIGO.
wBrowse de Hernan
PUEDES PONER EL CODIGO DEL FUENTE??
wBrowse de Hernan
EN EL .RC DEBE DECIR ALGO COMO: CONTROL "", 401, "TWBrowse", WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, 5, 15, 338, 182DONDE LAS COORDENADAS DEL PUNTO DE INICIO SON 5,15ESPERO TE SIRVA DE ALGO
wBrowse de Hernan
Hola ÁngelDiscúlpame por la demora en responder, el hecho es que con la solución que me dio Antonio continué trabajando. Tenia que entregar un programa.La línea del recurso es ésta:CONTROL "", 174, "TWBrowse", WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 54, 120, 210, 100Pero aun así aparecía en la posición 0,0; inc...
wBrowse de Hernan
Saludos jvargas.. yo tambien he tenido el problema con twbrowse de Rossine, te lo pinta en el TOP y por el tiempo no me pude menter de lleno en el problema pero vi esto en el foro y me auxilio un póco, aunque no pude cambiar o corregir el problema espero que tersirva y si llegas a tener la soucion que nos la compart...
wBrowse de Hernan
QUE RARO <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> , A MI ME HA TRABAJADO SIEMPRE BIÉN!!
wBrowse de Hernan
Hola TomafaGracias por tu pista.Llegué a que ::nWidth es NIL y que aRect{1] y aRect[2] tienen 0 pero la entradas 3 y 4 de aRect tienen 196 y 416 respectivamente.La linea en el RC tieneCONTROL "", 174, "TWBrowse", WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 54, 120, 210, 100Al parecer aRect := GetClientRect( ::hWn...
wBrowse de Hernan
esta parte la utiliza Rossine para calcular el titulo, cuando se pinta el browse lo pone en el top 0 por el valor que lleva ahora como se puede saber en donde se pinta el caga o panel del browse para saber en donde lo coloca if ::nWidth = NIL && Somente para REDEFINES && By Rossine ::nTop := aRect...
wBrowse de Hernan
Estoy compilando un aplicativo viejito con FW806 con la libreria Wbrowse de Hernan pero siempre toma el Wbrowse de Fivewin , cual debe ser el orden correcto de las librerias para que tome la de Hernan y no la de Fivewin.F:\Lib\3dharbour\Xfwh806\Twbrwx.lib === la de HernanF:\Lib\3dharbour\Xfwh806\btngetx.lib === la bt...
wBrowse de Hernan
Resuelto,Era el nombre del directorio demasiado grande.
wNetGetConnection() issue
Hi Antonio wNetGetConnection( z: ) returns the correct UNC path for the specified drive but the returned value (which is correct) has a whole lot of garbage chrs appended to it, which I have to remove by finding the first Chr(0) in the returned value and substringing to the chr before that. Using xHb and fWh version ...
wNetGetConnection() issue
Peter, Its strange because the C source code uses lLen to trim it: WNetGetConnection( hb_parc( 1 ), ( char * ) bBuffer, &lLen ); hb_retclen( ( char * ) bBuffer, lLen ); So it looks as a Windows API wrong behavior. But you got a good workaround <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" ti...
wNetGetConnection() issue
should iLen be DWORD ?
wNetGetConnection() issue
lLen is an unsigned long wich it is like a DWORD [code:1aynil7w] function Main&#40;&#41; MsgInfo&#40; Test&#40;&#41; &#41; return nil #pragma BEGINDUMP #include <hbapi&#46;h> #include <windows&#46;h> HB_FUNC&#40; TEST &#41; &#123; hb_retl&#40; sizeof&#40; unsigned long &#41; == sizeof&#40; DWORD &#41; &#41;;...
wNetGetConnection() issue
you are right. sorry. i shdnt have bothered you with that. actually long time back wnetgetuser() function was having the same problem. I used to have a wrapper function truncating upto chr(0). later it got solved on its own. similar problem exists now with this function.
wNetGetConnection() issue
NageswaraRao, You are welcome <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
wNetGetUser
When I attempt to use wNetGetUser() I get a link error: xLINK: error: Unresolved external symbol '_WNetAddConnectionA'. xLINK: error: Unresolved external symbol '_WNetGetUserA'. xLINK: error: Unresolved external symbol '_WNetConnectionDialog'. xLINK: error: Unresolved external symbol '_WNetDisconnectDialog'. xLINK...
wNetGetUser
Harbour or xHarbour You can add the libraries you use?
wNetGetUser
Byron WNetGetuser() is a FiveWin function which I use all the time .. Here are the first 3 libs which I link using xHarbour and borland 582 %C_LIB_INSTALL%\c0w32.obj=1 // borland C:\FWH1203\LIB\Fivehx.lib=2 C:\FWH1203\LIB\Fivehc.lib=3 If you can not get WNetGetUser to work you can link in Net.c from the source\Win...
wNetGetUser
[code=fw:pt1rfawr]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">STATIC</span> oWnd<br /><span style="color: #00C800;">STATIC</span> lFichSub := .T.<br /><br /><span ...
wait dialog
I'd like to have a dialog with a TAnimate object (example the copy files di windows) during massive dbf operations. The animation doesn't start, the only way to make it move is placing various sysrefresh() during dbf operations. Is there any other way? this is the code: [code:3jjoesea] #include "fivewin&#46;ch" func...
wait dialog
Riccardo, SysRefresh() is required in order to let Windows process pending messages.
waitrun por q no detenie la ejecucion
Amigos que funcion puede detener mi sistema y continuar una vezque se halla cerrado la aplicacion externa que llamoAqui en el ejemplo llamo al navegador k-Meleon pero este se cargay sigue mi aplicacion .WAITRUN("C:\Archivos de programa\K-Meleon\k-meleon.exe <!-- m --><a class="postlink" href="http://www.aduanet.gob.pe/...
waitrun por q no detenie la ejecucion
Intente con:SysWait( 0 )Saludos.
waitrun por q no detenie la ejecucion
Vladimir, tengo la misma necesidad que tu y no he visto como resolverlo,yo quiero que mi sistema deenga su ejecucion, cuando activo el waitrun y hasta que se cierre este programa vuelva a ser funcionabel, he logrado minimizar, y va bien, pero el detener su ejecucion no he podido, lo hago asi:FUNCTION ALC4200(oItem,nBtn...
waitrun por q no detenie la ejecucion
Pues la verdad es que a mi me funciona magnificamente. El único cambio, que no sé si tendrá importancia, es que yo no indico el nCmdShow:WAITRUN( "pepito.exe")
waitrun por q no detenie la ejecucion
Manuel tiene razón. Yo siempre lo he usado sin el último parámetro y hasta el momento todo bien.Saludos.
warehouse management
Hello friends, You can also use the interface of the scheduling system for warehouse management. Here you can see a small warehouse with plastic boxes. I am now searching for a switch which is in one of the boxes. Best regards Otto [img:1myw58rl]https&#58;//mybergland&#46;com/fwforum/lager&#46;jpg[/img:1myw58rl] [...
warning C4049
Boas Quando compilo o meu PRG dá o seguinte WARNING. meuprg(65536) : warning C4049 : Compiler Limit : Terminate line number emission. - O Programa Funciona Normalmente será que poderá dar algum problema que warning será este e que poderá acontecer.
warning C4049
It seems as your PRG has over 65535 source code lines and the compiler can't display the line number when compiling. Anyhow it is just a warning so your appication should work fine. It is advisable not to use so many source code lines in just one PRG. It is better to split your PRG into several ones for an easier mai...
warning LNK4088 and LNK4254
Dear All I'm Using xHarbour 0.99.71 + FWH 6.12 + VC++ 2005 I got a warning LNK4088: image being generated due to /FORCE option; image may not run and lots of warning LNK4254: section '.CRT' (40000040) merged into '.data' (C0000040) with different attributes How can I do for these warning messages complile batch...
warning LNK4088 and LNK4254
Dixon, Those are just warnings that you can safely ignore
warning w0002 ???
Estoy compilando una aplicación y me sale este mensaje en varios módulos del programa [code=fw:3lby4jlt]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Warning W0002  Redefinition or duplicate definition <span style="color: #0000ff;">of</span> <span style="color: #00D7D7;">#define</span> c<br /> </div>[...
warning w0002 ???
No tienes dos ó más funciones con el mismo nombre?
warning w0002 ???
Karinha, gracias por responder. No tengo funciones duplicadas. Parecería que el mensaje de error es que "#define c" está duplicado, pero no sé por donde empezar a buscar. De todas maneras es un error menor ya que la aplicación funciona perfectamente. Cuando tenga un poco de tiempo me pondré a investigar. Nuevamente gra...
warning w0002 ???
Mira, porfa: <!-- m --><a class="postlink" href="http://www.ousob.com/ng/53error/ng2caa.php">http://www.ousob.com/ng/53error/ng2caa.php</a><!-- m --> salu2
warning w0002 ???
Se usted compila asi: [code=fw:gfsfy91e]<div class="fw" id="{CB}" style="font-family: monospace;"><br />%hdir%\bin\harbour RPREVIEW /es2/m/n/a/w0 /i%fwhdir%\include;%hdir%\include /w /p RPREVIEW.C &nbsp; &nbsp;>> Erro.log<br /><br /><span style="color: #B900B9;">// Modifica el flag asi:</span><br /><br />%hdir%\bin\har...
warning w0002 ???
Gracias Karinha por tu interés. Leí el link que pusiste, tendría que fijarme en cada archivo de preprocesamiento y ahora no lo puedo hacer por falta de tiempo, pero ya lo veré en cuanto me desocupe un poco. En cuanto a la modificación del flag de las warnings del compilador prefiero tenerlo activo para ver las variable...
warnning message
What the cause behind error rw4002 :segment8-18 PRELOAD
warnning message
Ehab, Is it a brc32.exe error ? Please copy here the complete output. Thanks.
warnning message
Compiling... 317K available Compiling SITEX.PRG Code size 22678, Symbols 2976, Constants 6794 ECHO is off. Linking... BLINKER : link was successful SITEX.EXE (0.4 seconds) * Application successfully built ECHO is off. Microsoft (R) Windows Resource Compiler Version 3.10 Copyright (C) Microsoft Corp. 1985-1992. All ...
warnning message
Ehab, Those are warning you can safely ignore.
warnning message
Warning: Unable to perform incremental link - performing full link... * Application successfully built
warnning message
[quote="Ehab Samir Aziz":2mbh6fbm]Warning: Unable to perform incremental link - performing full link... * Application successfully built[/quote:2mbh6fbm] Congratulation! ( could really not resist <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->) Detlef
warnning message
Ehab, Its ok, the linker says that its going to rebuild the entire EXE <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
was bedeutet das ||
[url:1fnnl1oy]http&#58;//www&#46;xbaseforum&#46;de/viewtopic&#46;php?f=32&t=7006[/url:1fnnl1oy] [quote:1fnnl1oy] von brandelh » Mi, 16. Jan 2013 15:33 Das ist die Syntax für einen CODEBLOCK ! Ein ARRAY wäre das: aVal := { "Wert1", 2, date() } // erzeugt ein Array mit 3 Elementen (String, num, Datum) Bei einem CodeB...
ways to save report to a file and easily open
Hi, One of our customers asked me if fwh app can offer a way to save a report to a file, email it to his customers and his customers can open the file and print it in a easily way. Now they print out then send a fax to his customer, but fax not 100% reliable. Best regard! Shuming Wang
ways to save report to a file and easily open
Shuming: Try EasyPreview from <!-- w --><a class="postlink" href="http://www.reportdesigner.info">www.reportdesigner.info</a><!-- w --> You can save the report in JPG, BMP, WMF, EMF, PNG and you can send it by mail. If you have more than 1 page you can save it and compress it and send the file.zip by mail too. Reg...
ways to save report to a file and easily open
Ruben, If I purchase easypreview,could I intergrade zip,sendmail(hbzlib.dll,mail.dll,nconvert.exe ,epreview.exe,epreview.dbf ) into my app ( link a lib or dll file)? now there are too many files. Regards! Shuming Wang
ways to save report to a file and easily open
Hello, you can add easely the option to save the EMF to another graph format using nconvert.exe regards Marcelo
ways to save report to a file and easily open
Shuming: I belive that you can´t, but you can ask to EasyPreview developpers. Sorry for my English. Regards. Ruben Fernandez.
ways to save report to a file and easily open
Marcelo: How can I do that? Thank tou. Ruben Fernandez
ways to save report to a file and easily open
Ruben you can use nconvert a tools part of xnview. 1.- you can get all the EMF generated for report or print class by default windows files temporal directory but you can change this in the tprint data cDir from the resport oReport:oDevice:cDir This is for FWH previus last 2.7 because I read that ...
ways to save report to a file and easily open
Shuming, One issue to keep in mind is that fax is secure and email isn't. You can get a PDF print driver that can be controlled by via code so that it doesn't prompt the user for a filename. Some are capable of being password protected. It is also possible to add a digital signature to a PDF. Another option is to z...
ways to save report to a file and easily open
[quote="James Bott":3fo2dh5g]Shuming, One issue to keep in mind is that fax is secure and email isn't. You can get a PDF print driver that can be controlled by via code so that it doesn't prompt the user for a filename. Some are capable of being password protected. It is also possible to add a digital signature to a...
ways to save report to a file and easily open
Richard, I note that the website does not mention supporting EMF files, but I suppose that must be a mistake on their part. Also, it appears that the licensing requires that you purchase one copy (at US$250) for each copy of your application. I know that there are royalty free libraries that you can get to generate P...
ways to save report to a file and easily open
Hello! <!-- m --><a class="postlink" href="http://www.utilitywarrior.com/Image-to-PDF-Dynamic-Link-Library.htm">http://www.utilitywarrior.com/Image-to- ... ibrary.htm</a><!-- m --> [quote:29dg02ge]Pricing: Per Product $59.99 Unlimited Development $249.99 [/quote:29dg02ge] <!-- m --><a class="postlink" href="ht...
ways to save report to a file and easily open
Roman, Thanks for pointing out the terms of the DLL. I was apparently looking at the command line (exe) utility. James
ways to save report to a file and easily open
[quote="modicr":103yidfp]Hello! <!-- m --><a class="postlink" href="http://www.utilitywarrior.com/Image-to-PDF-Dynamic-Link-Library.htm">http://www.utilitywarrior.com/Image-to- ... ibrary.htm</a><!-- m --> [quote:103yidfp]Pricing: Per Product $59.99 Unlimited Development $249.99 [/quote:103yidfp] <!-- m --><a ...
ways to save report to a file and easily open
[quote="James Bott":86fh4nmf]Roman, Thanks for pointing out the terms of the DLL. I was apparently looking at the command line (exe) utility. James[/quote:86fh4nmf] James The same licensing applies to Command line utility Richard
ways to save report to a file and easily open
Richard, [quote:1g074bsf]The same licensing applies to the command line utility.[/quote:1g074bsf] Well perhaps it does, but here is what their website says: [quote:1g074bsf]Per Workstation: For use by a single user on a single PC. Per Server: For use by multiple users on a single PC, whether through a client/server...
ways to save report to a file and easily open
Thanks for so many replies! Shuming Wang
ways to save report to a file and easily open
[quote="ShumingWang":24se3r0p]Thanks for so many replies! Shuming Wang[/quote:24se3r0p] One more from me... You may use PDF995. This is a printer driver which allows you to do something more than any other PDF driver that I have seen, which is to create a pagkage of all print jobs, in one file (called Combined). It...
ways to save report to a file and easily open
Evans, I have a few questions about PDF995. If I remember correctly it also requires installing Ghostscript too? If so, then your application installation has to install the app, PDF995, and Ghostscript, right? Also, to prevent the splash screens, you would need to pay the license fee for each copy of PDF995 that you...
ways to save report to a file and easily open
[quote="James Bott":3s6qq46o]Can you print to a PDF without user interaction (no dialogs)?[/quote:3s6qq46o] Yes, using PDFCreator. EMG
ways to save report to a file and easily open
[quote="EnricoMaria":5p8bzmm6][quote="James Bott":5p8bzmm6]Can you print to a PDF without user interaction (no dialogs)?[/quote:5p8bzmm6] Yes, using PDFCreator. EMG[/quote:5p8bzmm6] Enrico You still need to install a pdf printer with PDF creator Richard
ways to save report to a file and easily open
[quote="Richard Chidiak":1murk0eq]You still need to install a pdf printer with PDF creator[/quote:1murk0eq] Yes, but it is free. EMG
ways to save report to a file and easily open
[quote="James Bott":1zeifx5l]Evans, I have a few questions about PDF995. If I remember correctly it also requires installing Ghostscript too? If so, then your application installation has to install the app, PDF995, and Ghostscript, right? Also, to prevent the splash screens, you would need to pay the license fee for...
ways to save report to a file and easily open
Evans, Thanks for all the detailed info. [quote:304lnlwy]PDF995 is a freeware tool, requiring no fees to use, unless you want to get rid of the splash screens.[/quote:304lnlwy] Well, of course, for a commercial application (that you are selling) you do not want splash screens from another application showing up. So ...
ways to save report to a file and easily open
James, for printing to pdf I prefer CutePdf. It´s free and installs as a normal windows printer. CutePdf supports more pageformats than pdf995. And the quality of the createtd pdf is very good. Stefan
ways to save report to a file and easily open
[quote="StefanHaupt":2uhjnjqm]James, for printing to pdf I prefer CutePdf. It´s free and installs as a normal windows printer. CutePdf supports more pageformats than pdf995. And the quality of the createtd pdf is very good. Stefan[/quote:2uhjnjqm] Stefan and others I guess you should be very careful about licensing...
ways to save report to a file and easily open
Richard, I suppose when we distribute a aplication , we have no control which printers the user installs , or downloads. So , i give the user only 'the information' that such tools can be usefull , he has to install it himself , it has nothing to do with mine distribution. It is not mine responbility , but from the...
ways to save report to a file and easily open
[quote="Frank Demont":2z2xkdjb]Richard, I suppose when we distribute a aplication , we have no control which printers the user installs , or downloads. So , i give the user only 'the information' that such tools can be usefull , he has to install it himself , it has nothing to do with mine distribution. It is not m...
ways to save report to a file and easily open
Richard, [quote:dibt9whj]If you want to email a report from your application , then you have to print it on a "specific" printer first (the pdf one) and then email it. Thus you have changed your software for this purpose and this is covered by the licensing issue. You should read the GPL license of these products. [/q...
ways to save report to a file and easily open
Richard, [quote:1xithkat]The only product i have found at a "fairly reasonable price" for unlimited licensing is image2pdf that installs either a dll file or a executable run time. No special printer needs to be installed and the price is 250 Us dollars for unlimited users. [/quote:1xithkat] It seems the price for a ...
ways to save report to a file and easily open
[quote="James Bott":3ct3fsmk]I think Frank was saying that he does nothing to his application. He just tells the customer that they can get PDF print drivers if they want to. Personally, I don't think this is a good solution. Customers want this capability built-in and simple to use. Add-on print drivers will prompt th...
ways to save report to a file and easily open
Enrico, If you are referring to PDF Creator by Amyuni, the developer's license (the one that includes encryption and digital signature capability) is US$920. Kind of expensive. <!-- m --><a class="postlink" href="http://www.amyuni.com/en/products/pdf_creator/pricing.php">http://www.amyuni.com/en/products/pdf_c ... ri...
ways to save report to a file and easily open
[quote="James Bott":2l7tbrn7]Richard, [quote:2l7tbrn7]The only product i have found at a "fairly reasonable price" for unlimited licensing is image2pdf that installs either a dll file or a executable run time. No special printer needs to be installed and the price is 250 Us dollars for unlimited users. [/quote:2l7tbrn...
ways to save report to a file and easily open
Enrico, OK, now I see from a previous message that you said PDFCreator was free, so I am assuming you meant this one on Source Forge: <!-- m --><a class="postlink" href="http://sourceforge.net/projects/pdfcreator/">http://sourceforge.net/projects/pdfcreator/</a><!-- m --> The thing about Source Forge is that I never...
ways to save report to a file and easily open
Richard, [quote:1pp7dkub]http://www.utilitywarrior.com/Image-to-PDF-Dynamic-Link-Library.htm [/quote:1pp7dkub] OK. Now doesn't this just put the EMF files into a PDF? Isn't a EMF file an image? Therefore you have a graphic image in a PDF rather than text, so the viewer (person) would not be able to copy text out of t...
ways to save report to a file and easily open
[quote="James Bott":2n2maqbl]Enrico, OK, now I see from a previous message that you said PDFCreator was free, so I am assuming you meant this one on Source Forge: <!-- m --><a class="postlink" href="http://sourceforge.net/projects/pdfcreator/">http://sourceforge.net/projects/pdfcreator/</a><!-- m -->[/quote:2n2maqbl]...
ways to save report to a file and easily open
[quote="James Bott":2ezapr8i]After thinking about this some more, it seems that we have to use a print driver to get report output (from TReport and/or TPrinter) from a FW app into a PDF file as text. But that is compilcated by all the installation and licensing issues previously discussed. There is a PDF class but th...
ways to save report to a file and easily open
Enrico, [quote:2yqghsjo]PDF is currently an external component and most users can install the needed software without problem. [/quote:2yqghsjo] My point is that for a new application the customer has to install the app on a server, then the print driver on every PC. Six months later, when a new PC is added the print...
ways to save report to a file and easily open
[quote="James Bott":2ffd5f26]Richard, [quote:2ffd5f26]http://www.utilitywarrior.com/Image-to-PDF-Dynamic-Link-Library.htm [/quote:2ffd5f26] OK. Now doesn't this just put the EMF files into a PDF? Isn't a EMF file an image? Therefore you have a graphic image in a PDF rather than text, so the viewer (person) would not ...
ways to save report to a file and easily open
[quote="James Bott":3on7awhc]Ideally, it would be nice to have the PDF generation capability built into the app so print driver installation wouldn't be an issue. Then it would just be one install and that's it.[/quote:3on7awhc] I agree, but I can't see how to get this now. EMG
ways to save report to a file and easily open
Richard, [quote:lz534uqo]Usually when we save a report to a PDF, we do not want users to retreive data from it...[/quote:lz534uqo] OK, good in some situations. [quote:lz534uqo]...and most users do not have the tool to retreive from pdf, they just have acrobat readers.[/quote:lz534uqo] Perhaps you didn't know you ca...
ways to save report to a file and easily open
[quote="EnricoMaria":3fzjbfj7][quote="James Bott":3fzjbfj7]Enrico, OK, now I see from a previous message that you said PDFCreator was free, so I am assuming you meant this one on Source Forge: <!-- m --><a class="postlink" href="http://sourceforge.net/projects/pdfcreator/">http://sourceforge.net/projects/pdfcreator/<...
ways to save report to a file and easily open
[quote="James Bott":3sa8piu1]Richard, [quote:3sa8piu1]Usually when we save a report to a PDF, we do not want users to retreive data from it...[/quote:3sa8piu1] OK, good in some situations. [quote:3sa8piu1]...and most users do not have the tool to retreive from pdf, they just have acrobat readers.[/quote:3sa8piu1] P...
ways to save report to a file and easily open
Richard, [quote:pviirjy6]I know you can copy from Acrobat reader but this is an option you can forbid in any tool creating a pdf file. [/quote:pviirjy6] Understood. My point is that if you create PDFs from EMFs users cannot copy the text out even if you want to give them that capability. James
ways to save report to a file and easily open
[quote="James Bott":sbl55oo4]Richard, [quote:sbl55oo4]I know you can copy from Acrobat reader but this is an option you can forbid in any tool creating a pdf file. [/quote:sbl55oo4] Understood. My point is that if you create PDFs from EMFs users cannot copy the text out even if you want to give them that capability. ...