topic
stringlengths
1
63
text
stringlengths
1
577k
error interno FWH
Antonio, Yo siempre tengo una WNDMAIN del programa principal. En ella tengo un Menú, y en dicho menú está el listado. Normalmente el código funciona bien. En ese 2% falla. También a otros les sucede lo mismo. En mi caso, doy fe que Wndmain está activa y funcionando. ¿Por qué alguna vez entonces FWH entiende que Wnd...
error interno FWH
Supongo que en ese 2% la data oWnd ha sido asignada a nil, pero la VALIDación aún no ha terminado, posiblemente un SysRefresh() eliminase esos casos. Algún proceso ha podido consumir un tiempo algo excesivo. En todo caso, la modificación que te he indicado, debería evitar ese 2% de errores que comentas <!-- s:-) --><i...
error interno FWH
me parece que ::oWnd : NIL debe se la ultima linea antes del true final. ::oImageList es un objeto que por lo general esta asociado a un hWnd, y pienso en este caso que debe estar usando el oWnd:hWnd , y al ser oWnd ya nil, puede reventar. [code=fw:txmu5gwr]<div class="fw" id="{CB}" style="font-family: monospace;"><br...
error interno FWH
Antonio, Ya he dado con la causa del problema, resulta que los usuarios cierran la WNDMAIN con el REPORT abierto. ¿Hay alguna forma de evitarlo?. Muchas gracias.
error interno FWH
Elvira, Usa un VALID en la ventana principal, que devuelva .F. cuando el reporte esté mostrado
error interno FWH
[quote="carlos vargas":5bkjumcm]me parece que ::oWnd : NIL debe se la ultima linea antes del true final. ::oImageList es un objeto que por lo general esta asociado a un hWnd, y pienso en este caso que debe estar usando el oWnd:hWnd , y al ser oWnd ya nil, puede reventar. [code=fw:5bkjumcm]<div class="fw" id="{CB}" sty...
error interno FWH
Antonio, ¿Y cómo puedo saber cuándo el informe se está mostrando?. Por ejemplo, en samples\report.prg [code=fw:car0xotw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Testing FiveWin built-in report engine and print preview</span><br /><br /><span style="color: #00D7D7;">#...
error interno FWH
Esta, por ejemplo, sería una forma: [code=fw:t72hik5k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Testing FiveWin built-in report engine and print preview</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br ...
error interno FWH
Antonio, ¿Y no podría modificarse rpreview.prg para que si desaparece oWIndMain se cierre el Preview sin dar el error?. Error BASE/1004 Message not found: NIL:HWND Gracias.
error interno FWH
Podriamos modificar de forma automática el VALID de la ventana principal, pero imagino que esto puede resultar un problema para ciertas aplicaciones que hagan determinadas cosas en el VALID de la ventana principal. Vamos a pensarlo y ver si es algo simple o puede complicarse...
error interno FWH
Antonio, En Facturaplus lo que hacen es al lanzar el Preview ocultar la ventana principal y cuando se sale volver a mostrarla. Creo que es muy buena idea. Cualquier programa hecho con FWH siempre casca cerrando la ventana principal cuando está abierto el preview, por ejemplo el GST Rotor de Apolosoftware. Un saludo
error interno FWH
Es otra opción, puedes hacerlo asi: oWnd:Hide() ejecutas el preview oWnd:Show()
error interno FWH
Antonio, En rpreview.prg de hecho ya lo tenías antes en parte: if oDevice:lPrvModal .and. oWndMain != nil oWndMain:Hide() Si hago lo de Hide and Show ya no hay forma de que pueda cascar. Muchas gracias. Un saludo
error interno FWH
Si, de hecho es para cuando se usa el PREVIEW en modo MODAL: PRINT oPrn PREVIEW MODAL si no se especifica se entiende que se quiere que se pueda acceder a todas las ventanas abiertas de la aplicación
error interno FWH
[quote="elvira":34iwj3gu]Antonio, En rpreview.prg de hecho ya lo tenías antes en parte: if oDevice:lPrvModal .and. oWndMain != nil oWndMain:Hide() Si hago lo de Hide and Show ya no hay forma de que pueda cascar. Muchas gracias. Un saludo[/quote:34iwj3gu] El problema si lo ocultas con Hide(), qued...
error justificado de columnas con xbrowse
Tengo fwh 8.06 En un programa defino un xbrowse, al cual cambio las columnas según se pulse uno u otro botón. en el caso de abajo, la columna 5 aparece justificada a la derecha, a pesar de que pongo está línea vv:oBrw2:aCols[5]:nDataStrAlign:=0 (izquierda) y he comprobado que no la piso con otro valor más adelante. ¿...
error justificado de columnas con xbrowse
Me sigue fallando la justificación de las columnas en Xbrowse. Un código tan sencillo como este me justifica la segunda columna como centrada, en lugar de a la izquierda. Tengo la versión 8.06 de fwh. ¿Había algún bug en esa versión? Muchas gracias. Alvaro vv:oBrw := TXBrowse():New( vv:oWnd2 ) modifica:={ || nil } me...
error justificado de columnas con xbrowse
Saludos Alavaro Creo que si era un problema minimo si mal no recuerdo esta era la solucion... en el metodo aJustify cambiar la linea j := Min( 3, Max( 1, j ) ) por esta j := Min( 3, Max( 0, j ) ) solo cambiar un "1" por un "0"
error justificado de columnas con xbrowse
Hola Daniel, Gracias por tu respuesta. Sigue sin funcionar. A ver si encuentro cual fue la modificación. Gracias. Alvaro
error justificado de columnas con xbrowse
Alvaro... Estas uniendo el xbrowse.prg como un archivo mas de tu proyecto?
error justificado de columnas con xbrowse
Si, modifico el xbrowse.prg como me has dicho, creo el obj y lo uno. Ya he modificado otras clases. Gracias. Alvaro
error justificado de columnas con xbrowse
alvaro Podria ayudarte, eviame la clase a <!-- e --><a href="mailto:danielgarciagil@gmail.com">danielgarciagil@gmail.com</a><!-- e -->
error justificado de columnas con xbrowse
Alvaro... Recibi correo he realizado algunas pruebas y no logro generar el error q nos comentas, el texto me sale alineado perfectamente, te envio a tu email el test... trata de usar esta via sin necesidad de cambiar la clase oCol:nDataStyle = oCol:DefStyle( AL_LEFT, .F. )
error justificado de columnas con xbrowse
Hola Daniel. Ya funciona. He usado: oCol:nDataStyle := oCol:DefStyle( AL_LEFT, .F. ) en lugar de: ocol:nDataStrAlign := AL_LEFT Muchas gracias. Alvaro
error languagesettings ToExcel
Hola Foro, me aparece este error cuando quiero exportar a excel un xbrowse. Lo que me llama la atención es que se produce cuando agrego el picture a los campos del xbrowse, si no defino los pictures no me da error. A continuación el código: [code=fw:2lsd5etc]<div class="fw" id="{CB}" style="font-family: monospace;"> <s...
error languagesettings ToExcel
error languagesettings ToExcel??? Cual é el error? Salu2
error link per ado
salve a tutti, sto cercando di usare ado per aprire un file mdb di access. ho inserito all'inizio del file prg: #include "adordd.ch" REQUEST ADORDD però al link ottengo l'errore: Error: Unresolved external '_HB_FUN_ADORDD' referenced from ... Error: Unresolved external '_HB_FUN_HB_ADOSETLOCATEFOR' referenced from ... ...
error link per ado
Per usare ADORDD ti serve adordd.prg. Comunque per usare ADO non hai bisogno necessariamente di ADORDD. Trovi molti esempi di ADO (non RDD) qui nel forum o in comp.lang.xharbour, molti dei quali miei. EMG
error link per ado
grazie Enrico, sono riuscito a linkare adordd.prg ed ora riesco ad acceredere al file mdb però non riesco a creare un indice sulla chiave ID dei records del dbase. USE (cFileMdb) VIA "ADORDD" TABLE (cTableMdb) INDEX "ID" NEW EXCLUSIVE INDEX ON field->ID TO indice mi da errore funzione non consentita in ado. come crea...
error link per ado
Non so se gli indici siano supportati in ADORDD. Anzi, in realtà temo che l'ADORDD stesso sia un progetto incompleto e ormai abbandonato. Ci sono, secondo me, troppe differenze tra SQL e DBF per sperare di fare un RDD per l'SQL che sia perfettamente compatibile con tutte le funzioni per i DBF. Ad esempio, in un databas...
error link per ado
aprendo il file con ourdbu nella lista degli indici esiste la primarykey ma io non so come attivarla. accedo già a questo file mdb con oDbc ed attivo la primary key con AddPrimaryKey("ID") ma volevo evitare di dover creare manualmente in odbc il "DSN di sistema". con adordd riesco a fare tutto quello che mi serve, solo...
error link per ado
Vai nella ricerca avanzata di questo forum e cerca ADO e Enrico Maria Giordano come autore. Vai anche in google groups e cerca xHarbour ADO. EMG
error link per ado
grazie ho trovato gli esempi. sono anche riuscito ad ordinare il mio file mdb inserendo la stringa sql con order by: USE (cFileMdb) VIA "ADORDD" QUERY "SELECT * FROM mytable ORDER BY ID" uno dei campi dell'archivio ha un nome con uno spazio: "Book ID", ho tentato nella select: "SELECT 'Book ID' as BookID, AltriCampi ...
error link per ado
Metti il nome tra parentesi quadre [code=fw:1m3yyrz2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">SELECT</span> <span style="color: #000000;">&#91;</span>Book <span style="color: #0000ff;">ID</span><span style="color: #000000;">&#93;</span> etc</div>[/code:1m3yyrz2]
error linking for visualfw.mac
when compiling and linking visualfw.mak those errors appears unresolved external _pcre_config, -pcre_stack_malloc, pcre_stack_free referenced form c:\harbour\lib\hbrl.lib|hbregex can you help me many tanks
error linking for visualfw.mac
c:\harbour\lib\hbrtl.li
error linking for visualfw.mac
Richard, Please link Harbour hbpcre.lib also
error log
suggestion for error.log Hello Antonio, would you be so kind to insert a space before and after the line number of the error. This way one could click on the line and copy the line number to clipboard for inserting It to the function “Goto line” in your editor without removing the brackets. Thanks in advance Otto [co...
error mail preview windows 10 ultima actualizacion. Solucion
Hola al actualizar a la última compilación de windows, me ocurre : - Desde rpreview.prg de fwh 1509 cuando le doy a enviar por email, no se abre la ventana del outlook para poder enviar el email. si paso fichero a word, excel o pdf perfecto, pero al intentar enviar el email no pasa nada, probando con distintas compati...
error mail preview windows 10 ultima actualizacion. Solucion
Solucionado. Simplemente con reparar la instalación de office ha vuelto a funcionar. Espero que os sirva.
error mouse wheel on xbrowse
This error in the image bellow, occurs when you scroll the mouse wheel over the xbrowse. What can it be? [img:1pjsb59a]http&#58;//www&#46;acessosoft&#46;com&#46;br/img/45&#46;png[/img:1pjsb59a]
error moving a bitmap or Image
why if I change the size of Image or bmp fwh create black background ? see it pls : [img:1xbfgr7b]http&#58;//www&#46;iispascalcomiforti&#46;it/wp-content/uploads/2016/12/error&#46;jpg[/img:1xbfgr7b] the code [code=fw:1xbfgr7b]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #0000ff;"...
error moving a bitmap or Image
Download : <!-- m --><a class="postlink" href="http://www.pflegeplus.com/DOWNLOADS/Imgdesign.zip">http://www.pflegeplus.com/DOWNLOADS/Imgdesign.zip</a><!-- m --> [img:3fpz41ub]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Imgdesign&#46;jpg[/img:3fpz41ub] best regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_bigg...
error moving a bitmap or Image
[code=fw:17enn83e]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</sp...
error moving a bitmap or Image
[img:13msmrf7]http&#58;//i&#46;imgur&#46;com/iTp52mf&#46;png[/img:13msmrf7] Regards.
error msgbar
Antonio:Cuando haces doble click en la msg bar, en el título de la ventana principal pone (32 bits) Mem used Mem Max Resources, etc. pero los valores no son correctos (en Mem pone siempre 0 y en Resources 90).Esto debería ser arreglado o eliminado, ya que confunde. Creo que recientemente alguien publicó un post de cómo...
error mysql y xbrowse ??
Hola: estoy compilando una aplicación con tmysql y xbrowse, al presionar cualquier tecla en el browse marca este error. Application =========== Path and name: c:\wizard\wizard.Exe (32 bits) Size: 727,040 bytes Time from start: 0 hours 0 mins 18 secs Error occurred at: 14-10-2009, 20:13:33 Error desc...
error mysql y xbrowse ??
Mauricio, Esta es nuestra propuesta: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=88423#p88423">viewtopic.php?p=88423#p88423</a><!-- l --> Ahora habria que modificar tu código para que verifique este valor en oBrw:nDataType
error mysql y xbrowse ??
Antonio, Gracias, es mas facil resolverlo si le hechamos monton <!-- s:P --><img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz" /><!-- s:P --> Saludos, Mauricio
error mysql y xbrowse ??
Mauricio, William publicó los cambios para xbrowse.prg y TMySQL <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=88481#p88481">viewtopic.php?p=88481#p88481</a><!-- l --> Puedes por ...
error no recuperable 650: fallo de la pila del procesador
Por que razon me sale este error al pinchar en una caja de dialogo clipper internal error movewindow(0) error no recuperable 650: fallo de la pila del procesador
error no recuperable 650: fallo de la pila del procesador
Javi, Que valores de stacksize y heapsize estás usando en el fichero LNK de Blinker ? Tambien puede tratarse de un error recursivo que tengas en la función, y que haga que la aplicación realice un bucle hasta que se queda sin pila (stack).
error no recuperable 650: fallo de la pila del procesador
UTILIZO MICROSOFT LINK 5.60 UN SALUDO
error no recuperable 650: fallo de la pila del procesador
Javi, Prueba a aumentar de 1000 en 1000 el valor que se le pasa al parámetro /se:2000 (link /se:2000 /NOE ...) ¿ Puedes conseguir Blinker ?
error no recuperable 650: fallo de la pila del procesador
Saludos Javi, ayer me paso esto por primera vez, estoy siguiendo el consejo de Antonio, aumentar el stacksize y el heapsize. Ahora estan a 30000 y el heapsize a 2048 ... ya te comentare que tal va ... Nos leemos!!
error no recuperable 650: fallo de la pila del procesador
Chantiel, 30000 es un valor muy alto. Intenta bajarlo.
error no recuperable 650: fallo de la pila del procesador
Hecho, ahora parece que la cosa mejora. Voy a revisar si hay alguna funcion que este funcionando de forma recursiva. Nos leemos!!
error on NToCDOW
i make a function to converte date string into italian date string [code=fw:l58w4c4f]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> cf<span style="color: #000000;">&#40;</span>dTemp<span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="...
error on NToCDOW
Wrong caption. There is no error with NToCDOW(). The error is with your program. Please do not use wrong captions. You need to use [code=fw:jl6ct74s]<div class="fw" id="{CB}" style="font-family: monospace;"><br />REQUEST HB_Lang_IT<br />REQUEST HB_CODEPAGE_ITWIN<br /><br />HB_LangSelect<span style="color: #000000;">&...
error on NToCDOW
Rao, sorry it give bad here [img:1hbjsrc9]https&#58;//s8&#46;postimg&#46;cc/3shy2ib11/image&#46;png[/img:1hbjsrc9]
error on NToCDOW
Silvio, FWDtPick also displays Italian weekdays and months. If you have FWH 1805, this program:
error on btnbmp ...activate
this is the error [code=fw:cp27tqnu]<div class="fw" id="{CB}" style="font-family: monospace;">Application<br />===========<br />&nbsp; &nbsp;Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\Users\silvio\Desktop\Release_TPlan\Numeri_Ombrelloni_sezione\test.Exe <span style="colo...
error on btnbmp ...activate
The codeblock oBtnNum:oPopUp must return a MENU object
error on btnbmp with fwh 21.04
[code=fw:1pgjl52z]<div class="fw" id="{CB}" style="font-family: monospace;"> @ oBrw:<span style="color: #000000;">nBottom</span><span style="color: #000000;">+2</span>, oBrw:<span style="color: #000000;">nWidth</span><span style="color: #000000;">-20</span> <span style="color: #0000ff;">BTNBMP</span> aBtnBrow<span styl...
error on btnbmp with fwh 21.04
ACTION ::ShowPopUp(...) is working here. Please make sure the codeblock returns PopupMenu object
error on btnbmp with fwh 21.04
Thank you Silvio, This is what I was looking for BtnBmp class.
error on btnbmp with fwh 21.04
Silvio, for ACTIONS in BUTTONS, try with [code=fw:2rfoy07w]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">local</span> oThis &nbsp; &nbsp;:= <span style="color: #00C800;">Self</span><br /><br />@ oBrw:<span style="color: #000000;">nBottom</span><span style="color: #000000...
error on btnbmp with fwh 21.04
[quote="cnavarro":2loxxrfx]Silvio, for ACTIONS in BUTTONS, try with [code=fw:2loxxrfx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">local</span> oThis    := <span style="color: #00C800;">Self</span><br /><br />@ oBrw:<span style="color: #000000;">nBottom</span><span styl...
error on btnbmp with fwh 21.04
sometimes is go out the error , I'am trying many times the function return omenu obj
error on btnbmp with fwh 21.04
[quote="nageswaragunupudi":30glzjt9][quote="cnavarro":30glzjt9]Silvio, for ACTIONS in BUTTONS, try with [code=fw:30glzjt9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">local</span> oThis    := <span style="color: #00C800;">Self</span><br /><br />@ oBrw:<span style="color...
error on btnbmp with fwh 21.04
He is calling BtnBmp's ShowPopup method only. It should work if using unmodified libraries and the codeblock returns a popup menu object.
error on btnbmp with fwh 21.04
Nages, Cristobal, this is very strange !!!! I am trying to intercept the error again but it does not always come out and then this evening a strange very strange thing happened because I called a function which is on line 128 and instead made a mistake in another function which is on line 154 I'll explain with mor...
error on compilation c++
Until now I insert the code of ICON_EXEREAD on gdiplus.cpp and I can compile it but now I wish not recompile the gdiplus.cpp file and I wish insert the code of ICON_EXEREAD into my test.prg I try and I have this error [code=fw:257hw0ub]<div class="fw" id="{CB}" style="font-family: monospace;">Progetto: <sp...
error on compilation c++
Silvio, Please post here the complete code of test.prg
error on compilation c++
Manuel sad me I cannot publish it on forum because is c++ source code How resolve? [code=fw:il1hw1xo]<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=...
error on compilation c++
[url:3ha7gqx5]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?p=91422[/url:3ha7gqx5]
error on compilation c++
for bcc7 in prg file .... [code=fw:3io5cckg]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//------------------------------------------------------------------------------</span><br /><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br />    <span style=...
error on compilation c++
Manuel Now is compiled and run ok ...thanks
error on createobject
function ReadMessage() local HData,cr local odoc := CreateObject( "MSXML2.DOMDocument" ) local ohttp := CreateObject( "MSXML2.XMLHTTP" ) local cTOKEN:="1206646388:AAEr-QL8hSYNAJ3dNx2k6w7u0nEAOWld2Po" local URL:="https://api.telegram.org/bot"+cTOKEN+"/getUpdates" ohttp:Open( "POST" ,URL, .F. ) oHttp:SetReq...
error on createobject
I am not sure it is the error, but on header you send [b:1qicvgaw]Content-type[/b:1qicvgaw] equals [b:1qicvgaw]application/json[/b:1qicvgaw] then send an xml. Why you load an xml inside a document then send the xml properties instead of send your xml directly? The xml is only [code=fw:1qicvgaw]<div class="fw" id="{CB}...
error on createobject
[quote="AntoninoP":29skh4r3]I am not sure it is the error, but on header you send [b:29skh4r3]Content-type[/b:29skh4r3] equals [b:29skh4r3]application/json[/b:29skh4r3] then send an xml. Why you load an xml inside a document then send the xml properties instead of send your xml directly? The xml is only [code=fw:29skh...
error on download
[b:3tlkr9lx]To download a file from Internet[/b:3tlkr9lx] I used this function [b:3tlkr9lx]URLDownloadToFileA[/b:3tlkr9lx] Now the file not is downloaded I'm using Windows Seven Home Premium or Windows 10 Home If I test the url where I must download the file it run ok , I can download the file but from fivrewin ...
error on download
Silvio. Intenta activando -> Usa SSL 3.0 Saludos
error on download
Simples... [code=fw:nyaol4p7]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00D7D7;">#Define</span> URL_LOTTO <span style="color: #ff0000;">"https://www.lottomatica.it/STORIC...
error on download
[quote="karinha":rur9akjd]Simples... [code=fw:rur9akjd]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00D7D7;">#Define</span> URL_LOTTO <span style="color: #ff0000;">"https:/...
error on download
CALLDLL()? No funciona?
error on download
Intenta asi con Harbour, no uso. No puedo ayudar. [code=fw:6hzfuhpl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">...
error on download
[url:11bdguod]http&#58;//www&#46;pctoledo&#46;com&#46;br/forum/viewtopic&#46;php?f=4&t=16780[/url:11bdguod]
error on get value compiling from clipper
on oldest clipper function I have [b:f3vztuov] If ValType(uVar)<>"L" oEdit:Value:=uVar Endif [/b:f3vztuov] and [b:f3vztuov] If lOk If ValType(uVar)<>"L" uVar:=oEdit:Value Else uVar:=oEdit:lChecked Endif[/b:f3vztuov] How I can make on fwh ?
error on get value compiling from clipper
Dear Mr.Silvio, What is the error that you are getting ? Instead of [code=fw:392fq8gs]<div class="fw" id="{CB}" style="font-family: monospace;">oEdit:<span style="color: #000000;">Value</span>:=uVar</div>[/code:392fq8gs] Try [code=fw:392fq8gs]<div class="fw" id="{CB}" style="font-family: monospace;">oEdit:<span sty...
error on get value compiling from clipper
I try with varput and varget and also with oEdit:oGet:=uVar not run !!! If I try with If ValType(uVar)<>"L" oEdit:varput(uVar) Endif MAKE THIIS ERROR Application =========== Path and name: C:\work\prg\fsdi2006\prg\testhil.Exe (32 bits) Size: 2,116,608 bytes Time from start: ...
error on get value compiling from clipper
Dear Mr.Silvio, The following code is working fine here. [code=fw:2wfgyw2h]<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: #B900B9;">//----------------------------------------------------...
error on get value compiling from clipper
i THINK THE ERROR IS If ValType(uVar)<>"L" <----------------------- i MADE <> "L" AND NOT =="L" oEdit:varput(uVar) oEdit:REFRESH() Endif
error on get value compiling from clipper
Silvio... [quote="Silvio":sez7or43]Error description: Error BASE/1004 Class: 'NIL' has no exported method: VARPUT[/quote:sez7or43] you error come from oEdit object no exist, check if oEdit is a valid object
error on indices with xbrowse active
On an Old app with a wnd and a xbrowse( old xbrowse from OdZ) I made an indices from buttonbar when was active a xbrowse Only I not have the source code and I not remember how I made it ( I have the exe) [b:2h12yrps]Now it is no possible why ?[/b:2h12yrps] [b:2h12yrps]the error [/b:2h12yrps] [code=fw:2h12yrp...
error on indices with xbrowse active
[quote:230hf31n]On an Old app with a wnd and a xbrowse( old xbrowse from OdZ) I made an indices from buttonbar when was active a xbrowse Only I not have the source code and I not remember how I made it ( I have the exe) Now it is no possible why ?[/quote:230hf31n] Silvio: Function Indices( oBrw) USE C:\work\FWH...
error on indices with xbrowse active
Gulp... sorry it is my mistake....
error on link
Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc. Warning: C:/Work/Prg/Agenda -/main.ilc: 0x00010000 / 0x08000000 Warning: C:/Work/Prg/Agenda -/main.ild: 0x00010000 / 0x08000000 Warning: C:/Work/Prg/Agenda -/main.ilf: 0x00010000 / 0x0a000000 Warning: C:/Work/Prg/Agenda -/main.ils: 0x000...
error on link
<!-- m --><a class="postlink" href="https://stackoverflow.com/questions/28929516/c-builder-xe7-lme288-error">https://stackoverflow.com/questions/289 ... e288-error</a><!-- m -->
error on menu
Sometimes the menu overlapped I see but this sometime also when I use 2015 [img:2v6jxkw9]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2016/05/err-menu&#46;jpg[/img:2v6jxkw9]