topic
stringlengths
1
63
text
stringlengths
1
577k
ways to save report to a file and easily open
[quote="Richard Chidiak":22lr63et] I guess you should be very careful about licensing if you are distributing software. None of the above stated programs is "free for commercial use". You need a license for all of them. I have spent quite a time on the subject and emailed all the authors including cutepdf, pdf95 ...et...
ways to save report to a file and easily open
Evans, [quote:3jnc8qgi]There is also another tool provided by PDF995. It's called "pdf995 Standard Encryption.exe". This accepts parameters to open any file, encrypt it with password, 64-128 bit algorithm, set properties for printing, copying, where to save the encrypted file and even under what filename, etc., all by...
ways to save report to a file and easily open
I found out how it works: [code=fw:11nvlaaa]<div class="fw" id="{CB}" style="font-family: monospace;"> winexec<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"C:<span style="color: #000000;">\P</span>rogram Files<span style="color: #000000;">\p</span>df995<span style="color: #000000;">\r</span...
ways to save report to a file and easily open
Hi, I suggest you to take a look at FastReport <!-- m --><a class="postlink" href="http://www.paritetsoft.ru/frh.htm">http://www.paritetsoft.ru/frh.htm</a><!-- m --> It is easly integrable in a FWH app and supports a lot of export formats - excel, word, openoffice write, openoffice calc also. It runs with a SINGLE sel...
ways to save report to a file and easily open
Hello Marco, thank you for your advice and suggestion. Do I need fast-report to create and design the reports? Best regards, Otto
ways to save report to a file and easily open
Hello Marco, I had had a look at demofrh.exe. This designer tool looks good. Maybe fastreport could provide an export or convert of the fr3 files to vrd files. Best regards, Otto
ways to save report to a file and easily open
The designer is included into the FastReport self-contained dll. You can activate the designer with a simply fwh call. In my opinion this designer is really good as you can check but a bit compicated for the end-user. [quote="Otto":3ud1gwhs]Hello Marco, thank you for your advice and suggestion. Do I need fast-repor...
ways to save report to a file and easily open
As I know there isn't a feature to convert a fr3 (Fast Report file) into a vrd (ReportDesigner Report file), but you can ask to Timm about this. [quote="Otto":8m9njsdy]Hello Marco, I had had a look at demofrh.exe. This designer tool looks good. Maybe fastreport could provide an export or convert of the fr3 files to v...
ways to save report to a file and easily open
Hello Marco, thank you for your answer. Best regards, Otto
wbrose duda urgente
alguien sabe donde se colorea la celda seleccionada del browse, en que funcion, o alguien tiene una funcion para cambiar el estilo de los bordes cuando toma la celda el focus gracias
wbrose duda urgente
Hola Checa este link, creo que es lo que necesitas <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: --> <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=4377">http://fivetechsoft.com/forums/viewtopic.php?t=4377</a><!-- m --> Saludos
wbrowse
Hi All I have a two dimension array but I dont know how to get the data into the browsers bLine ie oLbx:bLine := I have an array of employees which can have eight tasks assigned for a day and I am trying to display this in a browse - the size of the employee array can change as new staff is hired or they leave. ...
wbrowse
Is it the number of rows or the number of columns that change?
wbrowse
The number of columns change - the columns depend on the array of employees. cheers Colin
wbrowse
Have a look at the sample code below. I am assuming you browsing a 2-dimensional array. In the sample each array element represents a line in the browse while each subarray represents a column, eg. aArrayData[nRow][nCol] First thing to do is create a dummy browse using @ 0,0 LISTBOX oBrw FIELDS "" HEADERS "" COLSIZ...
wbrowse
Hi kenedyv Thank you - your sample works exactly the way I want my app to work - I am building dynamic arrays and must be doing something wrong , but at least I have some good code to follow. Your help is greatly appreciated. Cheers Colin
wbrowse
Hi Kennedyv I get an error when calling DispVals MsgInfo(oLbx2:nAt) // returns 1 oLbx2:bLine := { |o| DispVals(aTasks,o) } olbx2:nAt // causes error in DispVals function I presume {|o| is the browse object being passed to the dispvals function. Cheers Colin
wbrowse
Can you send me the Application and Stack Calls sections from your error.log file. At a guess, it sounds like this may be a parameter passing issue. In the meantime, a few pointers which might help: - DispVals() assumes a 2-dimensional array as follows: aArrayData[nRow][nCol] - :aColSizes must be set between :SetAr...
wbrowse
Hi Vincent ( it feels much more polite to address you properly ) I think I have the two dimensional array correct - but I am going to strip my program right back and try build on your code. Cheers Coiln
wbrowse
Hi Colin OK. Let me know how things go. I've done a lot of work with arrays in TWBrowse - it can be tricky. Vincent
wbrowse
Hi Vincent I found why I cant get your code to work in my app {|0| DispVals(aData,0) } works fine with the fivewin wbrowse but I use a modified wbrowse ( Hernans) and the browse object is not getting passed down. This is the error I get Error BASE/1004 Class: 'NIL' has no exported method: NAT I have checked the c...
wbrowse
DispVals() is not receiving the oBrw parameter In the sample program replace oBrw:bLine := { |o| DispVals(aArrayData,o) } with oBrw:bLine := { |o| DispVals(aArrayData,oBrw) } Also, ensure that oBrw has been created and is passed t the function in which this line appears. Vincent
wbrowse
Hi Vincent I have my app all working now - thats for all your assistance. Cheers Colin
wbrowse
Thanks kennedyv was looking the same as Colling, and I could not solve with my code. Luis Sáenz (surGom)
wbrowse ----> xbrowse
With Wbrowse( ceccarelli) I used a function to use user functions [code:t3uhqcbu] oBlistbox&#58;bKeyDown&#58;=&#123;|nKey| Val_nKey&#40;nKey&#41;&#125; [/code:t3uhqcbu] and then this function …. [code:t3uhqcbu] STAT FUNC Val_nKey&#40;nKey&#41; DO CASE CASE nKey==VK_INSERT &#46;AND&#46; lABC ...
wbrowse ----> xbrowse
The same way silvio. Regards
wbrowse ----> xbrowse
Dear Jcso , the same not run ok ...
wbrowse ----> xbrowse
[quote="Silvio":1ma8wy9z]Dear Jcso , the same not run ok ...[/quote:1ma8wy9z] Check your code, it must run ok.
wbrowse conversion to xbrowse
which is the function of xbrowse equal to :olbx:HposBottom olbx:hposTop
wbrowse conversion to xbrowse
Silvio,FWH browses don't provide those DATAs:HposBottom, hposTopwhat browse is it ?
wbrowse conversion to xbrowse
sorry but it is an old 16 bit wbrowse of hernan perhaps
wbrowse de FWH
Hay algun motivo por el cual la funcion wbrwline usada por la clase twbrowse no sea la escrita en lenguaje C? Porque en el caso de Clipper se usa esa funcion en C. Luego de hacer varias pruebas, vi que es la funcion que demora mas tiempo cuando se hace uso intensivo de wbrowse, y usando el mismo programa, pero compilad...
wbrowse de FWH
Pedro, Cuando se diseñó wbrwline() los ordenadores que había en uso eran mucho menos potentes que ahora y necesitabamos el código más rápido. Hoy en día podemos usar esa función implementada en PRG. De todas formas si necesitas la máxima velocidad, entonces si podrías usar la versión en lenguaje C
wbrowse de FWH
Antonio, hay alguna diferencia aparte de la velocidad? En mi caso la velocidad es importante, porque como dije antes, cuando uso las bases de datos, sea en un servidor windows o linux, si accedo desde un unico pc, el browse vuela, pero cuando accedo desde 2 o mas pc's, se enlentece muchisimo, es posible que sea un pro...
wbrowse de FWH
Antonio, No me resultó tan facil usar la wbrwline contenida en wbrwline.c Pensé que bastaba poner #ifndef __CLIPPER__ donde tiene #ifdef y en wbrowse.prg al reves... pero al compilar me da estos errores: [code:3nydjuzg] Progetto&#58; WP32, Ambiente&#58; BorlandWin&#58; &#91;1&#93;&#58;Harbour&#46;Exe wbrowse&#46;...
wbrowse de FWH
Pedro, No es tan simple ya que ese código está diseñado para Clipper y no para Harbour Se podría adaptar para Harbour pero no son cambios inmediatos y sencillos
wbrowse de FWH
Antonio, Entiendo.
wbrowse de Hernan da error cuando bajo VScroll con mouse
Me da este error, no se a que se debe: [code:1t1v30hl] Error description&#58; Error BASE/1001 Undefined function&#58; ORDKEYGOTO Args&#58; &#91; 1&#93; = N 1480 Stack Calls =========== Called from&#58; => ORDKEYGOTO&#40;0&#41; Called from&#58; => &#40;b&#41;SETFILTER&#40;2677&#41; Called fro...
wbrowse de Hernan da error cuando bajo VScroll con mouse
Agrega: EXTERNAL OrdKeyCount, OrdKeyGoTo, OrdKeyNo Y seguirá siendo tan estable como siempre.
wbrowse de Hernan da error cuando bajo VScroll con mouse
Gracias Alfredo Saludos Gonzalo
wbrowse edicion de columnas
pues viendo el fracaso del xbrowse, decidi volver al wbrowse, en este caso para la edicion de columnas con arreglos, 1. cuando se le especifica una font al browse y luego editas, el tamaño de la font te la hace mas pequeña, pero si no le especificas font, respeta el tamaño, al menos paso en mi caso. Estuve viendo la c...
wbrowse edicion de columnas
A mi me paso lo mismo con un ComboBox dentro de un Wbrowse, asi que lo tuve que dejar asi no mas, osea funciona solo con el Mouse y no con Teclas, porque si uso teclas se pasa al siguiente columna <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Jaime
wbrowse edicion de columnas
ya esta arreglado lo del combobox con las flechas ya no se brinca al siguiente control.. ahorita me estoy dando un tiro para que me abra el combobox en automatico... salu2 paco
wbrowse en harbour
Hola como tengo un poco de tiempo estoy pasando una aplicación de xharbour a harbour, con respecto al wbrowse de Hernán, hace un tiempo había bajado unas fuentes que tendrían que funcionar en harbour, cree las librerías y me daban error en la ejecución. Les dejo un enlace para el que lo necesite baje la pequeña modi...
wbrowse en pellesc
hola foro, nuevamente con el pellesc, tengo el custom control twbrowse, pero no me aparecen las barras de scroll, ya las active desde codigo y nada, oBrw:lHScroll:=.T., alguna sugerencia de como hacer que se muestren? o como usar twbrowse en el pellesc? gracias Paco
wbrowse en pellesc
Hola Francisco, En la definición del custom indica lo siguiente en "Style" 0x50810000, en lugar de tener 0x50000000 que es lo que da por defecto.
wbrowse en pellesc
FRANCISCO STYLE 0x50B10000 Saludos Patricio
wbrowse en pellesc
Gracias a ambos, funciono...
wbrowse scopes...
wbrowse (el original de FW) en un dialogo dentro de un folder en determinadas situaciones que explicaré a continuación, me quita los scopes. Abro el dialogo y muestro los datos con el scope sin problemas, me muevo con la rueda del mouse arriba y abajo, con las teclas, sin problemas. Cuando pongo una ventana adelante y...
wbrowse scopes...
Sorry... wrong language...
wbrowse scopes...
wbrowse (el original de FW) en un dialogo dentro de un folder en determinadas situaciones que explicaré a continuación, me quita los scopes. Abro el dialogo y muestro los datos con el scope sin problemas, me muevo con la rueda del mouse arriba y abajo, con las teclas, sin problemas. Cuando pongo una ventana adelante y...
wbrowse scopes...
Pedro, Try also setting bLogicLen: oLBXPrzAlt:bLogicLen := prz_alt->( ordKeyCount() ) Also make sure you are specifying the alias when you build the browse. Why are you setting the scope when getting focus? This is very unusual. Regards, James
wbrowse scopes...
[quote="James Bott":oo3jjjw8]Try also setting bLogicLen: oLBXPrzAlt:bLogicLen := prz_alt->( ordKeyCount() )[/quote:oo3jjjw8] You missed the codeblock. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> EMG
wbrowse scopes...
James, Is very unusual... but the problem is that twbrowse lost the scopes. Not always, but when dialog lost the focus and press the mouse in the adjust column, the scope say good bye... not all the time... this is my code for the browse: [code:39diu9y0] oV&#58;cScopeCliente1 &#58;= cCodCpc oV&#...
wbrowse scopes...
Pedro, OK, you using bGotFocus just as a workaround for the problem. So let's try to find the problem. I suggest commenting out your bGotFocus and putting in this line: oLBXPrzAlt:bLogicLen := {|| prz_alt->( ordKeyCount() ) } (as Enrico pointed out it needs to be a codeblock). Also try commenting out this line: ON...
wbrowse scopes...
James, <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> It's my fault... I have a timer that import data from a database every 45 seconds... and save and retrieves the work areas... recno, focus, selected... the class twbrowse don't lost the scopes... ...
wbrowse scopes...
Pedro, Glad you found the problem. > have a timer that import data from a database every 45 seconds... and save and retrieves the work areas... recno, focus, selected... I just open a new copy of the database rather than trying to save and restore the state. Unlike the old days when memory was a real issue, today it...
wbrowse scopes...
James, I'll try to open a copy of the database with diferent aliases to solve the problem. I will try to use a database class. Thanks again Regards,
wbrowse scopes...
Pedro, >I will try to use a database class. Even if you don't use my database class, there are some articles about using database classes on my website that may help you understand them. Regards, James
wbrowse suma de columas
Amigos: Es posible con el browse de HDC sumar una columna y colocar el resultado en el footer?, que cambie segun se inserta o borran registros Muchas gracias Saludos Ruben Fernandez
wbrowse suma de columas
Ruben, por supuesto que se puede, mira aqui no es captura, pero se hace igual.. <!-- m --><a class="postlink" href="http://hyperupload.com/download/02c9dddc70/tot_footers.JPG.html">http://hyperupload.com/download/02c9ddd ... s.JPG.html</a><!-- m --> salu2 paco
wbrowse suma de columas
Gracias Paco: El asunto es como se hace... Saludos y Gracias Ruben Fernandez.,
wbrowse suma de columas
Es muy simple: Un "footer" es un arreglo de cadenas de caracteres: oBrw:aFooters := {"Sumas",TRANSFORM(suma(),"99999"), .....} La magia consiste en recalcular los footers cada vez que haces una insercion o un borrado en la tabla. La cosa sale mas rapido si haces bloques de codigo en lo footers: [code:2ilgm61c]oLb...
wbrowse suma de columas
Gracias Maestro Rene Saludos Ruben Fernandez.
wbrowse urgente
alguien sabe por que no me pone los titulos en el browse de Rossine y cuando empiezo a utilizar las diferentes propiedades que tiene la classe me descuadra todo el browse, alguien tiene la version actual o estable les dejo una imagen con el defecto y tambien me pasa con los Footers [/url]http://img294.imageshack.us/...
wbrowse y dolphin
Hola como puedo cargar un objeto obtenido de un query en un Wbrowse con tdolphin? Gracias por su atención Luis
wbrowse y dolphin
Saludos ! Revisa el Method SetDolphin(), de la clase TXBrowse Un pequeño ejemplo [code=fw:250699vo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />oQry := TDolphinQry<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><spa...
wbrowse y dolphin
Lo que necesito es para cargar un browse, el xbrowse lo había resuelto. Gracias Luis
wbrowse y dolphin
OK ! Debes convertir el query en un array usando el Method FillArray( bOnFillArray, aColumns ), para luego usarlo con TWbrowse Saludos
wbrowse y dolphin
Gracias compañero
wbrowse y xbrowse
1. Regenere la libreria wbrowse 17 de hernan con la nueva version de fwh704 y al cargar el browse me muestra un error en el metodo NEW con la variable nElements que no existe, alguna solucion? 2. como hacer una busqueda incremental con xbrowse, con wbrowse funciona perfecto, y como ejecutar una accion con xbrowse cuan...
wbrowse y xbrowse
Paco: Para ejecutar una acción al clicar en la cabecera de una columna prueba: oCol:bLClickHeader := {|r,c,f,o| MiAccion()} Saludos, Rafael
wbrowse y xbrowse
ok, rafael probare descargue la wbrowse que modifio alfredo arteaga, y ese codigo no lo trae, asi que ya quedo. Alfredo, como hago para activar el id de la primer columna?, ya puse lFirst a .T., y por cierto que version de wbrowse modificaste? ya que segun yo tengo la 17, pero en la tuya no esta el IF de nElements en ...
wbrowse.prg function nwrows returning huge no
Hi Antonio I have a situation where wbrowse.prg method nRowCount is returning 53000 rows! This causes one of my browses on a dbf (which has +- 160,000 records in it) to take ages to open. nRowCount calls nwrows which calls GetWindowRows (extracted below) nRowCount should obviously never return more than the no of ro...
wbrowse.prg function nwrows returning huge no
Peter, Are you calling the UpStable method before the browse is created by Windows ? (oBrw:hWnd != 0 ) Is it placed on a dialog ? If so, please call UpStable from here: ACTIVATE DIALOG oDlg ON INIT oBrw:UpStable()
wbrowse.prg function nwrows returning huge no
Antonio Yes you are correct! I am calling upstable while the Brw ::hWnd is 0 May I suggest you change wBrowse nRowCount method as follows to prevent other users wasting time on the same issue METHOD nRowCount() INLINE ; if(::hWnd > 0, nWRows( ::hWnd, 0, If( ::oFont != nil, ::oFont:hFont, 0 ) ) - 1, 0) Thanks for th...
wbrowse.prg function nwrows returning huge no
Peter, Changed, thanks. Please use ::hWnd != 0 instead of ::hWnd > 0
wbrwline.c del browse de Hernan para FWH 2.7 Febrero
<!-- m --><a class="postlink" href="http://hyperupload.com/download/79488f53/WBRWLINE.C.html">http://hyperupload.com/download/79488f5 ... INE.C.html</a><!-- m -->
wbrwline.c del browse de Hernan para FWH 2.7 Febrero
[quote="Antonio Linares":rwstvglv]http://hyperupload.com/download/79488f53/WBRWLINE.C.html[/quote:rwstvglv] Oops <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> veo que ya implementaste los cambios de C, ahora cuando vuelva a la tarde le hecho una miradita para ver que...
wbrwline.c del browse de Hernan para FWH 2.7 Febrero
Hernan, when the new wbrowse ? Regards
wdbu a like
Please I need program like dbu forwwindows or even wdbu full version . Where can I find such a program ?
wdbu a like
You may download Prometheus from: <!-- m --><a class="postlink" href="http://www.vikthor.com.mx/fivewin/files/version/dbwsetup.exe">http://www.vikthor.com.mx/fivewin/files ... wsetup.exe</a><!-- m -->
wdbu a like
May you describe an English one pls
wdbu a like
<!-- m --><a class="postlink" href="http://www.xharbour.com/xhc/index.asp?page=xhc_download_detail.asp&type=dl&id=78&action=download&show_i=7&show_sub=2">http://www.xharbour.com/xhc/index.asp?p ... show_sub=2</a><!-- m --> Developed with FWH <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /...
wdbu on 64 bit
wdbu not run on windows seven wich prg we can use to have the same features of wdbu ?
wdbu on 64 bit
Silvio, the new CDBF-View from WhiteTown with WIN7 - Support. Everything You need is included. Export to any Format like : SQL, CSV, XML, HTML, TXT .... [img:6ionuhpz]http&#58;//www&#46;pflegeplus&#46;com/pictures/DBFVIEW&#46;jpg[/img:6ionuhpz] Maybe it is something, You are looking for. Best Regards Uwe <!-- s:lol...
wdbu on 64 bit
where I can load it ?
wdbu on 64 bit
Download from : <!-- m --><a class="postlink" href="http://www.whitetown.com">http://www.whitetown.com</a><!-- m --> Best regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
wdbu on 64 bit
not free ?
wdbu on 64 bit
Hello Silvio, It is not free ( 38 Dollar ). I still found another one ( free ), but doesn't offer all the Functions of CDBF-View. DBF-View-Plus from : <!-- m --><a class="postlink" href="http://www.alexnolan.net">http://www.alexnolan.net</a><!-- m --> Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol....
wdbu on 64 bit
i TRY TO RECOMPILE WDBU SOURCES BUT i NEED MANY FUNCTIONS
web GUI from FWH apps using webview
Here you have an example how to build a FWH app that uses the web as the GUI: webviewlogin.prg [code=fw:1r493k5r]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Please install <!-- m --><a class="postlink" href="https://developer.microsoft.com/en-us/microsoft-edge/webview2/">...
web GUI from FWH apps using webview
Que buen ejemplo: Creo que webview es nuestro nuevo camino jejejejeje. Como lo dije anteriormente, toca empezar.
web appication
is possible to create web application with FWH ?
web appication
FWH is a GUI library for the desktop, not for the web.You can use Harbour/xHarbour to create CGI applications, that will run from a web server.
web appication
same samples
web appication
Kajot,What web server do you plan to use ? Windows ? Linux ?
web appication
Microsoft SERVER IIS
web appication
or Apache
web appication
Antonio ,Also I should like to make a small cgi application i have windows and i not found samples on mine cdsinstallation package.