messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2015-12-14", "forum": "FiveWin para Pocket PC", "text": "Hola Antonio,\n\nPara que no evalúe los valids de los controles de un diálogo, en el botón de salir se pone la clausula CANCEL.\n\nPero al sustituir un TBUTTON por un TBTNBMP para poder usar colores, me encuento que no existe la clausul...
Cancelar con BTNBMP
[ { "date": "2015-12-14", "forum": "FiveWin para Pocket PC", "text": "Joaquín,\n\nEste ejemplo basado en el que te mostré para probar los BTNBMPs funciona bien:\n\n[code=fw:1n96cz7w]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=...
Cancelar con BTNBMP
[ { "date": "2015-12-15", "forum": "FiveWin para Pocket PC", "text": "Antonio,\n\nPero no es el cancel para todos los gets del diàlogo,\nque cada uno tiene un valid diferente.\n\nHe visto el fuente de Tbutton y la data lcancel. Eso falta en la clase tbtnbmp y sería muy fàcil implementarlo.\n\nYo podría mo...
Cancelar con BTNBMP
[ { "date": "2015-12-15", "forum": "FiveWin para Pocket PC", "text": "Joaquín,\n\nSi eres tan amable, modifica la clase y me la envias y la incluyo en FWPPC.\n\nHay muy pocos usuarios de FWPPC y no hay tiempo para todo, gracias <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Sm...
Cancelar con BTNBMP
[ { "date": "2015-12-15", "forum": "FiveWin para Pocket PC", "text": "Antonio,\n\nYa he implementado la clausula CANCEL en FWCE.ch y en BTNBMP.prg\n\nFunciona de lujo.\n\nDIme como te lo hago llegar para que lo incluyas en la LIB.", "time": "12:42", "topic": "Cancelar con BTNBMP", "username": ...
Cancelar con BTNBMP
[ { "date": "2015-12-15", "forum": "FiveWin para Pocket PC", "text": "Joaquín,\n\nPor favor envíame por email los PRGs y CH modificados y los incluiré en el repositorio de FWPPC\n\nLa próxima versión que se publique de FWPPC incluirá tus cambios.\n\nMuchas gracias <!-- s:-) --><img src=\"{SMILIES_PATH}/ic...
Cancelar con BTNBMP
[ { "date": "2008-11-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola!\r\n\r\nEn mi apliación, hay una función que tarda un rato en finalizar el proceso. Por eso, le he puesto un MsgRun con un texto de 'APLICACION EN PROCESO'\r\n\r\nMi pregunta es,\r\n¿si el ususario desea cancelar el proceso ...
Cancelar proceso en curso
[ { "date": "2008-11-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Javier,\r\n\r\nLa función TerminateProcess() podría servir:\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://msdn.microsoft.com/en-us/library/ms686714(VS.85\">http://msdn.microsoft.com/en-us/library/ms686714(VS.85</a><!-- m -...
Cancelar proceso en curso
[ { "date": "2008-11-24", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba con este ejemplo.\r\n\r\n<!-- m --><a class=\"postlink\" href=\"http://www.fivewin.com.br/exibedicas.asp?id=681\">http://www.fivewin.com.br/exibedicas.asp?id=681</a><!-- m -->\r\n\r\nSaludos.", "time": "15:28", "to...
Cancelar proceso en curso
[ { "date": "2008-11-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias, pero creo que no me he explicado bien.\r\n\r\nNo quiero eliminar un proceso .EXE como si nos fueramos al administrador de tareas.\r\n\r\nLo que quiero es interrumpir una función que está ejecutandose para salir de ella y...
Cancelar proceso en curso
[ { "date": "2008-11-25", "forum": "FiveWin para Harbour/xHarbour", "text": "jfafive:\r\n\r\n\r\nyo hago lo siguiente:\r\n\r\nme creo una funcion que me muestra la evolucion de lo que estoy haciendo.\r\n\r\n[code:2847jaaw]\n***************\nSTATIC FUNCTION BoxStatus&#40;&#41;\n***************\nLOCAL aStru...
Cancelar proceso en curso
[ { "date": "2008-11-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Javier,\r\n\r\nLo que te indica Pedro, es la forma de hacerlo:\r\n[code:3trpe19l]\nwhile lSigue\n &#46;&#46;&#46; haz lo que sea\nend\n[/code:3trpe19l]\r\nsi lSigue cambia a .F. entonces se sale del bucle.", "time": "11:31"...
Cancelar proceso en curso
[ { "date": "2008-11-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Ok,\r\n\r\nGracias por vuestros consejos.\r\nLo voy a poner en práctica a ver como va.\r\n\r\n <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->", "time": "20:06", ...
Cancelar proceso en curso
[ { "date": "2008-11-25", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola\r\n\r\nLo otro que puedes hacer es usar la funcion GetKeyState..\r\n\r\n\r\n\r\n[code:3udzjna0]do while Eval&#40; bBusqueda &#41;\n\n\tif GetKeyState&#40; 27 &#41;\n\t\tif MsgYesNo&#40; \"¿Ha presionado la tecla ESC, desea ...
Cancelar proceso en curso
[ { "date": "2008-11-27", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"jfafive\":23i71vvn]Hola!\n\nEn mi apliación, hay una función que tarda un rato en finalizar el proceso. Por eso, le he puesto un MsgRun con un texto de 'APLICACION EN PROCESO'\n\nMi pregunta es,\n¿si el ususario desea ca...
Cancelar proceso en curso
[ { "date": "2007-05-30", "forum": "All products support", "text": "Salve,\nesiste una funzione per cancellare il buffer di tastiera ?\n\nIn pratica sto gestendo l'inserimento automatico tramite codice a barre: il cliente passa il lettore sul codice quando si trova su una get e si apre automaticamente un'...
Cancellare il buffer di tastiera
[ { "date": "2007-05-30", "forum": "All products support", "text": "Attivare il SET CONFIRM ON?\n\nEMG", "time": "11:47", "topic": "Cancellare il buffer di tastiera", "username": "Enrico Maria Giordano" } ]
Cancellare il buffer di tastiera
[ { "date": "2007-05-30", "forum": "All products support", "text": "Puoi riconfigurare il lettore eliminando il comando invio alla lettura .\n\nCiao MAurizio", "time": "15:02", "topic": "Cancellare il buffer di tastiera", "username": "Maurizio" } ]
Cancellare il buffer di tastiera
[ { "date": "2007-05-31", "forum": "All products support", "text": "Per gestire l'acquisizione di un codice tramite barcode, devo necessariamente utilizzare una get con clausola ON CHANGE e verificare se il dato inserito è congruo, questo perché non conosco a priori se il lettore di barcode del cliente è ...
Cancellare il buffer di tastiera
[ { "date": "2007-05-31", "forum": "All products support", "text": "Torno alla mia proposta: attiva il SET CONFIRM ON ma rendi la cosa opzionale così l'utente può attivarlo o disattivarlo a seconda di come è configurato il suo lettore.\n\nEMG", "time": "11:25", "topic": "Cancellare il buffer di ta...
Cancellare il buffer di tastiera
[ { "date": "2008-07-16", "forum": "All products support", "text": "Ciao a Tutti,\r\nvolevo chiedere come posso cancellare \r\ntutto il contenuto di una directory (cartella) \r\ndove all'interno sono contenuti file e anche altre sotto cartelle\r\n\r\nchiaramente sempre con FWPPC\r\n\r\nGrazie mille a tutt...
Cancellazione Directory e subDirectory
[ { "date": "2008-07-16", "forum": "All products support", "text": "Usa la funzione Directory() per trovare e cancellare tutti i file della directory indicata. La funzione dovrà essere ricorsiva se all'interno della directory vi sono delle subdirectory. Un esempio non funzionante tanto per avere un'idea d...
Cancellazione Directory e subDirectory
[ { "date": "2008-01-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nI have just added a new dialog/tab to a folder and it works fine in all the machines i have tested it on in my office, however, when i have installed the app at my clients i get a cannot create dialog error - can anyone off...
Cannot Create Dialog Error
[ { "date": "2008-01-21", "forum": "FiveWin for Harbour/xHarbour", "text": "I've narrowed this down to an image i'm displaying on the new tab.\n\nI'm using REDEFINE IMAGE to display the image, how should this be defined in the .rc file? Currently i'm using:\n\nCONTROL \"TBitmap\", 114, \"TBitmap\" ....\n...
Cannot Create Dialog Error
[ { "date": "2008-01-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes, TImage.\n\nEMG", "time": "14:35", "topic": "Cannot Create Dialog Error", "username": "Enrico Maria Giordano" } ]
Cannot Create Dialog Error
[ { "date": "2008-01-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Thats fixed it - weird how it only errors on certain pcs/installations!", "time": "15:36", "topic": "Cannot Create Dialog Error", "username": "PeterHarmes" } ]
Cannot Create Dialog Error
[ { "date": "2008-01-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes, I can't imagine any valid reasons for that behavior... <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\nEMG", "time": "19:45", "topic": "Cannot Create Dialo...
Cannot Create Dialog Error
[ { "date": "2016-03-08", "forum": "FiveWin para Harbour/xHarbour", "text": "Computadora con 8 Gbs de memóra RAM esta con este problema: CANNOT LOAD FREEIMAGE64.DLL que hacer? \n\nWindows 8 de 64 bits.\n\nGracias, saludos.", "time": "17:58", "topic": "Cannot Load FreeImage64.dll", "username":...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-08", "forum": "FiveWin para Harbour/xHarbour", "text": "João,\n\nPor favor prueba esto:\n\nMsgInfo( LoadLIbrary( \"freeimage64.dll\" ) )\n\ny dime que valor te muestra", "time": "23:20", "topic": "Cannot Load FreeImage64.dll", "username": "Antonio Linares" } ]
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Master, windows 8 64 bits 8 Gbs de RAM, no carga la dll, que puede ser, corrupta? Retorno: 0 - zero.\n\n[code=fw:wbhkpwqf]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#incl...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Prueba con esta\n\n<!-- m --><a class=\"postlink\" href=\"https://www.dropbox.com/s/1ra2116tzn0l8me/freeimage64.dll?dl=0\">https://www.dropbox.com/s/1ra2116tzn0l8 ... 4.dll?dl=0</a><!-- m -->", "time": "14:40", "topic": "...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias Master, no funciona:\n\n[img:1xwhqdso]http&#58;//i&#46;imgur&#46;com/8m5rXai&#46;png[/img:1xwhqdso]\n\nFWH1306 de 32 bits, hay algun cambio en IMAGE.PRG que resolva ó el FHW de 32 bits actual carga la DLL FREEIMAGE.DLL en...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Master puedo cambiar la IMAGE.PRG,\n\n[code=fw:1c6paax1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">CLASS</span> TImage <span style=\"color: #0000ff;\">FROM</span> TBitmap...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Creo que quedaria mejor asi\n\n[code=fw:wes2srmi]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />&nbsp; &nbsp;CLASSDATA cResFile AS CHARACTER ;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #000...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"cnavarro\":1oukdv1f]Creo que quedaria mejor asi\n\n[code=fw:1oukdv1f]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />   CLASSDATA cResFile AS CHARACTER ;<br />       <span style=\"color: #0000...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "La solución de Cristobal es la correcta", "time": "19:50", "topic": "Cannot Load FreeImage64.dll", "username": "Antonio Linares" } ]
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias maestro. El próximo mes, vamos a actualizar la Fivewin a la última versión 2016. Me encanta Fivewin.\nSúper agradecido.\n\nSaludos.", "time": "20:00", "topic": "Cannot Load FreeImage64.dll", "username": "karin...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "João,\n\n[code=fw:3n8imoxp]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">&#40;</span> ISEXE64 <span style=\"color: #000000;\">&...
Cannot Load FreeImage64.dll
[ { "date": "2016-03-09", "forum": "FiveWin para Harbour/xHarbour", "text": "Gracias master, resuelto:\n\n[code=fw:6ii3f46f]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</sp...
Cannot Load FreeImage64.dll
[ { "date": "2020-05-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Hola a todos, estoy a un paso de conseguir que funcione mi primera aplicación a 64bits.\nel error que aparece es el consabido \"[b:22aau081]Cannot load Freeimage64.dll[/b:22aau081]\"\n\n- FreeImage64.dll está en el directorio del...
Cannot Load FreeImage64.dll
[ { "date": "2020-05-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Jose Vicente, por qué no utilizas la clase TXImage y te quitas dependencias externas?", "time": "16:45", "topic": "Cannot Load FreeImage64.dll", "username": "cnavarro" } ]
Cannot Load FreeImage64.dll
[ { "date": "2020-05-14", "forum": "FiveWin para Harbour/xHarbour", "text": "Cristobal, he cambiado la clase y ahora no da errores, gracias <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->", "time": "17:38", "topic": "Cannot Load FreeI...
Cannot Load FreeImage64.dll
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "Is there anybody who knows,\nwhat i can do to close Excel ?\nWith the old TAutoOle : oExcel:End() it was ok.\nAntonio told me : oExcel := NIL.\nIt is not working, because in the Filemanager\nExcel is still visible and not closed. ...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "With Fivewin and xharbour, just comment your line oxls:end()\nYou dont need it anymore .\nGood luck", "time": "17:25", "topic": "Cannot close Excel with WIN32OLE", "username": "jacquetph" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "I think what you want is\n\noExcel:quit()\noExcel := nil", "time": "18:05", "topic": "Cannot close Excel with WIN32OLE", "username": "Gale FORd" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Gale FORd\":296dl8tu]I think what you want is\n\noExcel:quit()\noExcel := nil[/quote:296dl8tu]\n\nThe last is not needed.\n\nEMG", "time": "19:23", "topic": "Cannot close Excel with WIN32OLE", "username": "Enr...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "I thought the same as you, but after helping someone with an Excel problem we found that Excel will still be running even though you cannot see it.\n\nRunning the task manager after doing the oExcel:quit() shows that Excel would s...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-03", "forum": "FiveWin for Harbour/xHarbour", "text": "oExcel:Quit()\noExcel := NIL\n\nworks fine.\nbut it creates the worksheet in the background.\n\nI tried to do nothing on the end.\nIt works also, but with the difference : Excel shows the sheet \nand stays open.\nI have to close e...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "What if you try this way\n\noExcel:WorkBooks:Close()\noExcel:Quit()\n\n\nRegards", "time": "00:16", "topic": "Cannot close Excel with WIN32OLE", "username": "Armando" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Gale FORd\":17b62dhs]I thought the same as you, but after helping someone with an Excel problem we found that Excel will still be running even though you cannot see it.\n\nRunning the task manager after doing the oExcel:q...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "I did not believe it either. I will put something together tomorrow.", "time": "00:53", "topic": "Cannot close Excel with WIN32OLE", "username": "Gale FORd" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Ok, thank you. I'm pretty curious...\n\nEMG", "time": "01:31", "topic": "Cannot close Excel with WIN32OLE", "username": "Enrico Maria Giordano" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "I went back and looked at my test prg's and I could not find the one in question so I created one. At first it worked like you said and what I thought originally. Then I got to thinking about how this problem came up. Then I recal...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "I forgot to mention that when you check in the task manager, you have to look under the Processs tab. It is not in the Applications tab.", "time": "16:06", "topic": "Cannot close Excel with WIN32OLE", "username": "Gale...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "This is perfectly normal as the automatic destructor is called when the variable exits the scope. It's not a problem at all.\n\nEMG", "time": "17:39", "topic": "Cannot close Excel with WIN32OLE", "username": "Enrico Ma...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "It was a problem for the person I was helping some time ago because he was using a prg wide static variable. The person in this thread mentioned that Excel was still running so without seeing how he was using the variable I wanted...
Cannot close Excel with WIN32OLE
[ { "date": "2008-01-04", "forum": "FiveWin for Harbour/xHarbour", "text": "Ok, understood.\n\nEMG", "time": "19:04", "topic": "Cannot close Excel with WIN32OLE", "username": "Enrico Maria Giordano" } ]
Cannot close Excel with WIN32OLE
[ { "date": "2006-04-16", "forum": "FiveWin for Harbour/xHarbour", "text": "ON PROGRAM \n\n[code:10p7tylw] DEFINE DIALOG oDlg RESOURCE \"MAIN\"\n ACTIVATE DIALOG oDlg CENTER[/code:10p7tylw]\n\n\nIT MAKE THIS ERROR \n\n Path and name: C:\\Work\\PRG\\img\\Immagine.Exe (32 bits)\n Size: 434,688 bytes\n...
Cannot create Dialog Box
[ { "date": "2006-04-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Because you need to redefine those two TBitmap controls that you have placed in the dialog.", "time": "00:07", "topic": "Cannot create Dialog Box", "username": "Antonio Linares" } ]
Cannot create Dialog Box
[ { "date": "2006-04-17", "forum": "FiveWin for Harbour/xHarbour", "text": "SORRY u ARE RIGHT", "time": "00:48", "topic": "Cannot create Dialog Box", "username": "Silvio" } ]
Cannot create Dialog Box
[ { "date": "2012-02-29", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nI am trying to convert a big aplication from fwh8.10 (XHB comercial) to FWH1201 (BCC) and am not able to run the aplication (see subject).\n\nThe error occurs in a dialog with multiple Folders.\n\nIsolating the problem ,...
Cannot create Dialog Box (fwh1201) , not in fwh8.10
[ { "date": "2012-03-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Demont,\n\nnormally there is an unknown control in the .rc file.\n\nCan you post that part of your resource file, where the error occurs ?", "time": "08:44", "topic": "Cannot create Dialog Box (fwh1201) , not in fwh8.10", ...
Cannot create Dialog Box (fwh1201) , not in fwh8.10
[ { "date": "2012-03-01", "forum": "FiveWin for Harbour/xHarbour", "text": "Stefan,\n\nThanks for the reply , but it seems that there was some confusion about linking in the rc-file.\n\nIt is not clear what the problem was in the main program , there was no reason to not include the dialog.\n\nI will try ...
Cannot create Dialog Box (fwh1201) , not in fwh8.10
[ { "date": "2010-02-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi friends.\n\nI have rondomly \"Cannot create Dialog Box\" message error one or two times a day.\n\nWhat is the circunstancies when this error appear? I tryed to find anything wrong in my app but all seems fine. \n\nThanks for a...
Cannot create Dialog Box Error
[ { "date": "2010-02-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello toninhofwi\n\nPlease post error log and RC section with the problem, is better to help you", "time": "01:33", "topic": "Cannot create Dialog Box Error", "username": "Daniel Garcia-Gil" } ]
Cannot create Dialog Box Error
[ { "date": "2010-02-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Error from:\n\nCREATEDLGERROR()\nTDIALOG:ACTIVATE()\n...\n\nThe two errors allways is the same above, but the rest change. As I sayd, it is randomly, and my resources is correct.\n\nMy question is: What can cause this error?\n\n\n...
Cannot create Dialog Box Error
[ { "date": "2010-02-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Toninho,\n\nWhat controls do you use in that dialogbox ?", "time": "12:40", "topic": "Cannot create Dialog Box Error", "username": "Antonio Linares" } ]
Cannot create Dialog Box Error
[ { "date": "2010-02-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Antonio.\n\nCommon controls like GET, SAY and TSBROWSE. I revised my RC file and all is correct.\n\nPlease see that error is *random* sometimes a simple DEFINE/ACTIVATE DIALOG with a message can display it.\n\nMy question is: w...
Cannot create Dialog Box Error
[ { "date": "2010-02-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Toninho,\n\nDo you keep your resources inside your EXE or inside an external DLL ?", "time": "00:35", "topic": "Cannot create Dialog Box Error", "username": "Antonio Linares" } ]
Cannot create Dialog Box Error
[ { "date": "2010-02-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio, my resources is INSIDE my EXE.\n\nRegards,\n\nToninho.", "time": "11:28", "topic": "Cannot create Dialog Box Error", "username": "toninhofwi" } ]
Cannot create Dialog Box Error
[ { "date": "2010-02-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Toninho,\n\nEl EXE está en el ordenador local ó se carga desde un servidor ?\n\nA veces pueden aparecer errores asi al no poderse cargar bien el EXE desde el servidor, pues Windows no carga todo el EXE sino partes de él, y al ir a...
Cannot create Dialog Box Error
[ { "date": "2010-02-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Antonio.\n\nThanks for this useful info. Maybe you are right, because I have a lot of apps like this installed and only in one client this problem occur.\n\nRegards,\n\nToninho.", "time": "11:58", "topic": "Cannot creat...
Cannot create Dialog Box Error
[ { "date": "2010-02-27", "forum": "FiveWin for Harbour/xHarbour", "text": "We have encountered this when the dialog TITLE is too long.............", "time": "04:34", "topic": "Cannot create Dialog Box Error", "username": "peterk" } ]
Cannot create Dialog Box Error
[ { "date": "2007-05-19", "forum": "FiveWin para Harbour/xHarbour", "text": "<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) --> Hola, de nuevo aqui moles...
Cannot create Dialog Box con Resource Workshop
[ { "date": "2007-05-19", "forum": "FiveWin para Harbour/xHarbour", "text": "Cuate,, este es mis msg. <!-- e --><a href=\"mailto:ccc_3_ccc@hotmail.com\">ccc_3_ccc@hotmail.com</a><!-- e -->\n\nyo te puedo apoyar,\n\n\nyo usaba worshop,\n\npero lo cambie ya por pelles C\n\npor la simple razon de que pelle...
Cannot create Dialog Box con Resource Workshop
[ { "date": "2007-05-19", "forum": "FiveWin para Harbour/xHarbour", "text": "[quote=\"sysctrl2\":p4hqg9ed]Cuate,, este es mis msg. <!-- e --><a href=\"mailto:ccc_3_ccc@hotmail.com\">ccc_3_ccc@hotmail.com</a><!-- e -->\n\nyo te puedo apoyar,\n\n\nyo usaba worshop,\n\npero lo cambie ya por pelles C\n\npor...
Cannot create Dialog Box con Resource Workshop
[ { "date": "2007-05-20", "forum": "FiveWin para Harbour/xHarbour", "text": "<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> Gracias a los dos p...
Cannot create Dialog Box con Resource Workshop
[ { "date": "2006-09-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi!\n\nI have a lot of pain of \"fivewin/3 error\" and I stay without it since I used Borland resources in FW/Clipper. But this time I couldn't run <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" ...
Cannot create dialog box
[ { "date": "2006-09-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Maurilio,\n\nPlease open the EXE with the resources workshop and check that the resources are properly placed inside.", "time": "16:54", "topic": "Cannot create dialog box", "username": "Antonio Linares" } ]
Cannot create dialog box
[ { "date": "2006-09-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nYes, the resource is inside exe correctly.\nWhen I add a dialog to resources it fail, if I add a blank dialog named SEL* (SEL_TEMP, SEL_XXX, etc) it work. \n\nIn all times when the dialog open OK and when occur Fivewin...
Cannot create dialog box
[ { "date": "2006-09-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Maurilio,\n\nWe have found on some ocasions that the dialog name is not fine for Windows. Try to change it to a different name.", "time": "12:25", "topic": "Cannot create dialog box", "username": "Antonio Linares" } ...
Cannot create dialog box
[ { "date": "2006-09-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\nI'll change the name and do any tests.\nAny news I post here.\n\nThanks!\n\nMaurilio", "time": "12:32", "topic": "Cannot create dialog box", "username": "Maurilio Viana" } ]
Cannot create dialog box
[ { "date": "2006-09-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nI renamed the resource and don't worked <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->\nIf I add or delete a resource into rc file it work fine.\nTo avoid app exiting I pla...
Cannot create dialog box
[ { "date": "2006-09-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Maurilio Viana\":39ae0dj2]Antonio,\n\nI renamed the resource and don't worked <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->\nIf I add or delete a resource into rc file it wor...
Cannot create dialog box
[ { "date": "2006-09-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Evans,\n\nThanks for your words. \nThe only different thing into these my \"deffective resource\" is a txbrowse control.\nBased on what you said I must do in my main program:\n\nTxBrowse():Register()\n\nIs this right?\n\nRegards\n...
Cannot create dialog box
[ { "date": "2006-09-27", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Maurilio Viana\":39leaje5]Evans,\n\nThanks for your words. \nThe only different thing into these my \"deffective resource\" is a txbrowse control.\nBased on what you said I must do in my main program:\n\nTxBrowse():Regist...
Cannot create dialog box
[ { "date": "2010-08-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Converting my first FW project to FWH. \n\nMy dialogs were originally created with Borland Workshop 4.5. I’ve converted them using both the Pelles C and Microsoft Visual Studio tools, first into an RES file which I linked direct...
Cannot create dialog box...
[ { "date": "2010-08-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Don, I see you use Borland controls.\n\nBorCheck\n\nDo you have \n\nlocal hBorland := LoadLibrary( \"BWCC32.dll\" )\nBWCCRegister(GetResources())\nDLL32 FUNCTION BWCCRegister( hInst AS LONG ) AS WORD PASCAL LIB \"BWCC32.DL...
Cannot create dialog box...
[ { "date": "2010-08-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you, Otto.\n\nI had only \"local hBorland := LoadLibrary( \"BWCC32.dll\" )\" . I've added the other 2 lines as you suggested, but my problem remains.\n\nMy BWCC32.dll is version 2.4.0.2 dated 3 April 2002. Does that seem t...
Cannot create dialog box...
[ { "date": "2010-08-20", "forum": "FiveWin for Harbour/xHarbour", "text": "try creating RC files and linking those to the exe. Actually Borland will create the rc files which can be linked. I have many many rc file from borland and functioning well.", "time": "20:18", "topic": "Cannot create dial...
Cannot create dialog box...
[ { "date": "2010-08-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Don,\n\nThis is just a guess, but the Borland controls in the DLL are 16bit controls. It is possible (perhaps, probable) that you cannot use 16bit controls in a 32bit application.\n\nI had so many problems with Borland controls th...
Cannot create dialog box...
[ { "date": "2010-08-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Don\n\nI suggest you use rc files, this is the best reliable solution\n\nI use Pelles c in replacement of Borland work shop and it is working quite well\n\nI guess you certainely need to remove CLASS \"BorDlg\"\n\nremove it from...
Cannot create dialog box...
[ { "date": "2010-08-21", "forum": "FiveWin for Harbour/xHarbour", "text": "My problem has been solved!\n\nThanks to Otto's suggestion, and a little more study I was finally able to get my resources to work.\n\nThank you to everyone, especially Otto, for your advice.\n\nDon", "time": "15:44", "top...
Cannot create dialog box...
[ { "date": "2005-12-15", "forum": "FiveMac / FivePhone (iPhone, iPad)", "text": "The command:\n\nSET BELL OFF\n\nis supposed to turn off the bell (sound in Windows) when at the end of entry in a get buffer. Whether SET BELL is OFF or ON I get the same result. Is this controlled in FW++ by the SET BELL ...
Cannot turn off Bell at end of buffer entry in gets.
[ { "date": "2005-12-15", "forum": "FiveMac / FivePhone (iPhone, iPad)", "text": "Dan,\n\nFixed. These lines were missing from Class TGet:\n[code:1dlz0n46]\n if &#58;&#58;oGet&#58;TypeOut\n if ! Set&#40; _SET_CONFIRM &#41;\n &#58;&#58;oWnd&#58;nLastKey = VK_RETURN\n ...
Cannot turn off Bell at end of buffer entry in gets.
[ { "date": "2006-01-11", "forum": "FiveMac / FivePhone (iPhone, iPad)", "text": "Hello Antonio,\n\nWorks just fine.\n\nThanks\nDan", "time": "00:00", "topic": "Cannot turn off Bell at end of buffer entry in gets.", "username": "Dan Landon" } ]
Cannot turn off Bell at end of buffer entry in gets.
[ { "date": "2006-01-19", "forum": "FiveMac / FivePhone (iPhone, iPad)", "text": "gald to know it is ok <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->", "time": "10:38", "topic": "Cannot turn off Bell at end of buffer entry in gets.", "username...
Cannot turn off Bell at end of buffer entry in gets.
[ { "date": "2006-06-05", "forum": "FiveWin for Harbour/xHarbour", "text": "Because of the way cGetFile32 uses ini file in the windows directory to communicate with rundlg32 I cannot use this function.\n\nSome administrators limit the users access rights to the windows directory.\nIs there a way to use an...
Cannot use cGetFile32 in some secure networks
[ { "date": "2006-06-05", "forum": "FiveWin for Harbour/xHarbour", "text": "It seems that you are using the Clipper/FW version as the xHarbour/FWH one doesn't use rundlg32.dll at all.\n\nEMG", "time": "15:40", "topic": "Cannot use cGetFile32 in some secure networks", "username": "Enrico Maria ...
Cannot use cGetFile32 in some secure networks
[ { "date": "2006-06-05", "forum": "FiveWin for Harbour/xHarbour", "text": "I am not sure about that.\n\nMy source file is c:\\fwh\\source\\function\\dlgs32.prg\n\nThe function cGetFile32() uses \n\n nRet := WinExec( \"rundlg32 \" + If( lSave, \"2\", \"1\" ) )\n\n if nRet > 21 .or. nRet < 0\n Sto...
Cannot use cGetFile32 in some secure networks