topic
stringlengths
1
63
text
stringlengths
1
577k
problemas con webcam en win 7 64
Estoy tratando de hacer funcionar la clase WebCam, ya que necesito tomar imágenes de los clientes desde mi aplicación. He probado la clase y me ocurren varias cosas. Puedo hacer la conexión pero no me muestra nada, Si copio al clipboard muestra fugazmente la imágen en pantalla y efectivamente guarda la imágen el el clipboard. También si guardo la imágen en disco, siempre que sea formato bmp, no así jpg me tira un error y por último una vez que desconecto la cámara ya no puedo volver a conectarla, debo reiniciar el sistema para que vuelva a funcionar. Alguien tiene idea de como solucionarlo. Desde ya muchisimas gracias. Saludos
problemas con windows 98
Tengo una aplicación que en xp funciona perfecto, pero al momento de instalarla en la pc de mi cliente ( windows 98 ), me marca el siguiente error: Error description: Error FiveWin/3 Cannot create Dialog Box: Resource: LOGIN me podrían ayudar a saber por qué pasa esto, y cuál es la mejor solución? mi resource es una dll llamada "RECURSOS" y el dialog box si está ahi, pero me dice que no lo puede crear =(
problemas con windows 98
Las DLLs: BWCC.DLL y CTL3D.DLL, pongalas en el directorio de la aplicación. Y cuidado con, el número máximo de ficheros abiertos a la vez. Win98, trabaja con 20, por defecto, y la aplicación que estoy realizando, en XP va perfecta, ya que este tiene un máximo de 30. Pero en el 98, tuve que poner: [u:3rmj2042]CONFIG.SYS[/u:3rmj2042] FILES=40 BUFFERS=40,0 FCBS=4,0 STACS=9,256 [u:3rmj2042]AUTOEXEC.BAT[/u:3rmj2042] SET CLIPPER=F30 Y en la función, de entrada a la aplicación: SetHandleCount( 40 ) Ya que con 30, tampoco me abria, las DBFs. Saludos, José Mª
problemas con windows 98
José Mª: Con fivewin no hace falta tocar ni el autoxec.bat ni el config.sys, es suficiente con poner en tu prg principal: SetHandleCount(120) Respecto a bwcc.dll yo la uso renombrada con otro nombre y puesta en el directorio del exe, asi de esa manera no hay peligro de conflictos con otras versiones de bwcc.dll que eventualmente pueda usar algun otro sistema instalado en la maquina y que pueda usar bwcc.dll en los directorios de windows (el tango gestion x ejemplo, muy usado en la argentina, utiliza bwcc.dll porque esta hecho en borland delphi) y te puede traer problemas porque si la version del programa tango es vieja la bwcc.dll es anterior a la version 2.0 (que es la minima que necesita el workshop x ejemplo) Saludos,
problemas con windows 98
Gracias por el consejo Jose Mª, asunto arreglado. En efecto, Daniel, no fue necesario modificar el .bat y .sys vaya que me han facilitado la vida!
problemas con windows 98
El haberte ayudado, me alegra. Lo de modificar, el [u:4udnzmhi]CONFIG.SYS[/u:4udnzmhi] y, el [u:4udnzmhi]AUTOEXEC.BAT[/u:4udnzmhi], es por costumbre. Nunca te acostaras, sin saber algo nuevo. Gracias por la puntualización Daniel. Saludos, José Mª
problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom() [solucio
Buenos días Antonio, Para acabar de solucionar el problema de xBrowse y SQLRDD, dado que Nages no contesta a los mensajes, necesito poder mover la barra de scroll vertical. Sin embargo, oBrw:VGoBottom() ni SendMsg( VK_DOWN ) funcionan. No hacen nada. Aquí va un ejemplo. [code=fw:byt1wput]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"hbcompat.ch"</span><br /><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   use c:\fwh\samples\customer<br /><br />   TESTBROWSE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   dbcloseall<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><br />   quit<br /><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><br /><br /><br /><br /><span style="color: #00C800;">function</span> TESTBROWSE<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   <span style="color: #00C800;">local</span> oDlg<br />   <span style="color: #00C800;">local</span> oBrw<br /><br />   <span style="color: #0000ff;">define</span> <span style="color: #0000ff;">dialog</span> oDlg <span style="color: #0000ff;">title</span> <span style="color: #ff0000;">"Test xBrowse "</span> + cvaltochar<span style="color: #000000;">&#40;</span>datetime<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">from</span> <span style="color: #000000;">0</span>,<span style="color: #000000;">0</span> <span style="color: #0000ff;">to</span> <span style="color: #000000;">24</span>,<span style="color: #000000;">79</span><br /><br /><br />    @ <span style="color: #000000;">0</span>,<span style="color: #000000;">0</span> <span style="color: #0000ff;">xbrowse</span> oBrw datasource <span style="color: #0000ff;">alias</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000ff;">of</span> oDlg fastedit <span style="color: #0000ff;">autocols</span> autosort ;<br />    <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">-1</span>, <span style="color: #000000;">-1</span> <span style="color: #0000ff;">PIXEL</span><br /><br />    oBrw:<span style="color: #000000;">nRowHeight</span> := <span style="color: #000000;">25</span><br /><br /><br />    oBrw:<span style="color: #000000;">lAutoappend</span> := .t.<br />    oBrw:<span style="color: #000000;">CreateFromCode</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><br />    <span style="color: #0000ff;">activate</span> <span style="color: #0000ff;">dialog</span> oDlg <span style="color: #0000ff;">centered</span> ;<br />             <span style="color: #0000ff;">on</span> <span style="color: #0000ff;">init</span> <span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">VGoBottom</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, oBrw:<span style="color: #000000;">oVScroll</span>:<span style="color: #000000;">SendMsg</span><span style="color: #000000;">&#40;</span> VK_DOWN <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /> </div>[/code:byt1wput] Te agradecería por favor tu ayuda, dado que llevo con este problema desde diciembre y los clientes están sumamente cabreados. Muchas gracias. Un saludo
problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom() [solucio
Estimado Moises Si la idea es enviar al último registro yo uso GoBottom() y nunca he visto VGoBottom()
problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom() [solucio
Muchas gracias por tu respuesta. El problema es que con SQLRRD, al hacer dbgobottom() no baja la barra de scroll, ni tampoco funciona el método para forzarlo, ni sendmsg.
problemas con xBrowse: NO FUNCIONA oBrw:VGoBottom() [solucio
Gracias a la ayuda de Cristóbal, este es el fix: [code=fw:f4nm4er9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">METHOD</span> KeyCount<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C800;">CLASS</span> TXBrowse<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">TRY</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> Empty<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">aFilter</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style="color: #000000;">nLen</span> &nbsp; := Eval<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">bKeyCount</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;::<span style="color: #000000;">nLen</span> &nbsp; := Len<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">aFilter</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">endif</span><br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">lClosed</span> &nbsp; := .f.<br /><br />&nbsp; &nbsp;CATCH<br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">nLen</span> &nbsp; &nbsp; &nbsp;:= <span style="color: #000000;">0</span><br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">lClosed</span> &nbsp; := .t.<br />&nbsp; &nbsp;END<br /><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> ::<span style="color: #000000;">oVScroll</span> != <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">VSetRange</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span>, ::<span style="color: #000000;">nLen</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> !::<span style="color: #000000;">lSqlRDD</span><br />&nbsp; &nbsp; &nbsp; &nbsp; ::<span style="color: #000000;">VUpdatePos</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">endif</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br /><span style="color: #00C800;">return</span> ::<span style="color: #000000;">nLen</span><br /><br /><br />&nbsp;</div>[/code:f4nm4er9]
problemas con xbrowse
Estoy tabajando con la version fwh21 y se me ha presentado un problema en xbrowse Cuando Incicio el xbrowse defino un font Para el proceso ejecuto un procedimiento que tambien imvolucra un xbrowse con otros datos. Despues de ejecutar varias veces por 8 a 10 veses el proceso segundo, el fonto del xbrowse primario se deconfigura dandome un fonto mucho mas grande y en bold Si a alguien le a ocurrido este problema como se resuelve Gracia Saludos Arturo Tamayo
problemas con xbrowse
Arturo, eso es porque en algún momento se destruye el font, habitualmente porque no se asigna correctamente en algún control.
problemas con xbrowse
Hola, si esopense pero he buscado y no encuentro ningun proceso que destruya el font, es posible que tenga que destruir los fonts del segundo xbrowse para evitar este problema Saludos
problemas con xbrowse
Arturo, pon aquí cómo asignas el font al Xbrowse
problemas con xbrowse
ahi va DEFINE FONT ofont0 NAME "Segoe UI" SIZE 0,-11 @30,214 XBROWSE oLbx; FIELDS partfil(Computos->partid),; xPadl(str(computos->Correl,4,0),30),; strtran(Computos->Detall,chr(141)+chr(10),""),; Computos->Unidad,; Transform(Computos->VolObr,'99,999,999.99'),; Transform(Computos->Cosdir,'9,999,999,999.999'),; Transform(Computos->Cosdir*computos->VolObr,'99,999,999,999.99'),; Transform(Computos->Prodia,'999,999.9999'),; Transform(Computos->Herami,'99,999.99 %'); ALIAS "Computos"; /// HEADERS getmensa(1105),; getmensa(1419)+CRLF+getmensa(1333),; getmensa(1197),; getmensa(1571),; getmensa(1098),; getmensa(1445)+CRLF+getmensa(1572),; getmensa(1547),; //+CRLF+getmensa(1001),; getmensa(1460)+CRLF+getmensa(1301),; getmensa(1437)+CRLF+getmensa(1297); ON DBLCLICK (q2200Edit(oLbx,.f.,@modifico,,wCodpry,wcodpro,@wCosTot,oCosTot,,wtipcam), ; FacMenu2200(wCodpry,@nWGa,@nWBs,@nWIv,@nWIt,@nWut,oWGa,oWBs,oWIv,oWIt,oWut)) ; FIELDSIZES 50,40,nWincol-565-265,50,90,85,90,90,70 ; //450 -27 SIZE 165.1,nWinRow-68+8 PIXEL OF oWndChild ; FONT oFont0
problemas con xbrowse
hice la prueba quitandole el font para que que tome el que te da por default el xbrowse pasa lo mismo
problemas con xbrowse
LOCAL ó PUBLIC? Se PUBLIC, no use. Use siempre LOCAL. Saludos.
problemas con xbrowse
Estan Como locales
problemas con xbrowse
Buenas noches, en todos mis años de FiveWin, este és un caso muy raro. Sería interesante entonces, a efectos de estudio y aprendizaje, que pudieras hacer un pequeño ejemplo para que hagamos pruebas con él y descubramos esta magia. En caso de duda cambiar la FUENTE por cualquier otra y su nombre, por ejemplo oFontNew para ver el resultado, por favor. [code=fw:21j9pygw]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">LOCAL</span> oFontNew<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span>...<br /><br />&nbsp; &nbsp;oFontNew:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:21j9pygw] Regards, saludos.
problemas con xbrowse
Bueno siguiendo con el tema del xbrowse les comento que no escontre las causas de este error solo se perdio cuando hice que el xbrowse primario no tenga definido un fonto y tome el del sistema dinino como default En conclusión voy a ver si medot tiempo hare un ejemplo que genere este cambios de font regard, saludos
problemas con xbrowse
A mi me sucede exactamente lo mismo, gracias karinha y Cristobal Voy a probar sus sugerencias (Local oFont)
problemas directmesagge outlook 2003
Hola. Tengo una aplicacion que hace uso de una funcion con el siguiente codigo: DEFINE MAIL oMail ; SUBJECT XASUNTO ; TEXT xtexto ; TO XCLIENTE+" <"+XCUENTA+">", xcuenta ACTIVATE MAIL oMaildonde xcliente es un nombre de una persona,y xcuenta una direccion de mail valida, chequedada;con Outlook Express, esto funciona perfecto, me manda un mail, que llega de: "Cliente Fulanito <[email protected]>" y si hago 2 clic, me muestre correctamente que la direccion es <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->El tema es que no me funciona en MS Outlook 2003, y creo que tampoco en MS Outlook 2000; en estos casos, es todo igual, pero al dar 2 clic en la direccion , veo todo bien, pero me pone en TIPO DE CORREO, en lugar de SMTP, la direccion de correo del cliente:NOMBRE A MOSTRAR: Cliente fulanito<fulanito@...>DIRECCION DE CORREO: [email protected] DE CORREO: <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->en ese campo deberia poner SMTP. ¿existe alguna otra funcion para trabajar con MS Outlook? Gracias. Atte.
problemas en compilación
Estoy configurando un proyecto y al intentar compilar me genera este error: [code=fw:28divfiu]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Error: <span style="color: #000000;">Unresolved</span> external <span style="color: #ff0000;">'GetModuleFileNameExA'</span> referenced <span style="color: #0000ff;">from</span> C:\FWH12\LIB\FIVEHX.LIB|GETTASKS<br /> </div>[/code:28divfiu] En que librería se encuentra esta función ??? Muchas Gracias
problemas en compilación
Saludos voy a aprovechar este post para ensenar (a los que no saben) una forma practica de encontrar respuesta a sus preguntas o errores, muchas veces nos quedamos esperando a que alguien nos responda sin saber que la respuesta la tenemos aqui mismo, pudiendo solucionar de inmediato nuestros problemas o dudas... en la parte superior derecha del FORO hay un "textbox" que dice "search" alli podremos buscar las palabras claves al tema que estamos buscando... siguiendo ell hilo del post buscaremos "[b:3de5m9lq]GetModuleFileNameExA[/b:3de5m9lq]" aqui la lista: [url:3de5m9lq]http&#58;//forums&#46;fivetechsupport&#46;com/search&#46;php?st=0&sk=t&sd=d&keywords=getmodulefilenameexa[/url:3de5m9lq] nos da una lista bastante grande de post que hacen referencia a la misma pregunta ( por eso dedico estas lineas, podriamos evitar la redundancia de temas y optimizar nuestro tiempo de trabajo ) horacio, ahora para darte una respuesta mas directa solo te falta incluir la libreria de borland: [b:3de5m9lq]psapi.lib[/b:3de5m9lq]
problemas en compilación
Daniel, gracias por tu pronta respuesta. La búsqueda la hice, evidentemente habré escrito mal lo que estaba buscando. Muchas dudas las he resuelto de esa manera. Trato de arreglarme solo y trato de molestar lo menos posible. Gracias nuevamente
problemas impresion en laser
Hola. Tengo un programa donde hago un grafico con GRAPH, y luego trato de imprimirlo con: odlg:print() o con odlg:hardcopy(3) si la impresora por defecto es una deskjet, funciona, pero si la impresora es una laser, imprime una hoja en blanco. ¿alguna idea de que puede ser? Gracias. Atte.
problemas impresion en laser
INTENTE DESINSTALAR Y REINSTALAR EL DRIVE DE LA IMPRESORA. PUEDE SEER ESTO. MIRA TAMBIÉN SE NO TIENE UN LOOPING EN EL RELATORIO SIN EL SYSREFRESH() Saludos.
problemas impresion en laser
hola. reinstale y sigue funcionando mal; me imprime la pagina en blanco; y probe el mismo programa con otras 2 laser diferentes, y en todas se da el mismo sintoma; con deskjet, funciona, pero no con laser. Si alguien sabe que puede ser. Gracias. Atte.
problemas impresion en laser
[quote="diegopolverelli":27fzt8uh]hola. reinstale y sigue funcionando mal; me imprime la pagina en blanco; y probe el mismo programa con otras 2 laser diferentes, y en todas se da el mismo sintoma; con deskjet, funciona, pero no con laser. Si alguien sabe que puede ser. Gracias. Atte.[/quote:27fzt8uh] PUEDE SEER QUE TENGAS QUE ATUALIZAR EL DRIVE DE LA IMPRESORA. OTRA: ESTAIS USANDO CMSAY() Ó CHARSAY()?? MEJOR CMSAY(). HAGA UN TESTE CON CMSAY(). Saludos.
problemas impresion en laser
Como Imprimir em Centimetros sem errar e em qualquer Impressora [code:i47jkajv] FUNCTION IMPRIME&#40;&#41; LOCAL ResColuna, ResLinha, oPrinter, oFont1 PRINTER oPrinter NAME "Teste de Impressão " PREVIEW DEFINE FONT oFont1 NAME "Times" SIZE 0, -9 BOLD OF oPrinter CursorWait&#40;&#41; oPrinter&#58;SetLandScape&#40;&#41; rescoluna&#58;=oPrinter&#58;nlogpixelx&#40;&#41;/2&#46;54 reslinha&#58;=oPrinter&#58;nlogpixely&#40;&#41;/2&#46;54 PAGE oPrinter&#58;say&#40;3*reslinha,5*rescoluna,"Teste de Impressão em Posição de Centímetros"&#41; oPrinter&#58;SayBitmap&#40;5*resColuna,205*ResLinha,"logo&#46;bmp",10*ResColuna,11*ResLi nha,2 &#41; ENDPAGE ENDPRINTER [/code:i47jkajv]
problemas impresion en laser
Probe con eso, imprimiendo con un odlg:print(oprn,50,50,3.16), siendo oprn un objeto PRINT, y si imprimo seleccionando una impresora deskjet, sale bien, pero si imprimo en una laser, sale una hoja en blanco.
problemas letra ñ
Hola. Les paso 2 problemitas que tengo:- hoy me di cuenta que si tengo un indice en un campo, y el campo tiene datos que incluyan la Ñ, el indice deja de buscar. No se cual es el error exacto (no sale error, en realidad), pero busco "caño001" y no lo encuentra, a pesar de existir.- tengo algunas pantallas, Says, y reportes, y varios lugares donde no me aparece la letra Ñ, sino un ascii feo. ¿me falta algun SET?Gracias.
problemas letra ñ
Diego,Si la DBF ha sido mantenida desde MsDos, es preciso que uses OemToAnsi( cTextoOem ) --> cTextoAnsi para ver el texto correctamente.De la misma forma necesitas llamar a AnsiToOem( cTextoAnsi ) --> cTextoOem si quieres que la DBF pueda seguirse usando desde MsDos y se vea bien.Por otra parte asegúrate que estas usando el set de caracteres correctos en tu PRG:Tienes que añadir estas líneas al comienzo de tu PRG principal: REQUEST HB_Lang_ES REQUEST HB_CODEPAGE_ESWIN HB_LangSelect("ES") // Para mensajes, fechas, etc.. HB_SetCodePage("ESWIN") // Para ordenación, requiere CodePage.lib
problemas letra ñ
Hola. Probe lo que me dijiste; el HB_Langselect("ES") se escribe con un REQUEST???REQUEST HB_Langselect("ES")?????porque pongo ::REQUEST HB_Lang_ESREQUEST HB_Langselect("ES")y ejecuto if MSGYESNO("¿prueba?","atencion")y al ejecutar me muestra "prueba?¿que puede ser?Gracias...!!!
problemas para usar Crystal Reports XI 11
Estoy usando el codigo de ejemplo que dejo Biel Gabriel Maimó pero me marca este error [b:2hrxfvrp]Error description: Error TOleAuto/-1 CO_E_CLASSSTRING: TOLEAUTO:NEW[/b:2hrxfvrp] Ya use varios ejemplos sin éxito, este ejemplo se apega a lo que yo estoy usando espero me puedan ayudar <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> Tambien quisiera saber que librerias o DLLs necesito para usar r Crystal Reports [code=fw:2hrxfvrp]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;oCrys:=tOleAuto<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"CrystalRunTime.Application"</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oRpt:=oCrys:<span style="color: #000000;">OpenReport</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"C:<span style="color: #000000;">\T</span>EMP<span style="color: #000000;">\P</span>RUEBAS.rpt"</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oRpt:<span style="color: #000000;">Database</span>:<span style="color: #000000;">Tables</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span>:<span style="color: #000000;">Location</span>:=<span style="color: #ff0000;">'C:<span style="color: #000000;">\T</span>EMP<span style="color: #000000;">\D</span>ATFAC.dbf'</span><br />&nbsp; &nbsp;<span style="color: #00C800;">IF</span> oRPt:<span style="color: #000000;">HasSavedData</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #B900B9;">//si tenia datos guardados con el reporte, lo borra.</span><br />&nbsp; &nbsp; &nbsp; oRPT:<span style="color: #000000;">DiscardSavedData</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp;<span style="color: #B900B9;">//obligando asi la lectura desde el fichero dbf.</span><br />&nbsp; &nbsp;<span style="color: #00C800;">ENDIF</span><br />&nbsp; &nbsp;oCrRpt:=tActiveX<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span>oWnd,<span style="color: #ff0000;">"CrystalReports11.ActiveXReportViewer.1"</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oCrRpt:<span style="color: #000000;">SetProp</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ReportSource"</span>,oRpt<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oCrRpt:<span style="color: #000000;">SetProp</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"DisplayGroupTree"</span>,.F.<span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;oCrRpt:<span style="color: #00C800;">DO</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"ViewReport"</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oWnd:<span style="color: #000000;">oClient</span>:=oCrRpt<br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWnd <span style="color: #0000ff;">VALID</span> <span style="color: #000000;">&#40;</span>oCrRpt:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>,oCrys:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>,oRpt:<span style="color: #000000;">END</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>,.T.<span style="color: #000000;">&#41;</span><br /><br />&nbsp;</div>[/code:2hrxfvrp] De antemano gracias
problemas para usar Crystal Reports XI 11
Hola. Te recomiendo Fast Report. Es igual de potente, más fácil y asequible. <!-- m --><a class="postlink" href="http://www.paritetsoft.ru/frh.htm">http://www.paritetsoft.ru/frh.htm</a><!-- m -->
problemas para usar Crystal Reports XI 11
Pues gracias mgsoft, pero ya adquirí crystal report y me urge resolverlo o si sabes donde puedo conseguir fastreport sin costo y unos ejemplos te lo voy a agradecer toda la vida <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
problemas para usar Crystal Reports XI 11
En la web tienes varios ejemplos con FWH. Sobre CR, mira que CrystalRunTime.Application sea correcto, no sea otro nombre.
problemas para usar Crystal Reports XI 11
veja isto: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=4077&hilit=+crystal">viewtopic.php?f=6&t=4077&hilit=+crystal</a><!-- l -->
problemas pintado ribbon
Hola foro (antonio), Ha alguien le ha pasado lo del pintado con la ribbon? explico... Son 3 puntos. 1. En un boton de un grupo cuando tiene menu, y se clickea el color del boton cambia, y me aparece el menu, pero si doy click en el escritorio de mi aplicacion sin seleccionar opcion del menu, el boton se queda con el color de seleccionado, este no cambia al original, y cuando no tiene menu y es una opcion y doy click sin quitar el cursor del boton y se abre mi otra ventana, al hacer todos mis procesos y mover el cursor y cerrar esa ventana la opcion del grupo de ese boton se queda en color de seleccionada, cuando ya no lo esta. adjunto las 3 imagenes [img] [url=http&#58;//imageshack&#46;us/photo/my-images/41/unoqr&#46;jpg/:2dkov3hb][img:2dkov3hb]http&#58;//img41&#46;imageshack&#46;us/img41/7404/unoqr&#46;th&#46;jpg[/img:2dkov3hb][/url:2dkov3hb] [/img] [img] [url=http&#58;//imageshack&#46;us/photo/my-images/683/doscw&#46;jpg/:2dkov3hb][img:2dkov3hb]http&#58;//img683&#46;imageshack&#46;us/img683/450/doscw&#46;th&#46;jpg[/img:2dkov3hb][/url:2dkov3hb] [/img] [img] [url=http&#58;//imageshack&#46;us/photo/my-images/600/tresp&#46;jpg/:2dkov3hb][img:2dkov3hb]http&#58;//img600&#46;imageshack&#46;us/img600/4475/tresp&#46;th&#46;jpg[/img:2dkov3hb][/url:2dkov3hb] [/img] Punto 2. En mi menu QUICKBUTTON, los rbbtn que defino, de forma aleatoria sin cambiar esa parte del sistema, a veces los muestra y a veces no, tengo que pasa el cursor por encima de la barra quickbutton para que me los pinte, adjunto imagenes.. [img] [url=http&#58;//imageshack&#46;us/photo/my-images/535/cuatroo&#46;jpg/:2dkov3hb][img:2dkov3hb]http&#58;//img535&#46;imageshack&#46;us/img535/1845/cuatroo&#46;th&#46;jpg[/img:2dkov3hb][/url:2dkov3hb] [/img] [img] [url=http&#58;//imageshack&#46;us/photo/my-images/685/cincoj&#46;jpg/:2dkov3hb][IMG=http://img685.imageshack.us/img685/4126/cincoj.th.jpg][/IMG][/url:2dkov3hb] [/img] [img] [url=http&#58;//imageshack&#46;us/photo/my-images/844/seisvi&#46;jpg/:2dkov3hb][IMG=http://img844.imageshack.us/img844/8479/seisvi.th.jpg][/IMG][/url:2dkov3hb] [/img] Punto 3. En los botones con MENU, cuando seleccionas una opcion, luego cierras y quieres volver a abrir el menu del boton dando click, hay que darle como 3,4 click pa que despliegue el menu, no lo hace de forma instantanea.. Gracias Espero haberme explicado
problemas pintado ribbon
Hola, Te confirmo el punto 3, a veces tengo que dar varias veces a un botón con Menu para que aparezca dicho menú.
problemas por primera vez usando FWH una manito por favor
Estimados amigos de FiveTechSoft: Recien adquirí FWH, he seguido paso a paso los procedimientos especificados en el manual, ya instale Harbour y BCC55, coloque los correspondientes paths de las carpetas "harbour" y "borland" en el fichero "buildh.bat", pero al ejecutar "buildh.bat tutor01" aparece lo siguiente: ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ FiveWin for Harbour 2.7 - November 2005 Harbour development power ³Ü ³ (c) FiveTech, 1993-2005 for Microsoft Windows 95/98/NT/2000/ME and XP ³Û ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙÛ ÿ ßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßß Compiling... Harbour Compiler Alpha build 45.0 (Flex) Copyright 1999-2005, <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m --> Compiling 'tutor01.prg' and generating preprocessed output to 'tutor01.ppo'... Lines 25, Functions/Procedures 2 Generating C source output to 'tutor01.c'... Done. Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland tutor01.c: Borland Resource Compiler Version 5.40 Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved. Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland Fatal: Unable to open file 'C0W32.OBJ' * Application successfully built QUE DEBO CAMBIAR EN MIS FICHEROS RMK Y LNK ANTIGUOS PARA TRABAJAR CON HARBOUR? DE ANTEMANO MUCHAS GRACIAS Y SALUDOS
problemas por primera vez usando FWH una manito por favor
ya lo solucioné .. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> copié: "c0w32.obj" y "uuid.lib" desde la cerpeta bcc55\lib Ahora voy con mis aplicaciones <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> saludos
problemas serios con la clase tplann
Estoy buscando un dispuesto a editar la clase Tplann de Daniel García. Traté de comunicarme con Daniel García pero no pude También le pedí a Linares que me ayudara a comunicarme con Daniel, pero él nunca me respondió a través de googletalk. Tengo dos problemas serios [img:1zzzelac]https&#58;//i&#46;postimg&#46;cc/Nj06D9hg/errore-tplann&#46;jpg[/img:1zzzelac] 1) En mi programa tengo que administrar los periódicos diarios, es decir, un cliente puede alquilar el servicio por un solo día: cuando la reserva es solo por un día en la grilla, la reserva me muestra mal, si muevo el mouse sobre ella e intento abrir el diálogo de modificación, el procedimiento cambia el período de reserva, por ejemplo, si la reserva es del 01/03/2020 al 01/03/2020, el procedimiento lo cambia del 29/02/2020 al 01/03/2020 o del 01/03/2020 al 02/03/2020 deslizando todo el archivo de reservas. También intenté no ver los diarios pero no pude 2) como se muestra en la figura, aunque ya hay una reserva del 01/03/2020 al 02/03/2020 (cuadro azul) con el mouse, el usuario puede seleccionar una reserva del 29/02/2020 al 04/03 / 2020 (cuadro gris y diálogo). ¿Cómo es esto posible? el procedimiento no pudo aceptar la reserva en ese período porque el servicio ya está ocupado del 01/03/2020 al 02/03/2020. Entonces, ¿cómo arreglas este desastre?
problemas serios con la clase tplann
[b:20mcq8dt]Por primera vez no he resuelto nada, [/b:20mcq8dt] alguien sugirió que la clase tPlann nació para una situación de hotel (también le pido ayuda a Otto) es decir, una habitación está ocupada un día x hasta la noche del día siguiente, pero si está en los campos [b:20mcq8dt]RE> CHECK_IN RE> CHECK_OUT[/b:20mcq8dt] Entro 01-03-2020 y 02/03/2020 Siempre tengo una habitación ocupada el día 02/03, pero en realidad el cliente deja la habitación en la mañana del 2 de marzo porque el cliente se queda solo una noche. pero cuando voy a contar los días [b:20mcq8dt]nDías: = (RE-> CHECK_OUT - RE-> CHECK_IN)[/b:20mcq8dt] los días son 2 y no 1 Puedo intentar establecer [b:20mcq8dt]nDías: = (RE-> CHECK_OUT - RE-> CHECK_IN) -1[/b:20mcq8dt] pero luego tengo una mala investigación si debo verificar si las habitaciones están libres en un intervalo de fechas [b:20mcq8dt]El segundo problema lo resolví [/b:20mcq8dt]con una pequeña función para ver si el servicio está ocupado en ese momento, sin permitir la nueva inserción.
problemas serios con la clase tplann
Hola Silvio En los hoteles no se cuentan lo dias, se cuentan las noches, por eso se cuenta el dia de ingreso (in) y no el de salida (out) La habitación esta disponible desde el out del actual dado que el in del nuevo es posterior. Por eso el dia del in te dan la cena y el dia del out el desayuno. Saludos
problemas serios con la clase tplann
Hola Silvio, te cuento que yo fui el primero que la pidio a daniel como un trabajo... yo la queria solo para un planing de Hotel nada mas saludos
problemas serios con la clase tplann
Saludos Esta clase es de uso libre o forma parte de FW? Si es libre, puedes enviarme sitio de descarga.. Agradecido.
problemas serios con la clase tplann
saludos, estoy tratando de echar a andar tplann tambien pero no se porque pero me da error plan.c, no me compila con ningun C (5.5, 5.82 y 7.3), si alguien la tiene mas actualizada que la de 2013 por favor compartirla si se puede, gracias
problematice on FWPPC help
Hello, I wanted to ask things:1) on windows mobile 6 if the x stopper of a dialog I closed the program?instead on wincee works only closes the dialog concerned2) the possibility exists to hide the key of x Dialog?3) with the emulator to me by an error in the creation file index4) there is the possibility in FWPPC to delete a folder?Thank you in advance
problematice on FWPPC help
xfood,1: Try this example and you will see that closing the dialog, the excution continues normally:[code:3f8rxgrs] #include "fwce&#46;ch" function Main&#40;&#41; local oDlg DEFINE DIALOG oDlg TITLE "Test" SIZE 200, 100 ACTIVATE DIALOG oDlg CENTERED MsgInfo&#40; "execution continues" &#41; return nil [/code:3f8rxgrs]
problematice on FWPPC help
2. Removing the "x":[code:2bslvl88] #include "fwce&#46;ch" #define WS_POPUP 0x80000000 #define WS_VISIBLE 0x10000000 #define WS_BORDER 0x00800000 #define WS_DLGFRAME 0x00400000 function Main&#40;&#41; local oDlg DEFINE DIALOG oDlg TITLE "Test" SIZE 200, 100 STYLE nOr&#40; WS_POPUP, WS_VISIBLE, WS_BORDER, WS_DLGFRAME &#41; ACTIVATE DIALOG oDlg CENTERED MsgInfo&#40; "execution continues" &#41; return nil [/code:2bslvl88]
problematice on FWPPC help
3. Don't create the index in the SD memory card. Copy your application to a Pocket PC folder and execute it there. The SD memory card disk does not work properly always on the emulator.Its a Windows Mobile emulator limitation.
problematice on FWPPC help
4.[code:3de5i0hl] #include "fwce&#46;ch" function Main&#40;&#41; local oDlg DEFINE DIALOG oDlg TITLE "Test" SIZE 200, 100 @ 1, 1 BUTTON "Create folder" SIZE 50, 10 ACTION MsgInfo&#40; lMkDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; @ 2, 1 BUTTON "Remove it" SIZE 50, 10 ACTION MsgInfo&#40; RmDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; ACTIVATE DIALOG oDlg CENTERED return nil #pragma BEGINDUMP #include <hbapi&#46;h> #include <windows&#46;h> LPWSTR AnsiToWide&#40; char * &#41;; HB_FUNC&#40; RMDIR &#41; &#123; LPWSTR pW = AnsiToWide&#40; hb_parc&#40; 1 &#41; &#41;; hb_retl&#40; RemoveDirectory&#40; pW &#41; &#41;; hb_xfree&#40; pW &#41;; &#125; #pragma ENDDUMP [/code:3de5i0hl]
problematice on FWPPC help
thank you very much, I try also 1 point all others are ok
problematice on FWPPC help
mi da questo errore Creating library Menu_gen.lib and object Menu_gen.expMenu_gen.obj : error LNK2019: unresolved external symbol "unsigned short * __cdecl AnsiToWide(char *)" (?AnsiToWide@@YAPAGPAD@Z) referenced in function HB_FUN_RMDIRMenu_gen.exe : fatal error LNK1120: 1 unresolved externals[quote="Antonio Linares":23qniaht]4. [code:23qniaht] #include "fwce&#46;ch" function Main&#40;&#41; local oDlg DEFINE DIALOG oDlg TITLE "Test" SIZE 200, 100 @ 1, 1 BUTTON "Create folder" SIZE 50, 10 ACTION MsgInfo&#40; lMkDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; @ 2, 1 BUTTON "Remove it" SIZE 50, 10 ACTION MsgInfo&#40; RmDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; ACTIVATE DIALOG oDlg CENTERED return nil #pragma BEGINDUMP #include <hbapi&#46;h> #include <windows&#46;h> LPWSTR AnsiToWide&#40; char * &#41;; HB_FUNC&#40; RMDIR &#41; &#123; LPWSTR pW = AnsiToWide&#40; hb_parc&#40; 1 &#41; &#41;; hb_retl&#40; RemoveDirectory&#40; pW &#41; &#41;; hb_xfree&#40; pW &#41;; &#125; #pragma ENDDUMP [/code:23qniaht][/quote:23qniaht]
problematice on FWPPC help
Creating library Menu_gen.lib and object Menu_gen.exp Menu_gen.obj : error LNK2019: unresolved external symbol "unsigned short * __cdecl AnsiToWide(char *)" (?AnsiToWide@@YAPAGPAD@Z) referenced in function HB_FUN_RMDIR Menu_gen.exe : fatal error LNK1120: 1 unresolved externals nmake -fMenu_gen.makFILE MENU_GEN.MAK#Microsoft make sample for FWPPC, (c) FiveTech Software 2005HBDIR=c:\harbour_ceVCDIR=c:\vceFWDIR=c:\fwppc.SUFFIXES: .prg .c .obj .rc .resMenu_gen.exe : Menu_gen.obj Gestmenu.obj Lavoro.obj Menu_gen.res echo Menu_gen.obj gestmenu.obj Lavoro.obj> msvc.tmp echo $(FWDIR)\lib\FiveCE.lib $(FWDIR)\lib\FiveCEC.lib >> msvc.tmp echo $(HBDIR)\lib\rtl.lib >> msvc.tmp echo $(HBDIR)\lib\vm.lib >> msvc.tmp echo $(HBDIR)\lib\gtgui.lib >> msvc.tmp echo $(HBDIR)\lib\lang.lib >> msvc.tmp echo $(HBDIR)\lib\macro.lib >> msvc.tmp echo $(HBDIR)\lib\rdd.lib >> msvc.tmp echo $(HBDIR)\lib\dbfntx.lib >> msvc.tmp echo $(HBDIR)\lib\dbfcdx.lib >> msvc.tmp echo $(HBDIR)\lib\dbffpt.lib >> msvc.tmp echo $(HBDIR)\lib\hbsix.lib >> msvc.tmp echo $(HBDIR)\lib\debug.lib >> msvc.tmp echo $(HBDIR)\lib\common.lib >> msvc.tmp echo $(HBDIR)\lib\pp.lib >> msvc.tmp echo $(HBDIR)\lib\codepage.lib >> msvc.tmp echo $(VCDIR)\lib\arm\coredll.lib >> msvc.tmp echo $(VCDIR)\lib\arm\corelibc.lib >> msvc.tmp echo $(VCDIR)\lib\arm\aygshell.lib >> msvc.tmp echo $(VCDIR)\lib\arm\ws2.lib >> msvc.tmp echo $(VCDIR)\lib\arm\mfcce400.lib >> msvc.tmp echo $(VCDIR)\lib\arm\ole32.lib >> msvc.tmp echo $(VCDIR)\lib\arm\ceshell.lib >> msvc.tmp echo $(VCDIR)\lib\arm\commctrl.lib >> msvc.tmp echo $(VCDIR)\lib\arm\zlibce.lib >> msvc.tmp IF EXIST menu_gen.res echo menu_gen.res >> msvc.tmp SET LIB=$(VCDIR)\lib $(VCDIR)\bin\link @msvc.tmp /nologo /SUBSYSTEM:WINDOWSCE,4.20 /MACHINE:ARM > link.log @type link.log @del menu_gen.c @del Gestmenu.c @del Lavoro.c @del msvc.tmpMenu_gen.obj : Menu_gen.cgestmenu.obj : Gestmenu.cLavoro.obj : Lavoro.cMenu_gen.c : Menu_gen.prggestmenu.c : gestmenu.prgLavoro.c : Lavoro.prgMenu_gen.res : Menu_gen.rc $(VCDIR)\bin\rc -r Menu_gen.rc .prg.c: $(HBDIR)\bin\harbour $< /n /i$(FWDIR)\include;$(HBDIR)\include.c.obj: $(VCDIR)\bin\clarm -TP -W3 -c /DARM /DUNICODE /I$(HBDIR)\include /I$(VCDIR)\include\arm $<
problematice on FWPPC help
hi, removes only empty folders how do I delete the folders full of files?[quote="Antonio Linares":2vnt4g4z]4. [code:2vnt4g4z] #include "fwce&#46;ch" function Main&#40;&#41; local oDlg DEFINE DIALOG oDlg TITLE "Test" SIZE 200, 100 @ 1, 1 BUTTON "Create folder" SIZE 50, 10 ACTION MsgInfo&#40; lMkDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; @ 2, 1 BUTTON "Remove it" SIZE 50, 10 ACTION MsgInfo&#40; RmDir&#40; CurDir&#40;&#41; + "\a_folder" &#41; &#41; ACTIVATE DIALOG oDlg CENTERED return nil #pragma BEGINDUMP #include <hbapi&#46;h> #include <windows&#46;h> LPWSTR AnsiToWide&#40; char * &#41;; HB_FUNC&#40; RMDIR &#41; &#123; LPWSTR pW = AnsiToWide&#40; hb_parc&#40; 1 &#41; &#41;; hb_retl&#40; RemoveDirectory&#40; pW &#41; &#41;; hb_xfree&#40; pW &#41;; &#125; #pragma ENDDUMP [/code:2vnt4g4z][/quote:2vnt4g4z]the problem of compiling I resolved modifying this linedoes not work $(VCDIR)\bin\clarm [b:2vnt4g4z]-TP [/b:2vnt4g4z]-W3 -c /DARM /DUNICODE /I$(HBDIR)\include /I$(VCDIR)\include\arm $<works OK$(VCDIR)\bin\clarm -W3 -c /DARM /DUNICODE /I$(HBDIR)\include /I$(VCDIR)\include\arm $<
problematice on FWPPC help
[quote="xfood":s62v3knz]hi, removes only empty folders how do I delete the folders full of files?[/quote:s62v3knz]Just delete the files before. Use Directory() function to find all the file names.EMG
problematice on FWPPC help
HELLO, you can have a function to FWPPC taking out the folder and all files, including sub folders? Many thanks to all
problematice on FWPPC help
[quote="xfood":3aisbe1z]HELLO, you can have a function to FWPPC taking out the folder and all files, including sub folders? Many thanks to all[/quote:3aisbe1z]This is for FWH. Try to port it to FWPPC.[code:3aisbe1z]#include "Fivewin&#46;ch" #include "Directry&#46;ch" FUNCTION MAIN&#40;&#41; ? LMKDIR&#40; "TEST" &#41; ? MEMOWRIT&#40; "TEST\TEST&#46;TXT", "This is a test" &#41; ? DELETEDIR&#40; "TEST" &#41; RETURN NIL FUNCTION DELETEDIR&#40; cDir &#41; LOCAL aDir, cName LOCAL i aDir = DIRECTORY&#40; cDir + "\*&#46;*", "HRD" &#41; FOR i = 1 TO LEN&#40; aDir &#41; cName = aDir&#91; i, F_NAME &#93; IF cName == "&#46;"; LOOP; ENDIF IF cName == "&#46;&#46;"; LOOP; ENDIF cName = cDir + "" + cName IF "D" $ aDir&#91; i, F_ATTR &#93; IF !DELETEDIR&#40; cName &#41; RETURN &#46;F&#46; ENDIF ELSE IF FERASE&#40; cName &#41; = -1 ? "Impossibile cancellare il file " + cName + "&#46;" RETURN &#46;F&#46; ENDIF ENDIF NEXT IF !LRMDIR&#40; cDir &#41; ? "Impossibile cancellare la cartella " + cDir + "&#46;" RETURN &#46;F&#46; ENDIF RETURN &#46;T&#46;[/code:3aisbe1z]EMG
problematice on FWPPC help
scusami.la funzione LRMDIR esiste un FWPPC?
problematice on FWPPC help
[quote="xfood":1nlyaw6v]scusami. la funzione LRMDIR esiste un FWPPC?[/quote:1nlyaw6v]It seems not. Please use the one wrote by Antonio above in this thread.EMG
problematice on FWPPC help
thanks, tried and ok works <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> p.s. a method for unzippare from FWPPC?grazie,provato e funziona ok <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> p.s. un metodo per unzippare da FWPPC?
problemi con testxbrw.prg
ciao a tutti, ho appena installato fwh 7.12 con harbour e xharobur 1.0 scaricato insieme a fwh. non riesco a compilare testxbrw.prg ne con harbour ne con xharbour mi danno diversi unresolved external in alcune funzioni ads. la libreria rddads.lib è presente in entrambi i compilatori. harbour: _HB_FUN_ADSSETSERVERTYPE _HB_FUN_ADSSETFILETYPE _HB_FUN_ADS ecc. xHarbour: AdsDDAddUserToGroup AdsDDCreate AdsConnect60 AdsRestructureTable ecc grazie, marzio
problemi con testxbrw.prg
You have to comment out ADS. Regards, Otto
problemi di ora
In una dialog io chiedo con la classe TmPicker l'ora Local oOra,aOra:= "00:00" @ 38, 48 TMPicker oOra Var aOra OF oDlg SIZE 40, 12 PIXEL FONT oFont1 UPDATE oOra:nStyle := nOr( oOra:nStyle, 9 )quando crea il get me o crea in questo modo "00:00:00" con i bottoncini tipo spinnernell'archivio me lo salva poi in un formato strano per esempio "194700" ed io poi devo usare transform(left( alltrim((oDTavoli)->Orario),5),"99:99")per visualizzarlo in un tooltip e nel prompt ma il programma me lo fa vedere come ore "19:70"perchè ?
problemi di ora
Prova a scriveretransform(left( alltrim((oDTavoli)->Orario),5),"[b:30whjcjr]@E[/b:30whjcjr] 99:99") lo uso anche per trasformare un numero in stringa "@E 999,999.99"SalutiStefano
problemilla con la ñ
¿Como podriamos capturar la letra ñ en mayúscula? Con el picture "@!" ingreso todas las letras en mayúscula (independientemente si tengo activado ó no el Bloq-Mayús). Menos la ñ. Gracias.
problemilla con la ñ
Holas,, Luego de la captura (ouede ser en el valid) podrias usar esto: Function RevisaLetras(cDat) local nLen, nCont If VALTYPE(cDat) = "A" // es un array nLen := LEN(cDat) FOR nCont := 1 TO nLen IF VALTYPE(cDat[nCont]) = "C" cDat[nCont] := STRTRAN(cDat[nCont],"'","´") cDat[nCont] := STRTRAN(cDat[nCont],"'","´") cDat[nCont] := STRTRAN(cDat[nCont],"ñ","Ñ") ENDIF NEXT nCont Else cDat := STRTRAN(cDat,"'","´") cDat := STRTRAN(cDat,"`","´") cDat := STRTRAN(cDat,"ñ","Ñ") EndIF Return(cDat)
problemilla con la ñ
Uri modifica la clase tget en la METHOD KeyChar yo la modifique asi [code:gdkszf14] if ! Empty&#40; &#58;&#58;cPicture &#41; &#46;and&#46; '@!' $ &#58;&#58;cPicture nKey = Asc&#40; Upper&#40; Chr&#40; nKey &#41; &#41; &#41; //patricio if nKey = 241 // ñ nKey &#58;= 209 // Ñ endif //fin patricio endif [/code:gdkszf14]
problemilla con la ñ
Gracias, voy a intentarlo.
problems after update to MacOs 11.1 (Big Sur)
your app now it doesn't show the message it does not run on macosx 10.13 .in fact it runs , but it comes out immediately without giving any error. ¿?. I have no idea what could be happening. If you want, you can send the whole project so I can compile it here to see if it works. Cheers.
problems after update to MacOs 11.1 (Big Sur)
Hello Antonio and Manuel, After I updates MacOs to 11.1 some functions works different. I have a GET where users can type some characters in and after typing one character (bKeyDown) I launch a functio to search in the database and the focus must be back to the GET, behind the last typed character. In MacOs I used next code that worked perfect, but with MacOs 11.1 the cursor is placed on the first position. [code=fw:2pctd3l5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ nScreenHeight<span style="color: #000000;">-55</span>, nRowPaint <span style="color: #0000ff;">GET</span> oGetZoek <span style="color: #0000ff;">VAR</span> cZoek <span style="color: #0000ff;">OF</span> oWndMain <span style="color: #0000ff;">SIZE</span> <span style="color: #000000;">100</span>, <span style="color: #000000;">25</span><br />    oGetZoek:<span style="color: #000000;">bKeyDown</span> := <span style="color: #000000;">&#123;</span> |nkey| <span style="color: #00C800;">IF</span> <span style="color: #000000;">&#40;</span>nKey < <span style="color: #000000;">127</span> .AND. nKey <> <span style="color: #000000;">13</span>, <span style="color: #000000;">&#40;</span>RK_Search<span style="color: #000000;">&#40;</span>oGetZoek:<span style="color: #000000;">GetText</span>, nSortOrder<span style="color: #000000;">&#41;</span>, oGetZoek:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, oGetZoek:<span style="color: #000000;">SetSel</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">100</span>,<span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>, <span style="color: #000000;">&#41;</span>, <span style="color: #00C800;">IF</span> <span style="color: #000000;">&#40;</span>nKey == <span style="color: #000000;">13</span>, oBrwMain:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#125;</span><br /> </div>[/code:2pctd3l5] It seems the SetSel() does not work anymore. Is there another solution for this. Also, is there a way to compile the program for older OS versions. Now, when I compile the program, users can only use it if they have the same OS version. So users with MacOs 10.15 can't use my newest software anymore. I thought it had to do with the XCode version, but I use version 9.4.1 which is an older version. Normally the programmer can set the version in XCode, but as we use the command prompt there has to be another way.
problems after update to MacOs 11.1 (Big Sur)
René, I am installing Big Sur...
problems after update to MacOs 11.1 (Big Sur)
[quote:1frty2wi]Also, is there a way to compile the program for older OS versions. Now, when I compile the program, users can only use it if they have the same OS version. So users with MacOs 10.15 can't use my newest software anymore. I thought it had to do with the XCode version, but I use version 9.4.1 which is an older version. Normally the programmer can set the version in XCode, but as we use the command prompt there has to be another way.[/quote:1frty2wi] For This you set the framework path to use in your makefile.... add in gcc line -F$(FRAMEPATH) gcc $(PRG_OBJS) -o $(CONT_PATH)/MacOS/Plantenkennis -L$(FIVEMAC_PATH)/lib -lfive -lfivec -L$(HARBOUR_PATH)/lib $(HRBLIBS) -F$(FRAMEPATH) $(FRAMEWORKS) fist define FRAMEPATH ... SDKPATH=$(xcrun --sdk macosx10.13 --show-sdk-path) FRAMEPATH=$(SDKPATH)/System/Library/Frameworks if you use old framework , fist see if exist ... use console and prompt write "xcrun --sdk macos10.13 --show-sdk-path" (for macos10.13 ) if exist you change SDKPATH for your interest .
problems after update to MacOs 11.1 (Big Sur)
Hello Manuel, Thank you for this information. I have added the next lines to my makefile. [code=fw:23lzlx57]<div class="fw" id="{CB}" style="font-family: monospace;"><br />SDKPATH=$<span style="color: #000000;">&#40;</span>/<span style="color: #0000ff;">Library</span>/Developer/CommandLineTools/SDKs/MacOSX10<span style="color: #000000;">.14</span>.sdk<span style="color: #000000;">&#41;</span><br />FRAMEPATH=$<span style="color: #000000;">&#40;</span>SDKPATH<span style="color: #000000;">&#41;</span>/System/<span style="color: #0000ff;">Library</span>/Frameworks<br /> </div>[/code:23lzlx57] It seems I have to use the 10.14 sdk, because the 10.13 could not be found. But how do I check if the program is compatible with MacOs 10.14? I don't have another computer to check this. Is there a command to check the minimum OSversion for apps.
problems after update to MacOs 11.1 (Big Sur)
René, You may install VirtualBox and install OSX 10.14 on it to try your app [url:3hm1jf16]https&#58;//github&#46;com/myspaghetti/macos-virtualbox[/url:3hm1jf16] If you send me your app I will test it on OSX 10.14 <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
problems after update to MacOs 11.1 (Big Sur)
to force minimum version to compile add this flag : -mmacosx-version-min=10.12 ( for 10.12 for sample ) This limit your app to macox10.12 and higher. I use 10.13 if you need to know if an app works, I have no problem testing it. cheers.
problems after update to MacOs 11.1 (Big Sur)
your app not run in my mac . For compile have you used --mmacosx-version-min=10.3 ? This is important . Compile your app with thas flag and forward it to me. your gcc line see : gcc $(PRG_OBJS) -o $(CONT_PATH)/MacOS/Plantenkennis --mmacosx-version-min=10.3 -L$(FIVEMAC_PATH)/lib -lfive -lfivec -L$(HARBOUR_PATH)/lib $(HRBLIBS) -F$(FRAMEPATH) $(FRAMEWORKS)
problems after update to MacOs 11.1 (Big Sur)
René, Please try this little change in function GetSetSelRange() in [url:2duciog6]https&#58;//github&#46;com/FiveTechSoft/fivemac/blob/master/source/winapi/gets&#46;m[/url:2duciog6] NSTextField * get = ( NSTextField * ) hb_parnll( 1 ); // this was hb_parnl( 1 ) please notice the double 'll' many thanks for your feedback
problems after update to MacOs 11.1 (Big Sur)
Hello Antonio, Today I updated my OS to MacOs 11.3.1 and the problem with the setting SetSel() is back again <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Any suggestions?
problems after update to MacOs 11.1 (Big Sur)
Hello Antonio, I have managed to solve the problem with the GET where the characters were shown in the opposite order. What I did was that everytime the user enters a character in the GET there was a function launched that searched in a browse and placed the pointer at the right position. I also made the browse active and after that the GET got active. Now I don't make the browse active, I only place the pointer at the right position. And now everything works well.
problems after update to MacOs 11.1 (Big Sur)
very good
problems creating UNICODE directories
i want to create directories with unicode characters, but none of the functions tried works well. lMkDir(), MakeDir() fwh1507, bcc7, xHarbour 1.2.3 bcc7_20150603 DLL32 Function apiCreateDir(lpPathName AS STRING, lpSecurityAttributes AS LPSTR) AS LONG PASCAL FROM "CreateDirectoryW" LIB "kernel32.dll" apiCreateDir("c:\Dir ? Dir") creates a directory with chinese character in the directory of exe file instead of "c:\Dir ? Dir" with infinite symbol. CreateDirectoryW of kernel32.dll is declared like unicode version. any suggestion? marzio
problems creating UNICODE directories
With Harbour (but not with xHarbour) [code=fw:39tkhizj]<div class="fw" id="{CB}" style="font-family: monospace;">HB_SETCODEPAGE<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"UTF8"</span> <span style="color: #000000;">&#41;</span><br />MAKEDIR<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"??????"</span> <span style="color: #000000;">&#41;</span><br /> </div>[/code:39tkhizj] Worked for me. We shall now enhance FW functions to work with Unicode names
problems creating UNICODE directories
You can use these functions to create unicode folders. Works with Harbour and xHarbour [code=fw:1njp5j7z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><br />LPWSTR &nbsp; fw_parWide<span style="color: #000000;">&#40;</span> int iParam <span style="color: #000000;">&#41;</span>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #B900B9;">// source: msgsapi.c</span><br /><br /><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">&#40;</span> LMKDIRW <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;BOOL bRet;<br /><br />&nbsp; &nbsp;LPWSTR pW;<br /><br />&nbsp; &nbsp;pW = fw_parWide<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp;bRet = CreateDirectoryW<span style="color: #000000;">&#40;</span> pW, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp;hb_xfree<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#40;</span> void * <span style="color: #000000;">&#41;</span> pW <span style="color: #000000;">&#41;</span>;<br /><br />&nbsp; &nbsp;hb_retl<span style="color: #000000;">&#40;</span> bRet <span style="color: #000000;">&#41;</span>;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#include</span> <shlobj.h><br /><br /><span style="color: #00C800;">HB_FUNC</span> <span style="color: #000000;">&#40;</span>LMKFULLPATHW<span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;BOOL bRet;<br /><br />&nbsp; &nbsp;LPWSTR pW;<br /><br />&nbsp; &nbsp;pW = fw_parWide<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp;bRet = <span style="color: #000000;">&#40;</span> SHCreateDirectoryExW<span style="color: #000000;">&#40;</span> <span style="color: #00C800;">NULL</span>, pW, <span style="color: #00C800;">NULL</span> <span style="color: #000000;">&#41;</span> == <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp;hb_xfree<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#40;</span> void * <span style="color: #000000;">&#41;</span> pW <span style="color: #000000;">&#41;</span>;<br /><br />&nbsp; &nbsp;hb_retl<span style="color: #000000;">&#40;</span> bRet <span style="color: #000000;">&#41;</span>;<br /><br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#pragma</span> ENDDUMP<br />&nbsp;</div>[/code:1njp5j7z] lMkDirW() for relative path lMkFullPathW() for full path You need any FWH version during 2016
problems creating UNICODE directories
many thanks for your reply! i have tried: HB_SETCODEPAGE( "UTF8" ) MAKEDIR( "??????" ) but it doesn't work. for the second soution that require fw_parWide() i shall update to fwh 2016 version. thanks, marzio
problems creating UNICODE directories
[quote:qgcl4yax]i have tried: HB_SETCODEPAGE( "UTF8" ) MAKEDIR( "??????" ) [/quote:qgcl4yax] As I said, this work only with Harbour. Not with xHarbour. Even normal DIRECTORY() function works with Unicode names in Harbour but not with xHarbour. If you plan to use Unicode, it is worth considering upgrading FWH. After reading your post, we are planning to enhance FWH's directory functions to work with Unicode names.
problems creating UNICODE directories
[quote="nageswaragunupudi":2z32mrak][quote:2z32mrak]i have tried: HB_SETCODEPAGE( "UTF8" ) MAKEDIR( "??????" ) [/quote:2z32mrak] As I said, this work only with Harbour. Not with xHarbour. Even normal DIRECTORY() function works with Unicode names in Harbour but not with xHarbour. If you plan to use Unicode, it is worth considering upgrading FWH. After reading your post, we are planning to enhance FWH's directory functions to work with Unicode names.[/quote:2z32mrak] How about it support xHarbour? I'm use xHarbour now.
problems creating UNICODE directories
i have tried: HB_SETCODEPAGE( "UTF8" ) MAKEDIR( "??????" ) with harbour 3.0.0, borland c++7 without fivewin but i obtain a directory like this: తెలుగు what is wrong? thanks.
problems creating UNICODE directories
You can view the folder name correctly with FileExplorer and also with Harbour's DIRECTORY() function. Not xHarbour
problems creating UNICODE directories
i see the wrong directory with file Explorer and with total commander.
problems creating UNICODE directories
To start with, I have a directory c:\fwh\test, which is empty. Now I ran this program, built with Harbour and FWH [code=fw:cydixzjh]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   FW_SetUnicode<span style="color: #000000;">&#40;</span> .t. <span style="color: #000000;">&#41;</span><br />   HB_SETCODEPAGE<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"UTF8"</span> <span style="color: #000000;">&#41;</span><br />   MAKEDIR<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"c:<span style="color: #000000;">\f</span>wh<span style="color: #000000;">\t</span>est<span style="color: #000000;">\"</span> + "</span>??????<span style="color: #ff0000;">" )<br />   XBROWSER DIRECTORY( "</span>c:\fwh\test\*.*<span style="color: #ff0000;">", 'D' )<br /><br />return nil<br /> </span></div>[/code:cydixzjh] Result: [url=https&#58;//imageshack&#46;com/i/po1z84JCp:cydixzjh][img:cydixzjh]http&#58;//imagizer&#46;imageshack&#46;us/v2/xq90/924/1z84JC&#46;png[/img:cydixzjh][/url:cydixzjh] You can see the unicode name in the xbrowse (3rd row) Screen shot from my File Explorer [url=https&#58;//imageshack&#46;com/i/pnRIHRDup:cydixzjh][img:cydixzjh]http&#58;//imagizer&#46;imageshack&#46;us/v2/xq90/923/RIHRDu&#46;png[/img:cydixzjh][/url:cydixzjh] You can not expect TotalCommander to display Unicode names.
problems creating UNICODE directories
can you try your example without fiwewin? i can confirm you that total commander visualizes correctly files and directories in unicode format.
problems creating UNICODE directories
i have inserted FW_SetUnicode( .T. ) supported by fwh1507 but i have linking error: Error: Unresolved external '_HB_FUN_HB_BLEN' referenced from T:\MARZIO\WINCLIP\FWH1507\LIB\FIVEH.LIB|OLEFUNCS Error: Unresolved external '_hb_extIsNil' referenced from T:\MARZIO\WINCLIP\FWH1507\LIB\FIVEHC.LIB|RICHEDIT Error: Unresolved external '_HB_FUN___OLEVARIANTNEW' referenced from T:\MARZIO\WINCLIP\FWH1507\LIB\FIVEH.LIB|ADOFUNCS Error: Unable to perform link the library hbwin is linked. which library is missing? echo %bcdir%\lib\c0w32.obj + > b32.bc echo %1.obj, + >> b32.bc echo %1.exe, + >> b32.bc echo %1.map, + >> b32.bc echo %fwh%\lib\FiveH.lib + >> b32.bc echo %fwh%\lib\FiveHC.lib + >> b32.bc echo %fwh%\lib\libmysql.lib + >> b32.bc echo %fwh%\lib\dolphin.lib + >> b32.bc echo %hdirl%\hbwin.lib + >> b32.bc echo %hdirl%\gtgui.lib + >> b32.bc echo %hdirl%\gtwin.lib + >> b32.bc echo %hdirl%\hbrtl.lib + >> b32.bc echo %hdirl%\hbvm.lib + >> b32.bc echo %hdirl%\hblang.lib + >> b32.bc echo %hdirl%\hbmacro.lib + >> b32.bc echo %hdirl%\hbrdd.lib + >> b32.bc echo %hdirl%\rddntx.lib + >> b32.bc echo %hdirl%\rddcdx.lib + >> b32.bc echo %hdirl%\rddfpt.lib + >> b32.bc echo %hdirl%\hbsix.lib + >> b32.bc echo %hdirl%\hbdebug.lib + >> b32.bc echo %hdirl%\hbcommon.lib + >> b32.bc echo %hdirl%\hbpp.lib + >> b32.bc echo %hdirl%\hbcpage.lib + >> b32.bc echo %hdirl%\hbcplr.lib + >> b32.bc echo %hdirl%\hbct.lib + >> b32.bc echo %hdirl%\hbpcre.lib + >> b32.bc echo %hdirl%\xhb.lib + >> b32.bc echo %hdirl%\hbziparc.lib + >> b32.bc echo %hdirl%\hbmzip.lib + >> b32.bc echo %hdirl%\hbzlib.lib + >> b32.bc echo %hdirl%\minizip.lib + >> b32.bc echo %hdirl%\png.lib + >> b32.bc echo %hdirl%\hbusrrdd.lib + >> b32.bc echo %bcdir%\lib\cw32.lib + >> b32.bc echo %bcdir%\lib\uuid.lib + >> b32.bc echo %bcdir%\lib\import32.lib + >> b32.bc echo %bcdir%\lib\ws2_32.lib + >> b32.bc echo %bcdir%\lib\psdk\odbc32.lib + >> b32.bc echo %bcdir%\lib\psdk\nddeapi.lib + >> b32.bc echo %bcdir%\lib\psdk\iphlpapi.lib + >> b32.bc echo %bcdir%\lib\psdk\msimg32.lib + >> b32.bc echo %bcdir%\lib\psdk\psapi.lib + >> b32.bc echo %bcdir%\lib\psdk\rasapi32.lib + >> b32.bc echo %bcdir%\lib\psdk\gdiplus.lib + >> b32.bc echo %bcdir%\lib\psdk\shell32.lib, >> b32.bc IF EXIST %1.res echo %1.res >> b32.bc if %GT% == gtwin %bcdir%\bin\ilink32 -Gn -Tpe -s @b32.bc IF ERRORLEVEL 1 GOTO LINKERROR if %GT% == gtgui %bcdir%\bin\ilink32 -Gn -aa -Tpe -s @b32.bc
problems creating UNICODE directories
We provided Unicode support from 15.09 onwards. [quote:1jpjgres]How about it support xHarbour? I'm use xHarbour now. [/quote:1jpjgres] We keep extending support for Unicode in FWH dir functions. But for full implementation Harbour is a better choice. In FWH 16.04 new functions lIsDirW(), lMkDirW(), FileW(), lRmDirW(), lChDirW() provide Unicode support. In my view it is a good idea to maintain file-system in English and handle data/contents in Unicode.
problems creating UNICODE directories
i have resolved substituting Harbour 3.0 with [b:361234dq]Harbour 3.2 [/b:361234dq][b:361234dq]Now the creation of the directories with unicode characters works fine!! [/b:361234dq](hb3.2, fwh1507, bcc7) thanks.
problems in Picture clause of SAY command
@ n,n SAY nVar Picture "999,999,999.99" in the version fwh 8.12 picture in SAY works fine, i have tried fwh 9.03 and the follow line visualizes all the commas also with few numbers. the E operator doesn't work, with the Z operator the box is blank. i have used xHarbour 1.21 marzio
problems in Picture clause of SAY command
Marzio, Please make this change In Class TSay Method Initiate: [code=fw:3kgv1cf0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   ...<br />   <span style="color: #00C800;">if</span> ::<span style="color: #000000;">cCaption</span> != <span style="color: #00C800;">nil</span> <span style="color: #B900B9;">// don't use Empty() here or blank texts will not show</span><br />      <span style="color: #B900B9;">// ::SetText( ::cCaption )   previous code</span><br />      SetWindowText<span style="color: #000000;">&#40;</span> ::<span style="color: #000000;">hWnd</span>, cText <span style="color: #000000;">&#41;</span>  <span style="color: #B900B9;">// new</span><br />   <span style="color: #00C800;">else</span> <br />      ::<span style="color: #000000;">cCaption</span> = ::<span style="color: #000000;">GetText</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <br />   <span style="color: #00C800;">endif</span> <br />   ...<br /> </div>[/code:3kgv1cf0]