topic
stringlengths
1
63
text
stringlengths
1
577k
About font. Differences beetween FWH font and Windows font
Marco,It depends on how Word is calculating this number. In your example you are using a string of "B" characters to estimate the width of a string consisting of an string of the same number of characters, but not the same characters. You need to know how Word does the calculation to get the same value. You could just ...
About font. Differences beetween FWH font and Windows font
Hi James,thanks for your reply.This difference is not Word-related but windows-related, if I use WordPad the problem is the same.See this sample image where I put 107 chars in a A4 row.<!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/wordpad.png">www.softwarexp.co.uk/beta/wordpad.png</a><!-- w -->If...
About font. Differences beetween FWH font and Windows font
Marco,>This difference is not Word-related but windows-related, >if I use WordPad the problem is the same. >See this sample image where I put 107 chars in a A4 row. >www.softwarexp.co.uk/beta/wordpad.png OK, I see you are measuring the length of the 107 characters and they are not all "B"s as you are using in your calc...
About oBrw:AddColumn
Hi, I am trying to browse an array but I have syntax problems using the oBrw:AddColumn method because I always receive an array access error. This is a sample code that show the problem. Any ideas about the correct syntax ? aBrwArray:=array(0,2) aadd(aBrwArray,{"01","First"}) aadd(aBrwArray,{"02","Second"}) @ 1.5...
About oBrw:AddColumn
First line should be: aBrwArray:={}
About oBrw:AddColumn
Oops, I made this error writing on the forum. The problem still remain with aBrwArray:={}
About oBrw:AddColumn
Change nAt with nArrayAt!?
About oBrw:AddColumn
nArrayAt is only available on xbrowse and not on the standard FWH browse. I made this self contained sample that show the problem <!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/test.zip">www.softwarexp.co.uk/beta/test.zip</a><!-- w --> I think the error message due to the addcolumn syntax I use...
About oBrw:AddColumn
Marco, Why don't you just create the columns using commands? I think it'd be easier to read and code. If you still want to do it this way, then why don't you use browse commands but compile with [b:1d238j6d]/p[/b:1d238j6d] switch. By comparing your code and the generated .ppo file you should be able to spot what went w...
About oBrw:AddColumn
Hi Marco: You have several errors in your posted sample, here you are the corrected code[code:nvyvie0b]//----------------------------------------------------------------------------// function Child&#40;&#41; local oWndChild, oBrw, oFont local nI, aTestData local aObjects&#91;10&#93; DEFINE WINDOW oWn...
About oBrw:AddColumn
Hi, Manuel, it runs fine. Thanks. The only problem is that I try to assign the columns through a for cicle I receive an array access error message. My code: for i:=1 to 2 aObjects[6]:AddColumn(TCColumn():New("Num",{|x| ; If(Pcount()>0, aObjects[6]:aArray[aObjects[6]:nAt, i] :=x, aObjects[6]:aArray[aObjects[6...
About oBrw:AddColumn
[quote="Marco Turco":v0aqbqps]The only problem is that I try to assign the columns through a for cicle I receive an array access error message. [/quote:v0aqbqps] Then, what you need is something like this:[code:v0aqbqps]function Child&#40;&#41; local oWndChild, nI, bData, aObjects&#91; 10&#93;, ; aTitles...
About oBrw:AddColumn
Great !!! Thanks a lot !! <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> I never loved the codeblocks.. Could you suggest me what is the correct codeblock code to make also a column with the progressive number ? Like the command: ADD TO oBrw DATA oBrw:nAt(...
About oBrw:AddColumn
[quote="Marco Turco":3kqhyoco]Could you suggest me what is the correct codeblock code to make also a column with the progressive number ? Like the command: ADD TO oBrw DATA oBrw:nAt()[/quote:3kqhyoco] Following your same example: aObjects[6]:AddColumn(TCColumn():New( "", {||aObjects[6]:nAt},,,,, 25 ) ) Regards Manue...
About oBrw:AddColumn
Tried but a Bound Error:Array access appairs. Any ideas ? function Child() local oWndChild, nI, bData, aObjects[ 10], ; aTitles := { "Num", "Title" } DEFINE WINDOW oWndChild MDICHILD OF oWnd ; FROM 10, 50 TO 250, 400 PIXEL COLOR "N/W" aBrwArray:={} aadd(aBrwArray,{"01","First"})...
About oBrw:AddColumn
[quote="Marco Turco":ferwd3a8]** column with progressive number ** Objects[6]:AddColumn(TCColumn():New( "", {||aObjects[6]:nAt},,,,, 25 ) )[/quote:ferwd3a8] Should be: [color=red:ferwd3a8]aObjects[/color:ferwd3a8][6]:AddColumn(TCColumn():New( "", {||aObjects[6]:nAt},,,,, 25 ) ) Regards Manuel Mercado
About oBrw:AddColumn
Yes. You are right. I need a glasses !! Many thanks for your support.
About oBrw:AddColumn
Hi, I have a small problem with bitmaps in the TcBrowse. Do you know how can I translate: ADD TO oBrw BITMAP DATA aArray[oBrw:nAt(),1] in code ?
About oBrw:AddColumn
Marco, >ADD TO oBrw BITMAP DATA aArray[oBrw:nAt(),1] Try looking at the PPO file. James
About oBrw:AddColumn
While we need to write this kind of code for twbrowse or tcbrowse, xbrowse made browing arrays very simple. The command : [code:xvzt2scl] @ 0,0 XBROWSE oBrw OF oWnd ARRAY aData AUTOCOLS [/code:xvzt2scl] is all that is needed to browse the entire array. If we like to browse only selected columns, say 3rd, 2nd and 5th ...
About oBrw:AddColumn
Mr. NageswaraRao, Thank very much you for your work continues work for xBrowser. In our language exists a proverb: “A picture says more than a thousand words”. Therefore I would like to ask you if you would be so kind to post some samples with the new syntax. Thanks in advance Otto
About oBrw:AddColumn
Solved. Thank you. I already use the standard tcbrowse at this moment but I am waiting the next FWH stable release to migrate to xBrowse. Thank to your excellent work NageswaraRao.
About oBrw:AddColumn
Marco, The current FWH 8.03 build is totally stable <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
About oBrw:AddColumn
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Well, I will order you the update on the next days
About tdatabase
Hi, I work with native tdatabase fivewin, i want to put all value fields from on record in another like this: oArqCli:GoTop() Do While ! oArqCli:Eof() oArqCli:Load() oCliCli:Blank() oCliCli:(All fields) := oArqCli:(All fields) <------------------- how? oCliCli:Append() oCliCli:Save() oCli...
About tdatabase
Wanderson, Note that all the field data is stored in a buffer array in database objects. Also, of course, both files must have exactly the same structure. Below is an example of how to copy all the field data. It depends on the situation, but you may want to only do one commit after the ENDDO instead of one after eac...
About tdatabase
You can also use this code: [code=fw:uyd8eb77]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <br />&nbsp; &nbsp;oArqCli:<span style="color: #000000;">lBuffer</span> := .t. &nbsp;<span style="color: #B900B9;">// This is default</span><br />&nbsp; &nbsp;oArqCli:<span style="color: #000000;">GoTop</span...
About tdatabase
Yes, acopy() would be faster. If you set oArqCli:lBuffer I also suggest saving and restoring its state so as to prevent any possible problems elsewhere. James [code=fw:2bvdrp1m]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">Local</span> lBuffer<br />   ...<br />   lBuffer:=...
About tdatabase
For TDatabase, lBuffer is .t. by default.
About tdatabase
Rao, [quote:29twrz70]For TDatabase, lBuffer is .t. by default.[/quote:29twrz70] Yes, I understand that. But if you change something like that it is wise to save and restore it's state. It is wise to do as you suggested, set it to true at the start of the routine because you can't depend on it being true already. As ...
About tdatapick Class
Is it possible to have the controll tdatapick always displayed on the dialog ? (that is the calendar always visible ) Regards Maurizio
About tdatapick Class
[quote="Maurizio":hcwgmega]Is it possible to have the controll tdatapick always displayed on the dialog ? (that is the calendar always visible ) Regards Maurizio[/quote:hcwgmega] mmmmmmm i dont know, but you can use TCalendar instead. Contact me by email if you dont have it. Regards
About tdatapick Class
Maurizio, can you give me another email adress??? i'm getting this message: ********************************************** ** THIS IS A WARNING MESSAGE ONLY ** ** YOU DO NOT NEED TO RESEND YOUR MESSAGE ** ********************************************** The original message was received at ...
About tscanner and multipage scanner
Hi,How I can use tscanner with multi file scanner like hpscanjet 8460 ?I´m using EZTWAIN 2.70 from dosadi but I can get only one page at atime, but HP8460 can digitalize 10 pages at a time.Thanks for any information and best regards,Toninho.
About tscanner and multipage scanner
Hi,Maybe TwainControlX from <!-- m --><a class="postlink" href="http://www.ciansoft.com/">http://www.ciansoft.com/</a><!-- m --> can do the job.They have a fully functional trial version.Regards,George
About tscanner and multipage scanner
Hi,Dosadi supports the multipage acquiring without problem. You only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class.Obviusly you have to use a multipage format like PDF or TIFF.
About tscanner and multipage scanner
[quote="Marco Turco":1mepfvpx]Hi, Dosadi supports the multipage acquiring without problem. You only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class. Obviusly you have to use a multipage format like PDF or TIFF.[/quote:1mepfvpx]Hi Marco, thanks.My dosadi dll was too ol...
About tscanner and multipage scanner
[quote="George":1mqpoj4x]Hi, Maybe TwainControlX from <!-- m --><a class="postlink" href="http://www.ciansoft.com/">http://www.ciansoft.com/</a><!-- m --> can do the job. They have a fully functional trial version. Regards, George[/quote:1mqpoj4x]Hi George,This weekend I have time and I tested TwainControlX. It is re...
About tscanner and multipage scanner
HiI may have a need for multi page scanning extending the customers current application.Toninhofwi and George can I ask for the code you used please.ThanksJonathan Hodder
About tscanner and multipage scanner
Jonathan,I am not using the Multi-pages scanning features, but the manual explain how to use it. It seems that Harbour does not support the licensing mechanism of ActiveX controls therefore when ordering TwainControlX send an email to Technical Support (Ian Chester the developer) indicating that your are using Harbour ...
About tscanner and multipage scanner
GeorgeOK ThanksJonathan
About tscanner and multipage scanner
[quote="toninhofwi":i02v519a]Hi, How I can use tscanner with multi file scanner like hp scanjet 8460 ? I´m using EZTWAIN 2.70 from dosadi but I can get only one page at a time, but HP8460 can digitalize 10 pages at a time. Thanks for any information and best regards, Toninho.[/quote:i02v519a] <!-- s:lol: --><img sr...
About tscanner and multipage scanner
Hi GiovanyUsando eztw32.dll puede ser el más fácil.Gracias Giovany.Lo intentaré.Jonathan
About very useful path functions (for information)
Hi Look at the reference <!-- m --><a class="postlink" href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/shlwapi/path/path.asp">http://msdn.microsoft.com/library/defau ... h/path.asp</a><!-- m --> There are very interesting and useful functions. I think they should...
About very useful path functions (for information)
Vlamidir, This is the msdn entry: <!-- m --><a class="postlink" href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/shlwapi/path/pathcanonicalize.asp">http://msdn.microsoft.com/library/defau ... calize.asp</a><!-- m --> Its not difficult to be implemented
About very useful path functions (for information)
Here you have it working for FWH and Harbour/xharbour: (its required to link echo lib\psdk\shlwapi.lib) [code:m0rul416] #include "Fivewin&#46;ch" function Main&#40;&#41; local oDlg, cResult DEFINE DIALOG oDlg @ 2, 2 BUTTON "Test" ; ACTION &#40; PathCanonicalize&#40; "A&#58;\\name_1\\&#46;\\name_2...
About windows xp manifest file
Hi all, Do we already need to link it ? I checked that using the manifest file there are some problems using transparent images.
About windows xp manifest file
Marco, You need it if you want XP themed look
About windows xp manifest file
Ok, but there is a problem using the transparent clause in a mdi context. The transparent doesn't runs. This is a self-contained that show the problem linking the manifest file. Executable, bitmap and code at <!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/antonio.zip">www.softwarexp.co.uk/beta/a...
About windows xp manifest file
Hello Marco I'm not sure with this change, i didn't test all combinations Open \source\Bitmap.prg find and replace (end of file): [code=fw:mk4c0uj4]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//#ifdef __CLIPPER__</span><br /><br /><span style="color: #00C800;">static</sp...
About windows xp manifest file
Hi Marco/Daniel: [quote="Daniel Garcia-Gil":3jg8uumf]I'm not sure with this change, i didn't test all combinations[/quote:3jg8uumf] Without a deep analisys (don't know what DrawPBack function does), I think that can be resolved by changing the next lines in TBitmap Paint method to be as shown:[code=fw:3jg8uumf]<div cl...
About windows xp manifest file
Hi all, thank your your reply. Daniel, your solution is the same as removing the manifest file, the themes doesn't runs anymore in the app. Manuel, I tried your solution also but now the problem appairs on all bitmaps where I use the transparent clause. See <!-- m --><a class="postlink" href="http://www.softwarexp.co...
About windows xp manifest file
Hello Marco... [quote="Marco Turco":358dk72w]Daniel, your solution is the same as removing the manifest file, the themes doesn't runs anymore in the app.[/quote:358dk72w] Are you sure??? do you write "STATIC" before Function?? [code=fw:358dk72w]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span st...
About windows xp manifest file
Hi Marco: [quote="Marco Turco":2y8fx2am]Manuel, I tried your solution also but now the problem appairs on all bitmaps where I use the transparent clause.[/quote:2y8fx2am] You're right, try this way:[code=fw:2y8fx2am]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">if</span> Is...
About windows xp manifest file
Hi Manuel, it runs fine. Thank you very much.
About windows xp manifest file
Hi Daniel, I haven't tested it but as I can see with your turn-around the class tbitmap doesn't know anymore if a theme is running (isapptheme always return .f.) so any image is painted without theme style. [quote="Daniel Garcia-Gil":37ga4tnp]Hello Marco... [quote="Marco Turco":37ga4tnp]Daniel, your solution is the...
About windows xp manifest file
Hello Marco... my change work fine (for now) please test it... see and download <!-- m --><a class="postlink" href="http://www.sitasoft.com/fivewin/test/thembmp.zip">http://www.sitasoft.com/fivewin/test/thembmp.zip</a><!-- m --> [img:4vu4uqcq]http&#58;//www&#46;sitasoft&#46;com/fivewin/screen/thembmp&#46;png[/img...
About windows xp manifest file
Sorry Daniel, you are right. However with your turn-around and also with the Manual solution there are problems using bitmap on folder because they are now not transparent. See <!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/test.png">www.softwarexp.co.uk/beta/test.png</a><!-- w --> Any ideas ?
About windows xp manifest file
Hello Marco.. [quote="Marco Turco":2rs63edt]However with your turn-around and also with the Manual solution there are problems using bitmap on folder because they are now not transparent.[/quote:2rs63edt] is was for my solution <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> b...
About windows xp manifest file
Hi Daniel, thank for your reply. It is a bit difficult for me to make the change you proposed me due to the fact that I have a lot o folder in my app. Do you know if there is a way to change the background of this image I display on the MDI in order to act only on this image that give me problems ? You already solved...
About xBrowse
Salve, sto facendo alcune prove con xBrowse e mi sembra decisamente valido, ho però il problema che avendo un array tipo: aArray:=array(0,3) aadd(aArray,{"01,"Pippo","03"}) aadd(aArray,{"02","Pluto",04"}) anche se richiedo la visualizzazione dei soli primi 2 elementi, mi viene riportato anche il terzo. Come faccio a...
About xBrowse
Hi, I have a small problem with the xbrowse class managing arrays. With an array like this: aArray:=array(0,3) aadd(aArray,{"01,"Pippo","03"}) aadd(aArray,{"02","Pluto",04"}) I need to display only the First and Second element so I defined only two header: oBrw:aCols[1]:cHeader:="Number" oBrw:aCols[2]:cHeader:="...
About xBrowse
Ok. Solved with oBrw:nFreeze:=2 Regards, Marco
About xbrowse paint
Which version of FWH are you using?
About xbrowse paint
Hi, someone knows why my xbrowse display a black square in top left? [img:39gar6e6]http&#58;//img849&#46;imageshack&#46;us/img849/7373/ne6e&#46;jpg[/img:39gar6e6] Thanks.
About xbrowse paint
[quote="nageswaragunupudi":284ge7wv]Which version of FWH are you using?[/quote:284ge7wv] fwh1105 thanks
About xbrowse-cellborders and boxdrawings
Hello, here is tool I created to draw xbrowse-cellborders and any kind of boxes. All results are directly visible The download-link <!-- m --><a class="postlink" href="http://www.service-fivewin.de/DOWNLOADS/Borders.zip">http://www.service-fivewin.de/DOWNLOADS/Borders.zip</a><!-- m --> more ideas are welcome <!-- s...
About xbrowse-cellborders and boxdrawings
I added some more options now it is possible to select a brush and a logo on top the logo can be tested with a transparent-level [img:g04hyfz7]http&#58;//www&#46;service-fivewin&#46;de/IMAGES/Brd1&#46;jpg[/img:g04hyfz7] the normal image-selection is used as logo This will work in case background-mode 3 ( brush ) is s...
Abpaint
If Iuse Abpaint to draw a bitmap ABPaint( ::hDC, y, x, v[1], 255) the bitmap wich color must have on the background ? I ask this because the bitmap is not transparent ( also with manifest) and I not understood why [img:2xcxfenj]https&#58;//s17&#46;postimg&#46;org/bg9oejh73/image&#46;png[/img:2xcxfenj]
Abpaint
Normal, [code=fw:373omktd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// AlphaBlending transparencies support in FiveWin! \SAMPLES\TESTAB.PRG</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><s...
Abriendo ficheros
Es posible tener la aplicacion instalada en Archivosd de Programa y las dbf en Mis documentos del PPC ? COmo tendria que poner el camino para poder abrir esos ficheros ? Un saludo Juan Jose
Abriendo ficheros
"\My Documents\Mi.dbf"
Abriendo ficheros
[code:3bq5bhs4] SET&#40; _SET_DEFAULT, '\My Documents\'&#41;[/code:3bq5bhs4]
Abriendo ficheros
Antonio, me refiero a que los ficheros se encuentran en Mis Documentos del ppc. Saludos Juan Jose
Abriendo ficheros
Vale, gracias Un saludo
Abrir .MSG de Outlook
Estimados Como puedo abrir correos guardados como archivos .MSG He intentado asi [code=fw:3ib3se4y]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   ShellExecute<span style="color: #000000;">&#40;</span>,<span style="color: #ff0000;">"Open"</span>,<span style="color: #ff0000;">"Outlook"</span>,,<span...
Abrir .MSG de Outlook
Prueba, ShellExecute(, "open", "D:\Sistemas\AcrSoft\correo.msg","D:\Sistemas\AcrSoft", "", 1 ) En mi sistema, funciona bien
Abrir .MSG de Outlook
Gracias Fernando. Funciona perfecto.
Abrir Archivos PDF VER 9.03
Hola amigos no se como abrir un archivo PDF en la version 9.03 #include "FiveWin.ch" local oWnda, oActiveX DEFINE WINDOW oWnda title "Contratos La Quinta" mdichild oActiveX = TActiveX():New( oWnda, "AcroPDF.PDF.1" ) oWnda:oClient = oActiveX oActiveX&#058;Do("LoadFile","\\servidor\planilla\contratos\100101.pdf...
Abrir Archivos PDF VER 9.03
Hola Dioni: [quote="Dioni":6k6bulme]Hola amigos no se como abrir un archivo PDF en la version 9.03[/quote:6k6bulme] El siguiente ejemplo (el tuyo con pequeños cambios) funciona perfectamente con FWH 9.03 [code=fw:6k6bulme]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</...
Abrir Archivos PDF VER 9.03
Hola Alguna sugerencia como hacerlo con [b:2lwbtvrn]FoxIt Reader[/b:2lwbtvrn] y active X
Abrir Archivos PDF VER 9.03
Ya sé que no es exactamente lo que se pregunta, pero por si acaso te es útil, yo hace tiempo que no utilizo activeX para abrir ficheros pdf, me pasé a ShellExecute( ,"open", cFicheroPdf,,,1 ) y desde entonces no tengo problemas.
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Olá... É possível abrir esses arquivos com a Classe TActiveX ? Saludos
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Hola. ¿Por qué no usas Freeimage? Revisa Testimg.prg en los ejemplos de FWH
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Olá FLeal... Obrigado pela resposta... Já havia usado o Freeimage, porém na verdade, gostaria de abrir qualquer tipo de Imagem (BMP,JPG,TIF,GIF), usando os recursos do "image.preview" do Windows, através da Classe TActiveX. Seguindo os exemplos abaixo : WORD => oActiveX = TActiveX():New( oWnd, "Word.Application.8...
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Olá... Seria esse o Imaging Preview que gostaria de usar com a TActiveX. Só não sei se será possível... [img:10wlk44g]http&#58;//br&#46;geocities&#46;com/valdirbrd/img001&#46;jpg[/img:10wlk44g] Saludos
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Saludos Cordiales Colegas!!! Bueno realmente por lo que mas o menos te entiendo creo que te refieres a algo como esto!! [code:31j59rzx] #INCLUDE "FIVEWIN&#46;CH" PROCE MAIN&#40;&#41; LOCAL oDlg,oAdj,cAdj&#58;=SPACE&#40;30&#41; DEFINE DIALOG oDlg TITLE "Abrir Imagen" @ 1,1 SAY "Ubicación del Archivo &#58...
Abrir Arquivos (*.TIF *.BMP e *.JPG) com TActiveX
Olá Daniel É exatamente oque estava precisando... Funcionou perfeitamente. Gracias. Saludos
Abrir DBFs al abrir ventanas
Hola foro, Estoy programando por 1ra vez con ventanas en lugar de dialogos y lo que hago cada vez que el usuario abre la misma ventana que contiene un browse, abre los mismos 10 DBFs con diferente alias para cada ventana. Mi pregunta es, es "sano" hacerlo asi? o hay otra forma de acerlo ya que pienso que cada vez que...
Abrir DBFs al abrir ventanas
Hola... Yo uso una funicón que me retorna un número de alias disponible. De ese modo, sin importarme el nombre de alias, armo el nombre dentro de una variable. Luego hago SELECT (cMiAlias) y listo. Saludos, Esteban.
Abrir DBFs al abrir ventanas
Me parece que lo más sano es abrir las BBDD al comienzo de la ejecución del aplicativo y cerrarlas cuando salgo del programa. Así he trabajado siempre sin ningún problema. Salu2
Abrir DBFs al abrir ventanas
Rodolfo, No sólo es sano, sino imprescindible. Cada browse es necesario que tenga su propio area de trabajo porque de lo contrario sobre cualquier refresco del browse, por ejemplo movimiento de ventanas superpuestas, "destrozará" el browse pintado. Al principio yo me resistí a la técnica de abrir la .dbf por cada br...
Abrir DBFs al abrir ventanas
Esteban, Horacio: Gracias, asi lo hago pero no iba por ahi la pregunta. hmPaquito: Esa era exactamente mi duda y en efecto llevo un control de los DBFs que se abren para cada ventana para cerrarlos al cerrar la ventana y dejar abiertos solo los DBFs de otras ventanas que continuan abiertas. Tenia el temor de que si p...
Abrir DLL de 16 bits
Hola amigos: Tengo la necesidad de abrir una DLL hecha con Workshop de 16bits y ninguna PC a 16 bits, alguna alma caritativa que pueda abrir la DLL y exportarla a 32 ya sea en formato RC o RES o ambos si es posible? Si me dan su correo les envío la DLL y Workshop (si es necesario) para que me hagan el favor de conver...
Abrir DLL de 16 bits
Mandamela, creo que en este fin de semana podré navarro.cristobal at gmail.com Avisame cuando me la envies
Abrir DLL de 16 bits
Cristóbal: Enviada, muchas gracias Saludos
Abrir DLL de 16 bits
Maese... a los años... Echale un ojo a este enlace <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14830&hilit=convertir+a+dll+de+32+bits">viewtopic.php?f=6&t=14830&hilit=convertir+a+dll+de+32+bits</a><!-- l --> Salu2
Abrir DLL de 16 bits
Armando, mira tu correo
Abrir DLL de 16 bits
Willi, el problema puede estar en que cada vez menos contamos con SO de 16/32 bits, y no se puede ejecutar Workshop en 64
Abrir DLL de 16 bits
Cristóbal: Descargado y funcionando al 100%, muy agradecido con tu apoyo, te debo unas tapas <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Saludos Willi: Efectivamente, lo que comenta Cristóbal es mi situación, no tengo PC con 16bits y en 64bits WS no va. Salud...