topic
stringlengths
1
63
text
stringlengths
1
577k
jkIDE: impressions / experiences / perspectives
An easier and faster url to download it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [url:22dbi5nu]http&#58;//code&#46;google&#46;com/p/visualfw/downloads/detail?name=jkide93x&#46;EXE&can=2&q=[/url:22dbi5nu]
join two select
Hi, I have two table in different database (table1 in msacces and table2 in sql server) I would like to read together. i.e. read table1 using odbc connect read table2 using odbc connect and then to use the two table by xbrowse. I do not want to use a dbf file to record table1 and then table2. any example? thanks
join two select
Table1 and table2 have the same Field... Sent from lumia 720 Tapatalk
join two select
Maybe you could use a temporary array to do a "join" then browse the array. James
jpg como fondo deja estela al arrastrar ventanas
Hola. Tengo una aplicacion que abre una ventana con un .jpg de fondo; desde esa aplicacion llamo a otros exes. El tema es que en algunas maquinas al arrastrar esos exes que abro, van dejando una estela en el logo de fondo. Obviamente es alguna caracteristica de esas PC's, pero me paso en varias diferentes, y no encontr...
jpg como fondo deja estela al arrastrar ventanas
Diego, Esta es la solución: <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=8191">http://fivetechsoft.com/forums/viewtopic.php?t=8191</a><!-- m -->
jpg como fondo deja estela al arrastrar ventanas
Compilo el window.prg, despues hago en el build.bat IF %1==EC echo WINDOW.OBJ + >> b32.bc IF %1==ec echo WINDOW.OBJ + >> b32.bc y cuando ejecuto build ec, y corro el ec.exe, me da este error. ¿que puede ser? gracias. Atte. Application =========== Path and name: C:\FW192\SAROSH\ec.exe (32 bits) Size: 1,542,144...
jpg como fondo deja estela al arrastrar ventanas
Diego, Que versión de FWH usas ?
jpg como fondo deja estela al arrastrar ventanas
uso fwh 7.05 de mayo 2007 [quote="Antonio Linares":11g75fxx]Diego, Que versión de FWH usas ?[/quote:11g75fxx]
jpg como fondo deja estela al arrastrar ventanas
Diego, Solo se me ocurre que estés usando una versión incorrecta de window.prg. Solo tienes que modificar el método EndPaint(). Si sigue dándote errores, lo más aconsejable es que te actualices a la versión actual 7.11 que incluye todas esas mejoras y no tienes que andar recompilando, ni cambiando cosas, etc.
jpg como fondo deja estela al arrastrar ventanas
Hola Diego: Yo tengo una versión anterior a la tuya y modificando el método EndPaint de window.prg, como dice Antonio, se soluciona el problema. Saludos, Manuel
jpg en recursos
Amigos: Guarde un archivo jpg (un paisaje de un cielo) en mi archivo.res lo pongo como fondo de un dialogo, (un brush transparente), hasta aca bien porque lo muestra. Pero cuando lo muevo o algun otro dialogo se abre sobre este la imagen y los conbtroles se distorsionan. Habría alguna manera de que el dialogo se ref...
jpg en recursos
Probe con ACTIVATE DIALOG oDlg CENTERED NOWAIT ; On MOVE oDlg:Refresh() y no funciona Pero... como el dialogo es nowait, si lo iconizo y lo vuelvo a maximizar queda bien. Gracias. Ruben Fernandez.
jpg en recursos
Rubén, Cómo creas el brush con el archivo jpg ?
jpg en recursos
Antonio: Lo he creado de varias maneras: Define BRUSH ObrushFondo RESOURCE "CIELO" //este nombre es diferente a todos las imagenes que hay en el .Res. De esta manera es cuando se distorsiona si otro dialogo pasa por encima o este se mueve. oBrushFondo = TImage():Define( "CIELO" ) DEFINE BITMAP oBrushFondo RESOURCE...
jpg resolution
Hi. I keep jpg images stored a dbf/fpt file pair. It works well. Just to give an example leading to my point; at a given customer site 350k jpg images are kept on an 80GB .fpt file. I just noticed that at a more recent installation, 26k images occupy an .fpt file of 115GB. I'm suspecting that the resolution at wh...
jpg resolution
What I need to know is if there is a utility to convert a jpg to another jpg with less (different) resolution. Or if perhaps freeimage could be used for this purpose. Reinaldo.
jpg resolution
I use Infranview ( free ) .. It is a viewer conversion ( re-sampling ) image program . .stand alone. You can download it from here : <!-- m --><a class="postlink" href="http://www.irfanview.com/">http://www.irfanview.com/</a><!-- m --> Rick Lipkin SC Dept of Health, USA
jpg resolution
Mr.Reinaldo I am using BMP2JPG.EXE, a file which converts a BMP file to JPG file with the require percentage of quality. The Syntax is : LOCAL cExec := 'BMP2JPG.EXE' WaitRun(cExec+' -q'+LTRIM(STR(::nJpgQuality,3,0))+' -c' + ; cOutputFile+' -o -s',0) Please check your inbox for 'BMP2JPG.EXE' - ...
jpg resolution
Hi Reinaldo, In IrfanView, on the "Save" or "Save as" dialog, below there is a "Show options checkbox". When clicked, shows the "JPEG/GIF Save Options" dialog. In the JPG group there is a "Save quality" scroll bar. Around 55 to 60 saves with a good quality and a good compression (1/10). HTH Regards, Euclides
jpg resolution
You can have a look at "FastStone Image Viewer". It is free and having lots of features. [url:1lz57ywn]http&#58;//www&#46;FastStone&#46;org[/url:1lz57ywn] - Ramesh Babu P
jpg resolution
Thank you very much for all the responses. I'm going to try with IrfanView. It looks like it will do the job. My plan is to use source code to extract all the images from the .fpt file creating a single .jpg for each image. Then use the IrfanView's batch convert option to convert each jpg to a lower resolution jpg ...
jsco
where I can found jsco?
json
Hi All I am working with an api for a accounting package - I can extract information from the accounting package if oHttp:open() cItems2 := oHttp:ReadAll() MEMOWRIT( "MYRESULT1.TXT", cItems2) this is what the text file shows { "UID": "17ef4d73-cfa7-43fb-afe6-5350cbffffa9", "CompanyName": "Techdata S...
json
Hello you can use hJson hb_jsondecode(cItems2,@hJson) hJson["CompanyName"] = "My New Company Name" cJson = hb_JsonEncode(hJson) oHttp:hFields["Content-Type"] = "application/json" now you can post oHttp:Post(hJson,cUri)
json
Hi Daniel cJson = hb_JsonEncode(hJson) What should the valtype of cJson be. ? oHttp:hFields["Content-Type"] = "application/json" now you can post I presume cJson shoud be passed to the post method not hJson oHttp:Post(hJson,cUri) I am still having issues with the update METHOD PostByVerb( xPostData, cQuery,...
json
[quote="Colin Haig":3ipvpjxx] I presume cJson shoud be passed to the post method not hJson Colin[/quote:3ipvpjxx] yes right, sorry my mistake
json
Hola compañeros me podrian indicar que librerías si hay que utilizar para xharbour alguna librería en especial. Y si hay algún equivalente para HB_JsonDecode de harbour en xharbour Gracias
json
[url:2mcm4xa7]https&#58;//groups&#46;google&#46;com/forum/#!topic/comp&#46;lang&#46;xharbour/bQPfbLeTTuQ%5B26-50%5D[/url:2mcm4xa7]
json
compiler with xhb [code=fw:2m83hh5t]<div class="fw" id="{CB}" style="font-family: monospace;"><br />REQUEST HB_CODEPAGE_ES850<br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">Local</...
jsondecode
hola a todos uso la version de harbour 2.1.0beta1 (Rev. 14559). y cuando uso la funcion hb_jsondecode me dice que no existe la funcion asumo que esta funcion de harbour es posterior a mi version de harbour, que puedo hacer para obtenerla ? de momento uso fivewin 10.01 y no puedo actualizar. de antemano gracias.
jsondecode
Desde que version de FWX se puede utilizar HB_JSONDECODE()
juego pacman ala Fwh
Hola buenas tardes anexo prg del archivo del juego de pacman hecho en fivewin le faltan detallitos pero ya se puede jugar [url:cljfleoj]http&#58;//www&#46;eleben&#46;com&#46;mx/pacman&#46;zip[/url:cljfleoj] [code=fw:cljfleoj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B...
juego pacman ala Fwh
Excelente amigo Eso eso es destreza
juego pacman ala Fwh
El zip no lo descarga. No encuentra la página web y sin eso, compila el código, pero no se ve nada. Saludos.
juego pacman ala Fwh
Muy bueno benjiben Gracias. Saludos, Adhemar
juego pacman ala Fwh
Muy bueno, sí señor ! Gracias por compartirlo.
juego pacman ala Fwh
El link no funciona.
juego pacman ala Fwh
hola ahorita tengo fallas con el servidor se los puedo mandar por correo o si lo pueden subir a otro servidor me pueden mandar correo a <!-- e --><a href="mailto:chino72vale@hotmail.com">chino72vale@hotmail.com</a><!-- e --> saludos
juego pacman ala Fwh
Excelente!! Muchas gracias.
juego pacman ala Fwh
Alguien puede poner unas imágenes de como se ve ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> gracias!
juego pacman ala Fwh
Muy buen trabajo. Muchas gracias. [img:2qljss2e]http&#58;//i61&#46;tinypic&#46;com/2eofbtj&#46;jpg[/img:2qljss2e]
juego pacman ala Fwh
Excelente me he reido ijijiji muy bien trabajo..
juego pacman ala Fwh
No consigo bajarlo... <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: -->
juego pacman ala Fwh
pásame tu correo al mi correo <!-- e --><a href="mailto:chino72vale@hotmail.com">chino72vale@hotmail.com</a><!-- e --> y te lo mando saludos
juego pacman ala Fwh
Muy bueno Felicitaciones, Increíble lo que se puede hacer con Fivewin/Harbour Imaginación es lo que hace falta
juego pacman ala Fwh
INCREIBLE, aguanta FW que ahora es que hay para rato...FELICITACIONES por el ingenio...como lo descargo.? saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
juego pacman ala Fwh
Muy ingenioso. Felicitaciones.
juego pacman ala Fwh
Muy bueno Benjamin tu PacMan ! Muy ingenioso y divertido <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> Gracias por compartir !
juego pacman ala Fwh
excelente muy bien Felicitaciones Wilson
juego pacman ala Fwh
Probando me di cuenta de un pequeño detalle....no hay puntuacion y nunca me salieron las fruticas para perseguir a los fantasmas, jejejeje...era bueno en este juego en sus inicios ...me devolvi 2 veces por las salidas de los laterales izquierdo y derecho y salio un detalle, te lo posteo, esta super divertido, gracias, ...
juego pacman ala Fwh
Unable to download
juego pacman ala Fwh
[quote="bpd2000":13hb56vp]Unable to download[/quote:13hb56vp] Acabo descargarlo sin problemas, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
juego pacman ala Fwh
hola buenos dias si , todavia le faltan algunas validaciones a penas lo empeze a construir el pacman ese detalle es cuando esta pasando el pacman de lado a lado e interfiere un fantasma ahoita le estoy poniendo para que el pacman pueda comer fantasma y por ultimo la comidita saludos
juego pacman ala Fwh
hola buenos dias le acabo de poner la comida al pacman , ya los fantamas se ponen diferente y le da un tiempo para que no lo puedan comer, todavia no le pongo que el pacman se los comen saludos [url:2cvlisvq]http&#58;//www&#46;eleben&#46;com&#46;mx/pacman&#46;zip[/url:2cvlisvq] [url:2cvlisvq]http&#58;//www&#46;elebe...
juego pacman ala Fwh
Gracias es muy entretenido <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: --> Saluditos <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
juego pacman ala Fwh
[quote="benjiben143":d78xkmkt]hola buenos dias si , todavia le faltan algunas validaciones a penas lo empeze a construir el pacman ese detalle es cuando esta pasando el pacman de lado a lado e interfiere un fantasma ahoita le estoy poniendo para que el pacman pueda comer fantasma y por ultimo la comidita sa...
just married
Did Cristobal get married with Natalia or celebrate the wedding anniversary? Anyway wishes to Cristobal
just married
Congratulations my dear friend. Que ótima notícia. Regards, saludos.
just married
Thank you so much my friends. Yes, after 14 years living together, we decided to make it official and we got married.
just married
CONGRATULATIONS !!! Wish you a Very Happy Long Married Life.
just married
My best wishes, Cristobal! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> EMG
just married
Muchas felicidades Cristobal!
just married
¡Felicidades, Cristóbal!
just married
Congratulations Cristobal! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
just married
Congrats!! Rick Lipkin
just married
Enhorabuena!! Muchas felicidades Cristobal. Y que sean muchos años mas
just married
Congratulations!!
just married
Muchas felicitaciones, esta nueva etapa. Saludos.
just married
CONGRATULATIONS Wish you a Very Happy Long Married Life
just married
Thank you so much my friends Muchas gracias a todos.
just married
[b:3nrnqj2q]Congratulations[/b:3nrnqj2q]
just married
Cristóbal: Muchas felicidades para ti y la dueña de tu salario <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Saludos
just married
Felicidades Cristobal !!! Que tengan una maravillosa y larga vida unidos en el amor <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
just married
Muchas gracias amigos
just married
Cristobal, Congratulations. My best wishes to you both for a long and happy married life. -Ramesh Babu
just married
Congratulations
just married
Felicidades!!!! Lo mejor para ti y tu flamante esposa!!!
just married
Felicidades Cristobal!!!
just married
long live with love !! dear Boss
just married
Thank you very much dear friends for your words and good wishes.
just married
Muchas FELICIDADES Cristobal !!! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> no hay nada mas lindo que estar enamorado y en pareja !! Saludos,
justificado derecha en get
hola foro, pues estoy intentando justificar a la derecha un get, desde recurso lo tengo justificado a la izquierda, pero por necesidad del sistema necesito cambiarlo en tiempo de ejecucion a la derecha y no me funciona, lo hago asi: REDEFINE GET aoObjetos[1] ID 101 OF oDlg... aoObjetos[1]:nStyle:= nOr( aoObjetos[1]:...
justificado derecha en get
Francisco si lo has creado desde recursos creo que lo tienes que modificar en el recurso Saludos
justificado derecha en get
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=7821">viewtopic.php?f=6&t=7821</a><!-- l -->
justificado derecha en get
Gracias Renzo, solucionado saludos paco
justified alignment
in the oprnBox () method it is possible to set the horizontal positioning (Left, Right, Centered) and the vertical one (Top, Bottom, Centered). in the future it is also possible to have justified alignment? example if the text is long you could have it in justified mode inside the oprn: box ()?
justify a text
For my "[i:1tmmd5sm]dear old friend[/i:1tmmd5sm]" Silvio Maybe my Metro Style Infobox is of any use for you. Regards, Otto [code=fw:1tmmd5sm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#define</span> DT_WORDBREAK         <span style="color: #000000;">16</span><br />...
justify a text
Did you searching that: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=19174">viewtopic.php?f=6&t=19174</a><!-- l -->
justify a text
Antolin, thank You very much for the nice function. I have done some small changes, to make it more flexible. As well changes needed, to use big fonts. LOCAL cText := ; 'Word-1 Word-2 Word-3 Word-4 Word-5 Word-6 Word-7 Word-8 Word-9 '+; 'Word-10 Word-11 Word-12 Word-14 Word-15 Word-16 Word-17 Word-18 '+; 'Word-19 W...
justify a text
Hello Otto, I had a look at Your function, but it does just a WORDBREAK no textadjust. Also the function I'm just testing, doesn't work 100 % because it just includes blanks, to make shorter lines equal to the longest line. The only way will be, to change the font char-width of a line to adjust to the needed length. ...
justify a text
Hello Uwe, thank you. As I am totally focused on metro style I didn’t care about text adjust. I found this Design Guidelines for Windows 8 Metro apps. [url:3g02vfht]http&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/apps/hh464920&#46;aspx[/url:3g02vfht] Best regards, Otto
justify a text
ukoenig, perdona por la tardanza, pero he estado muy liado y, la verdad, es que no he vuelto a utilizar esta función hasta hace poco, por lo que no pude comprobar que efectivamente hay situaciones en que el texto no se justifica bien, pero ya lo he solucionado. En el post: <!-- l --><a class="postlink-local" href="ht...
justify a text
Otto, Well, I'm confused. Are you saying the the Metro Guidelines say to right justify? It appears that they say not to right justify. 6. Use kerning, tracking, hyphenation, and alignment effectively [quote:225e6vi0]As any type designer will tell you, the space between letters is just as important as the letter shap...
justify a text
Otto, I re-read the thread and now I get it. You were talking about left-justifying multi-line text in a SAY. Others posted about right-justifying--thus my confusion. Your example is not compiling due to the missing setup() function. Could we get that? James
justify a text
Otto, This brings up an issue that I have been meaning to post about. The current TMetropanel and TMetrobutton are only useful for emulating the Windows 8 start screen. Windows 8 apps need much more flexibility such as different button sizes and different alignment. I note that the metrobutton class already has a draw...
justify a text
Dear James, Setup() is a function I initially got from you and I use now everywhere. In this case I only ask the FONT and size. DEFINE FONT ::oFntMetroMedium NAME cFontName SIZE 0,-26 * ::nFaktor I calculate a factor for different screen resolutions. As I code all Dialogs “hardcoded” I use the factor for example lik...
justify a text
Dear James, … BTW, do you know how you can insert a desktop connection in WINDOWS 8 to start metro style Internet explorer or other RT programs. Best regrads, Otto
justify a text
Otto, [quote:1lgxorqb]I am very confused about Metro. You only read negative news. Users do not like, Start button comes back, …[/quote:1lgxorqb] Yes, there is a lot of complaining. However, there has been for every new version of Windows. And if we listened to all the negative feedback, we would all still be using D...
justify a text
James, totally agree My experience with Windows 8 is very good, it is fast and does not give any problem regards James, totalmente de acuerdo Mi experiencia con Windows 8 es muy buena, es rápido y no da ningun problema Saludos