topic
stringlengths
1
63
text
stringlengths
1
577k
error FWH 15.05 with xHarbour.com
error when I compile any prg /xHB.COM with FHX 15.5/ xLINK: warning: Symbol 'R:\lib\OptG.lib(hvm.obj)->_hb_vmPushSize previously defined at S:\lib\Fivehmx.lib(harbour.obj)' is multiply defined. Creating object: t.EXP Creating library: t.LIB xLINK: error: Unresolved external symbol '_GetMenuInfo referenced from FiveHCM.lib(MENUDRAW.obj)'. xLINK: error: Unresolved external symbol '_GetWindowLongPtr referenced from FiveHCM.lib(MENUDRAW.obj)'. xLINK: error: Unresolved external symbol '_SetMenuInfo referenced from FiveHCM.lib(MENUDRAW.obj)'. xLINK: fatal error: 3 unresolved external(s). Type: C >>>Couldn't build: t.exe<<< Type: C >>>TMAKEPROJECT<<< Type: C >>>TMAKEPROJECT:REFRESH<<< Type: N >>> 1406<<<
error FWH 15.05 with xHarbour.com
please include winapi.lib, please comment if this work.
error FWH 15.05 with xHarbour.com
don't work
error FWH 15.05 with xHarbour.com
all this function is in User32.lib [url:1ljzhdcl]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms647977%28v=vs&#46;85%29&#46;aspx[/url:1ljzhdcl] [url:1ljzhdcl]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms633585(v=vs&#46;85)&#46;aspx[/url:1ljzhdcl] [url:1ljzhdcl]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms647997(v=vs&#46;85)&#46;aspx[/url:1ljzhdcl] salu2 carlos vargas
error FWH 15.05 with xHarbour.com
Same problem here. Adding winapi.lib is no solution.
error FWH 15.05 with xHarbour.com
We are reviewing it. We will deliver a solution asap. Thanks for the feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
error FWH 15.05 with xHarbour.com
Ok, I found whats going on: [url:281xsqg2]https&#58;//msdn&#46;microsoft&#46;com/en-us/library/windows/desktop/ms633585%28v=vs&#46;85%29&#46;aspx[/url:281xsqg2] [quote:281xsqg2]When compiling for 32-bit Windows, GetWindowLongPtr is defined as a call to the GetWindowLong function.[/quote:281xsqg2] Please add this code to your main PRG: #pragma BEGINDUMP #include <windows.h> LONG WINAPI GetWindowLongPtr( HWND hWnd, int nIndex ) { return GetWindowLong( HWND hWnd, int nIndex ); } #pragma ENDDUMP
error FWH 15.05 with xHarbour.com
Antonio, I have added your suggestion to my main PRG-file. But I got an error "couldn't build". Just for your information. I do have 2 more of those parts in my main PRG-file. These look like :[code=fw:3fjejlr6]<div class="fw" id="{CB}" style="font-family: monospace;">******************************************************************************<br /><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 /><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">&#40;</span> NEXTMEM <span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">// --> nHardwareMemory</span><br /><span style="color: #000000;">&#123;</span><br />   MEMORYSTATUSEX mst;<br /><br />   memset<span style="color: #000000;">&#40;</span> &mst, <span style="color: #000000;">0</span>, sizeof<span style="color: #000000;">&#40;</span> MEMORYSTATUSEX <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>;<br />   mst.dwLength = sizeof<span style="color: #000000;">&#40;</span> MEMORYSTATUSEX <span style="color: #000000;">&#41;</span>;<br /><br />   GlobalMemoryStatusEx<span style="color: #000000;">&#40;</span> &mst <span style="color: #000000;">&#41;</span>;<br /><br />   hb_retnll<span style="color: #000000;">&#40;</span> mst.ullAvailPhys <span style="color: #000000;">&#41;</span>;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#pragma</span> ENDDUMP<br /><br />******************************************************************************<br /><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <stdio.h><br /><span style="color: #00D7D7;">#include</span> <Windows.h><br /><span style="color: #00D7D7;">#include</span> <WinINet.h><br /><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><span style="color: #00D7D7;">#include</span> <hbapiitm.h><br /><span style="color: #00D7D7;">#include</span> <hbapifs.h><br /><span style="color: #00D7D7;">#include</span> <hbvm.h><br /><span style="color: #00D7D7;">#include</span> <hbstack.h><br /><br /><span style="color: #00C800;">static</span> int mystrcmp<span style="color: #000000;">&#40;</span> char *val1, char *val2 <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />        int     nret = <span style="color: #000000;">0</span> ;<br /><br />        <span style="color: #00C800;">for</span> <span style="color: #000000;">&#40;</span> ; *val1 ; val1++, val2++ <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> ! *val2 || *val1 != *val2 <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                        nret = <span style="color: #000000;">1</span> ;<br />                        <span style="color: #00C800;">break</span> ;<br />                <span style="color: #000000;">&#125;</span><br />        <span style="color: #000000;">&#125;</span><br />        <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> ! nret && *val2 <span style="color: #000000;">&#41;</span><br />                nret = <span style="color: #000000;">1</span> ;<br /><br />        <span style="color: #00C800;">return</span> nret ;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">&#40;</span> DELFILECACHE <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />        BOOL                            bResult = <span style="color: #00C800;">FALSE</span> ;<br />        BOOL                            bDone = <span style="color: #00C800;">FALSE</span> ;<br />        LPINTERNET_CACHE_ENTRY_INFO     lpCacheEntry = <span style="color: #00C800;">NULL</span> ;<br />        DWORD                           dwTrySize, dwEntrySize = <span style="color: #000000;">4096</span> ; <span style="color: #B900B9;">// start buffer size</span><br />        HANDLE                          hCacheDir = <span style="color: #00C800;">NULL</span> ;<br />        DWORD                           dwError = ERROR_INSUFFICIENT_BUFFER ;<br />        BOOL                            bSuccess ;<br />        PHB_ITEM                        iFiles, iElem ;<br />        int                             nfile, npos ;<br />        char                            buffile<span style="color: #000000;">&#91;</span>FILENAME_MAX<span style="color: #000000;">&#93;</span> ;<br /><br />        iFiles = hb_itemParam<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span> <span style="color: #000000;">&#41;</span> ;<br />        nfile = hb_parinfa<span style="color: #000000;">&#40;</span> <span style="color: #000000;">1</span>, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span> ;<br /><br />        <span style="color: #00C800;">do</span>  <span style="color: #000000;">&#123;</span><br />                <span style="color: #00C800;">switch</span> <span style="color: #000000;">&#40;</span> dwError <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                        <span style="color: #B900B9;">// need a bigger buffer</span><br />                        <span style="color: #00C800;">case</span> ERROR_INSUFFICIENT_BUFFER :<br />                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> lpCacheEntry != <span style="color: #00C800;">NULL</span> <span style="color: #000000;">&#41;</span><br />                                        free<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#40;</span>LPBYTE<span style="color: #000000;">&#41;</span>lpCacheEntry <span style="color: #000000;">&#41;</span> ;<br />                                lpCacheEntry = <span style="color: #000000;">&#40;</span>LPINTERNET_CACHE_ENTRY_INFO<span style="color: #000000;">&#41;</span> malloc<span style="color: #000000;">&#40;</span> dwEntrySize <span style="color: #000000;">&#41;</span> ;<br />                                lpCacheEntry->dwStructSize = dwEntrySize ;<br />                                dwTrySize = dwEntrySize ;<br /><br />                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> hCacheDir == <span style="color: #00C800;">NULL</span> <span style="color: #000000;">&#41;</span><br />                                        bSuccess = <span style="color: #000000;">&#40;</span>hCacheDir = FindFirstUrlCacheEntry<span style="color: #000000;">&#40;</span> <span style="color: #00C800;">NULL</span>, lpCacheEntry, &dwTrySize <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> != <span style="color: #00C800;">NULL</span> ;<br />                                <span style="color: #00C800;">else</span><br />                                        bSuccess = FindNextUrlCacheEntry<span style="color: #000000;">&#40;</span>hCacheDir, lpCacheEntry, &dwTrySize <span style="color: #000000;">&#41;</span> ;<br />                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> bSuccess <span style="color: #000000;">&#41;</span><br />                                        dwError = ERROR_SUCCESS ;<br />                                <span style="color: #00C800;">else</span>  <span style="color: #000000;">&#123;</span><br />                                        dwError = GetLastError<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> ;<br />                                        dwEntrySize = dwTrySize ; <span style="color: #B900B9;">// use new size returned</span><br />                                <span style="color: #000000;">&#125;</span><br />                                <span style="color: #00C800;">break</span> ;<br /><br />                        <span style="color: #B900B9;">// we are done</span><br />                        <span style="color: #00C800;">case</span> ERROR_NO_MORE_ITEMS :<br />                                bDone = <span style="color: #00C800;">TRUE</span> ;<br />                                bResult = <span style="color: #00C800;">TRUE</span> ;<br />                                <span style="color: #00C800;">break</span> ;<br /><br />                        <span style="color: #B900B9;">// we have got an entry</span><br />                        <span style="color: #00C800;">case</span> ERROR_SUCCESS:<br />                                <span style="color: #B900B9;">// don't delete cookie entry</span><br /><br />                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> !<span style="color: #000000;">&#40;</span> lpCacheEntry->CacheEntryType & COOKIE_CACHE_ENTRY <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                                        <span style="color: #00C800;">for</span> <span style="color: #000000;">&#40;</span> npos = <span style="color: #000000;">1</span> ; npos <= nfile ; npos++ <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                                                iElem = hb_itemArrayGet<span style="color: #000000;">&#40;</span> iFiles, npos <span style="color: #000000;">&#41;</span> ;<br /><br />                                                hb_itemCopyC<span style="color: #000000;">&#40;</span> iElem, buffile, <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span> ;<br />                                                buffile<span style="color: #000000;">&#91;</span>hb_itemSize<span style="color: #000000;">&#40;</span> iElem <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#93;</span> = <span style="color: #ff0000;">'<span style="color: #000000;">\0</span>'</span> ;<br /><br />                                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> ! mystrcmp<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#40;</span>char *<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#40;</span>lpCacheEntry->lpszSourceUrlName<span style="color: #000000;">&#41;</span>, buffile <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                                                        DeleteUrlCacheEntry<span style="color: #000000;">&#40;</span> lpCacheEntry->lpszSourceUrlName <span style="color: #000000;">&#41;</span> ;<br />                                                        <span style="color: #00C800;">break</span> ;<br />                                                <span style="color: #000000;">&#125;</span><br />                                        <span style="color: #000000;">&#125;</span><br />                                <span style="color: #000000;">&#125;</span><br /><br />                                <span style="color: #B900B9;">// get ready for next entry</span><br />                                dwTrySize = dwEntrySize;<br />                                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> FindNextUrlCacheEntry<span style="color: #000000;">&#40;</span>hCacheDir, lpCacheEntry, &dwTrySize <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><br />                                        dwError = ERROR_SUCCESS ;<br />                                <span style="color: #00C800;">else</span>  <span style="color: #000000;">&#123;</span><br />                                        dwError = GetLastError<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> ;<br />                                        dwEntrySize = dwTrySize ; <span style="color: #B900B9;">// use new size returned</span><br />                                <span style="color: #000000;">&#125;</span><br />                                <span style="color: #00C800;">break</span>;<br /><br />                        <span style="color: #B900B9;">// unknown error</span><br />                        <span style="color: #00C800;">default</span>:<br />                                bDone = <span style="color: #00C800;">TRUE</span> ;<br />                                <span style="color: #00C800;">break</span> ;<br />                <span style="color: #000000;">&#125;</span><br />                <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> bDone <span style="color: #000000;">&#41;</span>  <span style="color: #000000;">&#123;</span><br />                        free<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#40;</span>LPBYTE<span style="color: #000000;">&#41;</span>lpCacheEntry <span style="color: #000000;">&#41;</span> ;<br />                        <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> hCacheDir <span style="color: #000000;">&#41;</span><br />                                FindCloseUrlCache<span style="color: #000000;">&#40;</span> hCacheDir <span style="color: #000000;">&#41;</span> ;<br />                <span style="color: #000000;">&#125;</span><br />        <span style="color: #000000;">&#125;</span>  <span style="color: #00C800;">while</span> <span style="color: #000000;">&#40;</span> !bDone <span style="color: #000000;">&#41;</span> ;<br /><br />        hb_retnl<span style="color: #000000;">&#40;</span> bResult <span style="color: #000000;">&#41;</span> ;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#pragma</span> ENDDUMP<br /><br />*****************************************************************************<br /><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><br />LONG WINAPI GetWindowLongPtr<span style="color: #000000;">&#40;</span> HWND hWnd, int nIndex <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />        <span style="color: #00C800;">return</span> GetWindowLong<span style="color: #000000;">&#40;</span> HWND hWnd, int nIndex <span style="color: #000000;">&#41;</span>;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#pragma</span> ENDDUMP<br /><br />*****************************************************************************<br /> </div>[/code:3fjejlr6]Is that a problem? Thanks.
error FWH 15.05 with xHarbour.com
Antonio, Just a hint. If I recompile my application with Harbour, I got an error like this :[quote:1t1fmay8]Improper use of typedef 'HWND' in function GetWindowLongA Function call ) missing in function GetWindowLongA[/quote:1t1fmay8]
error FWH 15.05 with xHarbour.com
Michel, It seems that if you have several #pragma BEGINDUMP ENDDUMP they get compiled fine, so it is should not be a problem to have some of them. That code is only for xHarbour so for Harbour you need to modify it this way: [code=fw:37g4nk85]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#ifndef __BORLANDC__<br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><br />LONG WINAPI GetWindowLongPtr<span style="color: #000000;">&#40;</span> HWND hWnd, int nIndex <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #00C800;">return</span> GetWindowLong<span style="color: #000000;">&#40;</span> HWND hWnd, int nIndex <span style="color: #000000;">&#41;</span>;<br /><span style="color: #000000;">&#125;</span><br /><br /><span style="color: #00D7D7;">#pragma</span> ENDDUMP<br />#endif<br />&nbsp;</div>[/code:37g4nk85]
error FWH 15.05 with xHarbour.com
Antonio, I just deleted your code and everything is ok with build 2. Thanks a lot.
error FWH 15.05 with xHarbour.com
[quote="driessen":3jdhosjc]Antonio, I just deleted your code and everything is ok with build 2. Thanks a lot.[/quote:3jdhosjc] You mean everything ok with xharbour commerical?
error FWH 15.05 with xHarbour.com
Yes, Mr. Rao. I was able to rebuild my application with FWH 15.05 build 2 without any change to my code, as well with Harbour as with xHarbour Professional (commercial).
error FWH 15.05 with xHarbour.com
Michel, very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> many thanks for your feedback
error FWH 15.05 with xHarbour.com
Antonio, It seems that the same problem is reoccuring in FWH 15.07. Can you solve that? Thanks.
error FWH 15.05 with xHarbour.com
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=180577#p180577">viewtopic.php?p=180577#p180577</a><!-- l -->
error FWH 9.04 & xHARBOUR.042
when I compile same program i get error / I used FWH 9.04 na. xHarbour.com v.42 with xCC Pelles ISO C Compiler, Version 2.71.0 / sample.prg #include "FiveWin.ch" static oWnd //----------------------------------------------------------------------------// function Main() local lValue := .f., oChk DEFINE WINDOW oWnd TITLE "Testing CheckBox ON CHANGE clause" @ 3, 3 CHECKBOX oChk VAR lValue PROMPT "&ClickMe" SIZE 100, 20 OF oWnd ; ON CHANGE IIF( oChk:lChecked = .T., ; oChk:SetText( "Check is on" ), ; oChk:SetText( "Check is off" ) ) COLOR "W+/B" ACTIVATE WINDOW oWnd return nil error !!!!!!!!!!!!!!!!!!!!! Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"D:\fwh\lib" -LIBPATH:"D:\xHB.43\lib" -LIBPATH:"D:\xHB.43\c_lib" -LIBPATH:"D:\xHB.43\c_lib\win" "t.obj" "FiveHCM.lib" "FiveHMX.lib" "OptG.lib" "xhb.lib" "dbf.lib" "nsx.lib" "ntx.lib" "cdx.lib" "rmdbfcdx.lib" "ct3comm.lib" crt.lib kernel32.lib user32.lib winspool.lib ole32.lib oleaut32.lib odbc32.lib odbccp32.lib uuid.lib wsock32.lib ws2_32.lib wininet.lib advapi32.lib shlwapi.lib msimg32.lib mpr.lib comctl32.lib comdlg32.lib gdi32.lib shell32.lib winmm.lib lz32.lib Netapi32.lib -out:"t.exe"<<< Creating object: t.EXP Creating library: t.LIB xLINK: error: Unresolved external symbol '??2@YAPAXI@Z referenced from Fivehcm.lib(ACTX.obj)'. xLINK: error: Unresolved external symbol '??3@YAXPAX@Z referenced from Fivehcm.lib(ACTX.obj)'. xLINK: fatal error: 2 unresolved external(s). Type: C >>>Couldn't build: t.exe<<< Type: C >>>TMAKEPROJECT<<< Type: C >>>TMAKEPROJECT:REFRESH<<< Type: N >>> 1411<<<
error FWH 9.04 & xHARBOUR.042
See here: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=15225">viewtopic.php?f=3&t=15225</a><!-- l --> Pete
error FW_OpenAdoConnection SOLVED
hi, I'm converting my .prg from FHW(17.09) + xHarbour to FWH 64 for Harbour 19.06 (MSVC++) Jun. 2019 this code (Ado fo DB2 AS400): [code=fw:o21qfeei]<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: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span style="color: #00C800;">function</span> main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">local</span> oCn<br /><span style="color: #00C800;">LOCAL</span> Connessione := <span style="color: #ff0000;">"Provider=IBMDA400; Data Source=192.168.1.200; User Id=USER; Password=PSW; Default Collection=MYLIB;"</span><br /><br />    oCn := FW_OpenAdoConnection<span style="color: #000000;">&#40;</span> Connessione, .t.<span style="color: #000000;">&#41;</span><br />    <span style="color: #00C800;">if</span> oCn = <span style="color: #00C800;">Nil</span><br />        <span style="color: #0000ff;">msginfo</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"Connessione al DB2 errata"</span><span style="color: #000000;">&#41;</span><br />    <span style="color: #00C800;">endif</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span></div>[/code:o21qfeei] works in FWH 1709 but in new FWH64 I get "ADO ERROR UNKOWN" any help?
error FW_OpenAdoConnection SOLVED
I Solved. reinstalled all components of "Client Access" and now works.
error Factura electrónica
Buenas tardes: Estoy implementando un nuevo módulo a mi programa para generar automáticamente los archivos .XML para facturas electrónicas. Aparentemente me los genera "ok", pero cuando intento validarlos con el programa externo "FacturaE", me genera un error justo en el momento de la importación del tipo: [b:1sa40m0u]id factura | Error[/b:1sa40m0u] x | Com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceExc... ¿ A qué puede ser debido ? Mil gracias. Saludos. LORENZO.
error Factura electrónica
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31745&start=0&hilit=xsd">viewtopic.php?f=6&t=31745&start=0&hilit=xsd</a><!-- l -->
error Factura electrónica
Gracias hmpaquito por contestar. Ya solventé ese problema. Era el campo "dirección del cliente" que contenía caracteres tales como " º " y al parecer NO los reconoce. Ahora tengo otro error: Me genera el XML (versión 3.2.1) y lo lee perfectamente cualquier lector de XML (por ejemplo el navegador), Sin embargo, cuando intento validarlo con "FacturaE" (programa específico para firmar digitales en España), me genera un error del tipo: Id: Borrador-45 && estado de la factura-nº de factura Error: Error de validación contra esquema XSD Si consulto el esquema XSD para versión 3.2.1 XML, dice que el nº de factura debe ser "Caracteres máximo 20 dígitos."... y esto lo cumple!! Si genero un archivo XML a través de "FacturaE" genera un archivo XML muy parecido al mio, donde la estructura "InvoiceNumber" es exactamente igual a la mia y sin embargo SI lo lee perfectamente. Mi parte del código, donde al validar se genera el ERROR: [code=fw:o8ca8t25]<div class="fw" id="{CB}" style="font-family: monospace;">     FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceHeader>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />       FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceNumber>'</span>+alltrim<span style="color: #000000;">&#40;</span>str<span style="color: #000000;">&#40;</span>gesfactu->numticket<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>+<span style="color: #ff0000;">'</InvoiceNumber>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />       FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceSeriesCode>Borrador-</InvoiceSeriesCode>'</span>+ CRLF <span style="color: #000000;">&#41;</span> <br />       FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceDocumentType>'</span>+iif<span style="color: #000000;">&#40;</span>gesfactu->fsimpli=.t.,<span style="color: #ff0000;">'FA'</span>,<span style="color: #ff0000;">'FC'</span><span style="color: #000000;">&#41;</span>+<span style="color: #ff0000;">'</InvoiceDocumentType>'</span>+ CRLF <span style="color: #000000;">&#41;</span> <br />       FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceClass>'</span>+iif<span style="color: #000000;">&#40;</span>gesfactu->LRECTIFI=.t.,<span style="color: #ff0000;">'OR'</span>,<span style="color: #ff0000;">'OO'</span><span style="color: #000000;">&#41;</span>+<span style="color: #ff0000;">'</InvoiceClass>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />     FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'</InvoiceHeader>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br /> </div>[/code:o8ca8t25] La cabecera de mi archivo XML es copia exacta a la que genera FacturaE, tal cual: [code=fw:o8ca8t25]<div class="fw" id="{CB}" style="font-family: monospace;"> facturaE := fCreate<span style="color: #000000;">&#40;</span>cficheroXML,<span style="color: #000000;">0</span><span style="color: #000000;">&#41;</span> && nombre del fichero facturae: <span style="color: #000000;">F_n</span>ºfactura/año factura.XML<br /> FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<?xml version="1.0" encoding="ISO-8859-1"?>'</span><span style="color: #000000;">&#41;</span><br /> FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<fe:Facturae xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:fe="http://www.facturae.es/Facturae/2014/v3.2.1/Facturae">'</span>+ CRLF<span style="color: #000000;">&#41;</span><br /> FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<FileHeader>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />   FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<SchemaVersion>3.2.1</SchemaVersion>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />   FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<Modality>I</Modality>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />   FWrite<span style="color: #000000;">&#40;</span>facturaE,<span style="color: #ff0000;">'<InvoiceIssuerType>EM</InvoiceIssuerType>'</span>+ CRLF <span style="color: #000000;">&#41;</span><br />   ...<br />   ...<br /> </div>[/code:o8ca8t25] ¿ Donde puede estar el fallo? Por favor, algún alma caritativa.... Mil gracias. LORENZO.
error Factura electrónica
Lorenzo, creo que esta línea es la que te está dand problemas. FWrite(facturaE,'<InvoiceSeriesCode>Borrador-</InvoiceSeriesCode>'+ CRLF ) coméntala y prueba si ella
error Factura electrónica
Usa este validador web : [url:1b68rjrm]http&#58;//sedeaplicaciones2&#46;minetur&#46;gob&#46;es/FacturaE/[/url:1b68rjrm] que te dará más pistas.
error Fivedit y Turor01.prg
Harbour 3.2.0dev (r1501292255) Copyright (c) 1999-2015, <!-- m --><a class="postlink" href="http://harbour-project.org/">http://harbour-project.org/</a><!-- m --> Compiling 'C:\FWH\SAMPLES\tutor01.prg'... 100100100100200300400500100200100200100200100200300400500600700800900100011001200130014001500160017001800 Lines 4218, Functions/Procedures 1 Generating C source output to 'C:\FWH\SAMPLES\tutor01.c'... Done. Borland Resource Compiler Version 5.40 Copyright (c) 1990, 1999 Inprise Corporation. All rights reserved. Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc. Fatal: Unable to open file 'VTASKBAR.LIB'
error Fivedit y Turor01.prg
Tus has añadido VTASKBAR.LIB al proyecto ? tutor01.prg no necesita esa librería
error Fivedit y Turor01.prg
No Solo hice un test con las librerias default y eso fue lo que me arrojo
error Fivedit y Turor01.prg
Lo has probado con la versión de Fivedit más reciente ? Puedes construirla asi: fwh\samples\buildh.bat fivedit
error Fivewin/1 Non Defined Id : No 210
hi all, I've ancounter problem at my user where same dll/exe files updated to same computer BUT return different result. Computer A, can run all the module with susccesfull. But Computer B, prompt this error fivewin/1 : non defined id. This error prompt when reading my program to activate a dialog 210 on screen. I tottaly lost in my own jungle where after checked tru my program, there's no problem at all. relaly need help on how to solve this. How come same program return different result. -- Masita
error Fivewin/1 Non Defined Id : No 210
Masita, It is really strange. Please do a search on the computer that fails, to check if there is another copy of the resources DLL.
error Fivewin/1 Non Defined Id : No 210
You could avoid this problem by adding the resource compiler to your LNK-file. What do you have to do : 1. Open your DLL-files with Workshop and save them as RES-files. 2. Re-open your RES-files and save them with the same name (you need to this otherwisse you'll get an error "unable to create dialogbox"). 3. Add the resource compiler into your LNK-file. Do it like this : ----------------- OUTPUT YOUR_APPLICATION.EXE BLINKER INCREMENTAL OFF BLINKER CLIPPER SYMBOL OFF BLINKER EXECUTABLE ALIGNMENT 128 PACKCODE PACKDATA FI YOUR_PRG-files DEFBEGIN name YOUR_APPLICATION description 'Your application' exetype Windows 3.1 code moveable discardable preload data preload moveable rc YOUR-RES-file.RES stacksize 10500 (use your own stacksize) heapsize 1024 (use your own heapsize) segment 'PLANKTON_TEXT' nondiscardable segment 'EXTEND_TEXT' nondiscardable segment 'OM_TEXT' nondiscardable segment 'OSMEM_TEXT' nondiscardable segment 'SORTOF_TEXT' nondiscardable segment 'STACK_TEXT' nondiscardable DEFEND LIB YOUR_LIB's LIB oFive16, oFive16C, OZLIBc, Objects LIB WinApi NOBELL ----------------- 4. Add a rc-line for each RES-file 5. Compile and link your application. By doing this, you'll avoid a wrong DLL-file to be used. Good luck.
error LNK2019: unresolved external symbol nxs_crypt
Hola, Estoy tratando de compilar el ejemplo maria01.prg con FWH64 (ver detalles mas abajo) pero me genera el siguiente error: [code=fw:1ea9ae38]<div class="fw" id="{CB}" style="font-family: monospace;">error LNK2019: <span style="color: #000000;">unresolved</span> external symbol nxs_crypt referenced in <span style="color: #00C800;">function</span> write_to_file<br />maria01.exe : <span style="color: #000000;">fatal</span> error LNK1120: <span style="color: #000000;">1</span> unresolved externals</div>[/code:1ea9ae38]He buscado en el foro pero no encuentro referencia alguna a este problema. Alguna sugerencia de como solucionarlo? Saludos, George ????????????????????????????????????????????????????????????????????????????? ? FWH 64 for Harbour 19.03 (MSVC++) Mar. 2019 Harbour development power ?? ? (c) FiveTech 1993-2019 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8/10 ?? ???????????????????????????????????????????????????????????????????????????????   ????????????????????????????????????????????????????????????????????????????? ********************************************************************** ** Visual Studio 2017 Developer Command Prompt v15.9.11 ** Copyright (c) 2017 Microsoft Corporation ********************************************************************** [vcvarsall.bat] Environment initialized for: 'x86_x64' Compiling... Harbour 3.2.0dev (r1801051438) Copyright (c) 1999-2016, <!-- m --><a class="postlink" href="http://harbour-project.org/">http://harbour-project.org/</a><!-- m --> Compiling 'maria01.prg' and generating preprocessed output to 'maria01.ppo'... Lines 4887, Functions/Procedures 2 Generating C source output to 'maria01.c'... Done. Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27030.1 for x64 Copyright (C) Microsoft Corporation. All rights reserved. maria01.c FiveH64.lib(FWMARIA.obj) : error LNK2019: unresolved external symbol nxs_crypt referenced in function write_to_file maria01.exe : fatal error LNK1120: 1 unresolved externals * Linking errors *
error LNK2019: unresolved external symbol nxs_crypt
George, Por favor enlaza esta libreria xhb.lib de 64 bits para MSVC: [url:2zc2dys6]https&#58;//github&#46;com/FiveTechSoft/harbour_and_xharbour_builds/blob/master/xhb_msvc64&#46;zip[/url:2zc2dys6]
error LNK2019: unresolved external symbol nxs_crypt
Gracias Antonio. Ahora compila bien.
error LNK2019: unresolved external symbol nxs_crypt
George, Aqui tienes el Harbour 64 bits para Visual Studio Community 2019 más reciente: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=16&t=37140">viewtopic.php?f=16&t=37140</a><!-- l -->
error ORDBAGNAME con mysql tdolphin y xbrowse
Estimados, por favor me ayudan con la siguiente situacion, tengo una tabla, con dos campos, codigo y nombre, cuando genero la consulta me sale en el xbrowse de forma correcta y me la ordena bien si hago click sobre la cabecera, no importa si es el campo codigo o el campo nombre, pero cuando hago un click sobre un registro, para modificarlo, o solo ver su contenido completo en otro dialogo, al volver al xbrowse, me sale este error. Time from start: 0 hours 0 mins 19 secs Error occurred at: 23/08/2018, 21:04:03 Error description: Error DBCMD/2001 Workarea not in use: ORDBAGNAME este es parte del codigo FUNCTION Menu_Marca_Extintores(cEmpresa,cUsuario) Local oDlg, oBrw, oFont2, oCol, oSay, oBtn2[ 9 ] LOCAL oGet,nIndex,aIdx:={} LOCAL cBusca := Space(60) Local cSeek:="" cExt_Mar:=XServer:Query("SELECT cod_mar, nom_mar FROM ext_mar ORDER BY cod_mar") Define Font oFont2 Name "Tahoma" Size 0,-11 Bold DEFINE DIALOG oDlg ResName "BROW6BC" TITLE "TABLA MARCA EQUIPOS" //COLOR Rgb( 255, 0, 0 ), Rgb(185,220,255) oBrw:=TxBrowse():New(oDlg) oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW // Con cursor de todo el renglón oBrw:nColDividerStyle := LINESTYLE_RAISED oBrw:nRowDividerStyle := LINESTYLE_RAISED oBrw:bClrSelFocus := {|| { nRGB( 0, 0, 0), nRGB(128,255,128) } } // para barra de linea selecc cuando el control tiene el foco oBrw:lColDividerComplete := (.t.) // (.T.) Mantiene siempre llena la pantalla oBrw:nHeaderHeight := 35 // Altura de los encabezados oBrw:nRowHeight := 25 // Altura del renglón oBrw:nHeaderLines := 3 // Número de líneas de encabezados oBrw:nDataLines := 2 // Número de líneas de detalle oBrw:nFooterHeight := 20 // Altura del footer oBrw:nFooterLines := 2 // Número de líneas en el footer oBrw:lFooter := (.T.) // Sí queremos línea de footer oBrw:lHScroll := (.T.) // Quitamos el scroll horizontal oBrw:bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } oBrw:l2007:=.T. oBrw:lAutoSort:=.T. oBrw:bLDblClick := {|| Add_Marca_Extintores(.F.,oBrw, cExt_Mar), cExt_Mar:Refresh() } oBrw:oFont := oFont2 oBrw:SetDolphin(cExt_Mar,.T.,.T.) oBrw:aCols[1]:cHeader := "Código" oBrw:aCols[1]:bStrData := { || cExt_Mar:cod_mar } oBrw:aCols[1]:nHeadStrAlign := AL_CENTER oBrw:aCols[1]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[1]:nWidth := 100 oBrw:aCols[1]:cSortOrder := "cod_mar" oBrw:aCols[1]:bLClickHeader := {|| oBrw:GoTop() } oBrw:aCols[1]:cToolTip :="Haga doble Click para ordenar por código" oBrw:aCols[2]:cHeader := "Detalle" oBrw:aCols[2]:bStrData := { || cExt_Mar:nom_mar } oBrw:aCols[2]:nHeadStrAlign := AL_CENTER oBrw:aCols[2]:nDataStrAlign := AL_LEFT //LEFT oBrw:aCols[2]:nWidth := 300 oBrw:aCols[2]:cSortOrder := "nom_mar" oBrw:aCols[2]:bLClickHeader := {|| oBrw:GoTop() } oBrw:aCols[2]:cToolTip :="Haga doble Click para ordenar por Detalle" ACTIVATE DIALOG oDlg CENTERED oFont2:End() cExt_Mar:End() Return NIl alguien me puede indicar que puede ser, la tabla tiene como clave primaria el codigo. Atte.,
error ORDBAGNAME con mysql tdolphin y xbrowse
Disculpen me falto agregar algo, la función FUNCTION Add_Marca_Extintores(lAppend,oBrw, cExt_Mar) *----------------------------------------------- LOCAL oGets:= Array( 30 ) Local oBtns:= Array( 2 ) Local oBmp,oDlg1,oFont1 LOCAL lAceptar := .F. Local aCampos,aValues,aWhere Local cCod_Mar :=Space(04), cNom_Mar :=Space(30) If lAppend cCod_Mar := Space(04) cNom_Mar := Space(30) Else cCod_Mar := cExt_Mar:cod_mar cNom_Mar := cExt_Mar:nom_mar Endif Define Font oFont1 Name "Tahoma" Size 0,-11 Bold DEFINE DIALOG oDlg1 RESOURCE "Ingreso_01" TITLE "Ingreso Marca" REDEFINE SAY oGets[1] PROMPT "Codigo" ID 301 OF oDlg1 FONT oFont1 REDEFINE SAY oGets[2] PROMPT "Detalle" ID 302 OF oDlg1 FONT oFont1 REDEFINE GET cCod_Mar PICTURE "!!!!" ID 101 OF oDlg1 FONT oFont1 UPDATE When lAppend VALID CodMarca_Extintores(cCod_Mar,oDlg1) COLOR Rgb( 064, 0, 0 ), Rgb(255,255,200) REDEFINE GET cNom_Mar PICTURE REPL("!",30) ID 102 OF oDlg1 FONT oFont1 UPDATE COLOR Rgb( 064, 0, 0 ), Rgb(255,255,200) REDEFINE BUTTONBMP oBtns[1] ID 201 OF oDlg1 PROMPT "&Grabar" When !Empty(cNom_Mar); ACTION ( lAceptar := .T., oDlg1:End() ) BITMAP "Grabar" TEXTRIGHT REDEFINE BUTTONBMP oBtns[2] ID 202 OF oDlg1 PROMPT "&Salir"; ACTION ( oDlg1:End() ) BITMAP "Cancelar" TEXTRIGHT cancel ACTIVATE DIALOG oDlg1 CENTERED IF lAceptar == .T. IF lAppend == .T. aCampos:={ 'cod_mar', 'nom_mar' } aValues:={ cCod_Mar , cNom_Mar } xServer:Insert("ext_mar", aCampos, aValues ) Else aCampos:={ 'nom_mar' } aValues:={ cNom_Mar } aWhere := "cod_mar='"+AllTrim(cCod_Mar)+"'" xServer: Update( "ext_mar", aCampos, aValues, aWhere ) Endif Endif SetDolphin( oBrw, cExt_Mar,.f. ) cExt_Mar:Refresh() oBrw:SetFocus() oBrw:Refresh() RETURN NIL
error Pcode 7
Hola otra de programacion necesito saber como soluciono este tengo un modulo en OBJ y no tengo el codigo fuente, quiero generar mi EXE pero me arroja este error PCODE 7 como puedo solucionar esto. Atte, Antonio Díaz
error Pcode 7
Antonio, En realidad la solución correcta es conseguir el OBJ recompilado con la versión adecuada de xHarbour. Aqui tienes una solución bastante "arriesgada" pero que puede servirte en caso de no poder obtenerlo: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=86146#p86146">viewtopic.php?p=86146#p86146</a><!-- l -->
error Samples->explbar2 FWH 10.9
Estimados alguien sabe porque me da error al compilar el programa explbar2. El 1 y el 3 los genera. El errorlog es el siguiente Application =========== Path and name: C:\FWH\samples\explbar2.exe (32 bits) Size: 1,465,856 bytes Time from start: 0 hours 0 mins 0 secs Error occurred at: 10/21/10, 09:20:32 Error description: Error BASE/1081 Argument error: + Args: [ 1] = N 92 [ 2] = U Stack Calls =========== Called from: .\source\classes\TEXPLBAR.PRG => TEXPLORERBAR:CHECKSCROLL(147) Called from: .\source\classes\TEXPLBAR.PRG => TEXPLORERBAR:ADDPANEL(133) Called from: explbar2.prg => EXPLBARINIT(25) Called from: explbar2.prg => (b)MAIN(14) Called from: .\source\classes\DIALOG.PRG => TDIALOG:INITIATE(720) Called from: .\source\classes\DIALOG.PRG => TDIALOG:HANDLEEVENT(928) Called from: => DIALOGBOX(0) Called from: .\source\classes\DIALOG.PRG => TDIALOG:ACTIVATE(273) Called from: explbar2.prg => MAIN(14) Gracias
error Samples->explbar2 FWH 10.9
Me pasa solo a mi???
error Samples->explbar2 FWH 10.9
Lo acabo de compilar con 10.9 y funciona perfectamente.
error Samples->explbar2 FWH 10.9
Gracias Simon, una pregunta, FWH 10.9 Harbour de Antonio y BCC582? Gracias
error SetHandleCount
Hola soy nuevo en esta seccion saludos a todos: He compilado la primera aplicación con PPC y me da el siguiente error que no se como corregir: FiveCEC.lib(SETHANDL.obj) : error LNK2019: unresolved external symbol SetHandleCount referenced in function HB_FUN_SETHANDLECOUNT La instruccion que hace referencia es : SetHandleCount(1000) pero no esta en FiveCEC.LIB. Un saludo Carlos
error SetHandleCount
Carlos, Tengo entendido que no se usa en las plataformas de 32 bits. Esperemos lo confirmen los gurus.
error SetHandleCount
Hola wmormar: En primer lugar gracias por tu interes y creo que tienes razon ya que lo he quitado y si funciona a ver cuando use varias bases a la vez si no me da error. Un saludo Carlos
error SetHandleCount
Carlos, Es como te indica William. No se usa en 32 bits <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
error SetHandleCount
[quote="Antonio Linares":1ijtxbq7]Carlos, Es como te indica William. No se usa en 32 bits <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:1ijtxbq7] Hola Antonio, y en 64Bits ? Estoy obteniendo un mensaje "Max files handles permited : ( SetHandleCount() ) 0 FWH64 , VS 2012 Saludos
error TOLEAUTO:SORT( 0 )
Hi, I have this code: cQr := "SELECT t0.articolo as codice, t0.descrarticolo as descrizione, t0.ordinamento as ORDINA FROM articoli t0" +; "WHERE t0.ordinamento LIKE 'XYZ%' ORDER BY t0.ordinamento" oDbf:Open( cQr , "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=FILE.mdb", 1, 3 ) oDbf:sort("ORDINA") and get this error: Error description: Error ADODB.Recordset/6 DISP_E_UNKNOWNNAME: SORT Args: [ 1] = C ORDINA Stack Calls =========== Called from: => TOLEAUTO:SORT( 0 ) can anyone help me please?
error TOLEAUTO:SORT( 0 )
damianodec Over the years I have found troubleshooting sql statements easier ( to see ) in this format .. [code=fw:5t5x7dk8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cQr := <span style="color: #ff0000;">"SELECT t0.articolo as codice, "</span><br />cQr += <span style="color: #ff0000;">"t0.descrarticolo as descrizione, "</span><br />cQr += <span style="color: #ff0000;">"t0.ordinamento as ORDINA "</span><br />cQr += <span style="color: #ff0000;">"FROM articoli t0 "</span> <br />cQr += <span style="color: #ff0000;">"WHERE t0.ordinamento LIKE 'XYZ%' ORDER BY t0.ordinamento"</span><br /> </div>[/code:5t5x7dk8] Try your sort like this .. [code=fw:5t5x7dk8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oDbf:<span style="color: #000000;">sort</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"t0.ordinamento"</span><span style="color: #000000;">&#41;</span> <br /> </div>[/code:5t5x7dk8] Rick Lipkin
error TProgress
Hola: En Windows Vista y Windows 7 64 bits y con temas activados, TProgress se queda colgado al hacer SetPos( xx ). Bajo 32 bits funciona sin problemas. ¿Hay alguna solución?. Muchas gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
error TProgress
Hola: ¿A alguien más le sucede?. Gracias <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
error TXBROWSE:CARGOS
Hola gente, en la versión 23.07 me da este error, cosa que en la 22.12 no. Me falta agregar alguna librería? Este es parte del código: *----------------- DEFINE WINDOW oWndChild MDICHILD OF oWnd FROM 0, 0 TO 24, 79TITLE "Carga Informe de Auditoría " font oFont11 DEFINE DIALOG princfac RESOURCE "Informe" ; OF oWndChild REDEFINE FOLDER ofld1 ID 110 OF princfac ; PROMPT "&Encabezado", "&Información General", "No Conformidades Anteriores", "Resultados", "Cierre" ; // BITMAPS "new", "open1", "Presupu"; DIALOGS "solapa1", "solapa2w", "Solapa5w", "Solapa3w", "Solapa4w" // round 10 transparent // BOTTOM * 4 ------------------------------------------------------------------------------------------------------------------------ REDEFINE GET onrocli var xnrocli ID 101 OF ofld1:aDialogs[ 1 ] picture "999999" valid iif ( xnrocli <> 0, ( val_cli( xnrocli ), onrocli:Refresh(), onomcli:refresh(), odircli:refresh(), BuscoAntInfo( xnrocli, xNUsuario, ofld1:aDialogs[ 1 ] ), .t. ), .t. ) redefine BTNBMP BtnB prompt HB_UTF8CHR( 57626 ) font oSegoe ID 4016 OF ofld1:aDialogs[ 1 ] noborder ACTION ( val_cli( 9999 ), onrocli:Refresh(), onomcli:refresh(), odircli:refresh(), BuscoAntInfo( xnrocli, xNUsuario, ofld1:aDialogs[ 1 ] ), .t. ) BtnB:lTransparent = .t. REDEFINE say onomcli var xnombre ID 202 OF ofld1:aDialogs[ 1 ] REDEFINE say odircli var xdomic ID 206 OF ofld1:aDialogs[ 1 ] REDEFINE COMBOBOX oAudit_ant var wAudit_Ant ITEMS Taudit_antf ; ON CHANGE ( xAudit_Ant := oAudit_ant:nAt, CargoAntInfo( xAudit_Ant, ofld1:aDialogs[ 1 ] ) ) ; ID 4001 OF ofld1:aDialogs[ 1 ] when len( Taudit_antf ) > 0 REDEFINE say oNaudit var xnaudit ID 4022 OF ofld1:aDialogs[ 1 ] picture "99999999" REDEFINE say oSitios var xSitios ID 102 OF ofld1:aDialogs[ 1 ] picture "@x" REDEFINE say oContacto VAR xContacto ID 103 OF ofld1:aDialogs[ 1 ] picture "@x" redefine say oEmail var xEmail id 104 of ofld1:aDialogs[ 1 ] picture "@x" redefine say oFecha_Ini var dtoc( xFecha_Ini ) id 105 of ofld1:aDialogs[ 1 ] redefine say oFecha_Fin var dtoc( xFecha_Fin ) id 106 of ofld1:aDialogs[ 1 ] redefine say oCriterio var xCriterio id 107 of ofld1:aDialogs[ 1 ] redefine say oLiderAudit var xLiderAudit id 108 of ofld1:aDialogs[ 1 ] picture "9999" //valid ( val_usua( xLiderAudit ), oLiderAudit:Refresh(), oNomAudit:refresh(), .t. ) redefine say oNomAudit var xNomAudit id 4015 of ofld1:aDialogs[ 1 ] REDEFINE say oNormas var xNormas ID 4012 OF ofld1:aDialogs[ 1 ] * 2 ------------------------------------------------------------------------------------------------------------- REDEFINE XBROWSE oRApertur ID 10 OF ofld1:aDialogs[ 2 ] FIELDS ; RApertur->nombre, ; RApertur->apellido, ; RApertur->CargoArea ; headers "Nombre", "Apellido", ; "CargoArea" ; Sizes 250, 250, 250 ; ALIAS AliasRA autosort FASTEDIT LINES CELL font ofontBR // BACKGROUND aGrad HORIZONTAL colorxbrw( oRApertur, .f. ) WITH OBJECT oRApertur:Nombre :bOnPostEdit := { | o, x, k | RApertur->nombre := x } //PostEdit( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oRApertur:Apellido :bOnPostEdit := { | o, x, k | ( RApertur->Apellido := x ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oRApertur:CargoArea :bOnPostEdit := { | o, x, k | ( RApertur->CargoArea := x, veofin() ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END If !Empty( oRApertur:aCols ); oRApertur:Cargos := nil; endif oRApertur:bLClicked := { || ( dbselectarea( "RApertur" ), ofld1:aDialogs[ 2 ]:update(), oRApertur:gotop(), oRApertur:update(), oRApertur:refresh() ) } oRApertur:bKeyDown := { | nKey | VeoReg(, 1, oRApertur, nkey, "RApertur" ) } redefine say oObjetivo var xObjetivo memo id 4001 of ofld1:aDialogs[ 2 ] update redefine get oAlcance var xAlcance memo id 132 of ofld1:aDialogs[ 2 ] update redefine get oManuales var xManuales id 102 of ofld1:aDialogs[ 2 ] redefine get oReqNoApli var xReqNoApli id 4005 of ofld1:aDialogs[ 2 ] redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Editar " font oSegoe oNota id 4002 OF ofld1:aDialogs[ 2 ] ACTION RichEdit5( @xInstrucciones, "Instrucciones", 9, 9, 30, 140 ) redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Editar " font oSegoe oNota id 4003 OF ofld1:aDialogs[ 2 ] ACTION RichEdit5( @xComentarios , "Comentarios ", 9, 9, 30, 140 ) redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Editar " font oSegoe oNota id 4004 OF ofld1:aDialogs[ 2 ] ACTION RichEdit5( @xIntroduccion , "Introducción ", 9, 9, 30, 140 ) * 3 ------------------------------------------------------------------------------------------------------------------------ REDEFINE XBROWSE oNoConfAnt ID 11 OF ofld1:aDialogs[ 3 ] FIELDS ; au_NCAnt->hecho, ; au_NCAnt->comentario, ; au_NCAnt->Estado, ; au_NCAnt->Interna ; headers "NoConf", "Comentario", ; "Estado", "Interna" ; SIZES 230, 230, 230, 50 ; ALIAS AliasNCA autosort FASTEDIT LINES CELL font ofontBR // BACKGROUND aGrad HORIZONTAL oNoConfAnt:lHScroll := ( .f. ) If !Empty( oNoConfAnt:aCols ); oNoConfAnt:Cargos := nil; endif colorxbrw( oNoConfAnt, .f. ) WITH OBJECT oNoConfAnt:NoConf :bOnPostEdit := { | o, x, k | VeoHecho( x, oNoConfAnt ) } //PostEdit( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oNoConfAnt:comentario :bOnPostEdit := { | o, x, k | VeoComentario( x, oNoConfAnt ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oNoConfAnt:estado :bOnPostEdit := { | o, x, k | ( au_NCAnt->estado := x ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oNoConfAnt:Interna :bOnPostEdit := { | o, x, k | ( au_NCAnt->Interna := upper( x ) ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END oNoConfAnt:bLClicked := { || dbselectarea( "au_NCAnt" ) } oNoConfAnt:bKeyDown := { | nKey | VeoReg(, 1, oNoConfAnt, nkey, "au_NCAnt" ) } * 4 ----------------------------------------------------------------------------------------------------------------------- REDEFINE COMBOBOX oTProcesos var wTProcesos ITEMS TProcesos ; ON CHANGE ( xprocesos := oTProcesos:nAt, CargoProcesoInfo( xprocesos, ofld1:aDialogs[ 4 ] ) ) ; ID 4001 OF ofld1:aDialogs[ 4 ] * REDEFINE get oSitioProc var xSitioProc ID 102 OF ofld1:aDialogs[ 4 ] // on change (xmodiproc := "S") redefine get oParticipanProc var xParticipanProc memo id 132 of ofld1:aDialogs[ 4 ] update // on change (xmodiproc := "S") * REDEFINE XBROWSE oResultado ID 12 OF ofld1:aDialogs[ 4 ] FIELDS ; au_audit->norma, ; au_audit->apartado, ; // au_audit->proceso, ; au_audit->resultado , ; au_audit->clasifica ; // au_audit->Interna ; headers "Norma", ; "Requisito", ; // "Proceso" , ; "Resultado", ; "Clasifica" ; //,"Interna" ; Sizes 80, 80, 200 ; ALIAS AliasAU autosort FASTEDIT LINES CELL font ofontBR // BACKGROUND aGrad HORIZONTAL colorxbrw( oResultado, .f. ) oResultado:lHScroll := ( .f. ) WITH OBJECT oResultado:Norma :bOnPostEdit := { | o, x, k | VeoNorma( x, oResultado ) } //PostEdit( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oResultado:Requisito :bOnPostEdit := { | o, x, k | VeoApartado( x, oResultado ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END * WITH OBJECT oResultado:Resultado * :bOnPostEdit := { | o, x, k | VeoResultado( x, oResultado ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } * :nEditType := EDIT_GET * END WITH OBJECT oResultado:Clasifica :bOnPostEdit := { | o, x, k | Veo_Clasifica( x, oResultado ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET //_LISTBOX * :aEditListTxt := tHallazgos END * WITH OBJECT oResultado:Interna * :bOnPostEdit := { | o, x, k | ( au_Audit->Interna := upper(x), xmodiproc := "S" ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } * :nEditType := EDIT_GET * END oResultado:bLClicked := { || dbselectarea( "au_audit" ) } oResultado:bKeyDown := { | nKey | VeoReg(, 1, oResultado, nkey, "au_audit" ) } redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Guardar Cambios " font oSegoe oNota id 4002 OF ofld1:aDialogs[ 4 ] ACTION GuardoProceso() * 5 ------------------------------------------------------------------------------------------------------------------------ REDEFINE XBROWSE oRCierre ID 11 OF ofld1:aDialogs[ 5 ] FIELDS ; RCierre->nombre, ; RCierre->apellido, ; RCierre->CargoArea ; headers "Nombre", "Apellido", ; "CargoArea" ; SIZES 250, 250, 250 ; ALIAS AliasRC autosort FASTEDIT LINES CELL font ofontBR // BACKGROUND aGrad HORIZONTAL colorxbrw( oRCierre, .f. ) WITH OBJECT oRCierre:Nombre :bOnPostEdit := { | o, x, k | RCierre->nombre := x } //PostEdit( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oRCierre:Apellido :bOnPostEdit := { | o, x, k | ( RCierre->Apellido := x ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END WITH OBJECT oRCierre:CargoArea :bOnPostEdit := { | o, x, k | ( RCierre->CargoArea := x, veofin() ) } // PostEditc( o, x, k ) } // EditaCelda( oaufactu, 1, x, k, lFirstEdit ) } // PostEdit(o,x,k) } :nEditType := EDIT_GET END oRCierre:bKeyDown := { | nKey | VeoReg(, 1, oRCierre, nkey, "RCierre" ) } oRCierre:bLClicked := { || dbselectarea( "RCierre" ) } redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Editar " font oSegoe oNota id 4004 OF ofld1:aDialogs[ 5 ] ACTION RichEdit5( @xConclusion, "Conclusión", 9, 9, 30, 140 ) redefine BTNBMP 2007 prompt spac( 5 ) + HB_UTF8CHR( 57604 ) + " Editar " font oSegoe oNota id 4003 OF ofld1:aDialogs[ 5 ] ACTION RichEdit5( @xComCierre , "Comentarios Cierre ", 9, 9, 30, 140 ) * 6 ------------------------------------------------------------------------------------------------------------------------ redefine BTNBMP oCanc1 2007 prompt HB_UTF8CHR( 57642 ) + " Confirma " font oSegoe oNota id 991 OF princfac ACTION ActualiInfo() // when xfinalizada = nil redefine BTNBMP 2007 prompt HB_UTF8CHR( 58102 ) + " Imprimir " font oSegoe ID 4002 OF princfac ACTION ( ImprimirInfo() ) redefine BTNBMP oCan 2007 prompt HB_UTF8CHR( 57615 ) + " Volver " font oSegoe ID 992 OF princfac ACTION ( lsave := .f., dbCloseall() , princfac:End(), oWndChild:End() ) // cancel oCan:lCancel := .t. redefine BTNBMP oCanc 2007 prompt HB_UTF8CHR( 57615 ) + " Dar por terminada " font oSegoe ID 4001 OF princfac ACTION ( CierraAudit( xnaudit ), dbCloseall() , princfac:End(), oWndChild:End() ) // when xLiderAudit = xNUsuario // cancel ACTIVATE DIALOG princfac CENTERED nowait ON INIT ( princfac:Move( 0, 0 ) ) //, oRich:LoadRtf( xobserva ), oRich:PostMsg( WM_KEYDOWN, VK_HOME, 0 )) oWndChild:nWidth := princfac:nWidth + 7 oWndChild:nHeight := princfac:nHeight + 32 ACTIVATE WINDOW oWndChild on init ( onrocli:setfocus() )
error TXBROWSE:CARGOS
[code=fw:g18ol7m8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oRApertur <span style="color: #0000ff;">ID</span> <span style="color: #000000;">10</span> <span style="color: #0000ff;">OF</span> ofld1:<span style="color: #000000;">aDialogs</span><span style="color: #000000;">&#91;</span> <span style="color: #000000;">2</span> <span style="color: #000000;">&#93;</span> FIELDS ;<br />RApertur->nombre, ;<br />RApertur->apellido, ;<br />RApertur->CargoArea ;<br />headers <span style="color: #ff0000;">"Nombre"</span>, <span style="color: #ff0000;">"Apellido"</span>, ;<br /><span style="color: #ff0000;">"CargoArea"</span> ;<br />Sizes <span style="color: #000000;">250</span>, <span style="color: #000000;">250</span>, <span style="color: #000000;">250</span> ;<br /><span style="color: #0000ff;">ALIAS</span> AliasRA autosort FASTEDIT LINES CELL <span style="color: #0000ff;">font</span> ofontBR <span style="color: #B900B9;">// BACKGROUND aGrad HORIZONTAL</span><br />&nbsp;</div>[/code:g18ol7m8] Can you please clarify are you using ALIAS "AliasRA" or "RApertur" ? When you defined the ALIAS AliasRA, then how the FIELDS RApertur->nombre valid? Should it not be AliasRA->nombre ? Can you please clarify?
error TXBROWSE:CARGOS
Anyway, for now, please comment out: [code=fw:15i0jxud]<div class="fw" id="{CB}" style="font-family: monospace;">::<span style="color: #000000;">Cargos</span> := <span style="color: #00C800;">nil</span></div>[/code:15i0jxud] at line 5823 of xbrowse.prg
error TXBROWSE:CARGOS
Mr. Rao, funciono comentando la linea. Con el Alias siempre lo trabaje así y funciono. Muchas gracias
error Warning: Error detected (LME288)
I also this error this morning How I can resolve
error Warning: Error detected (LME288)
I resolve installing bcc730 from embarcadero site
error Warning: Error detected (LME288)
very good
error a crear librería de wbrowse hernan
Estoy compilando la version wbrowse de hernan para hacerla lib, me la crea, pero cuando compilo el programa me da el siguiente error: Error: Unresolved external '_HB_FUN_TACTIVEX' referenced from E:\LIBFIVEHME\LIB\BROWSE17\TWBRWX32.LIB|WBROWSE con xharbour 1.1.0 Luis
error a crear librería de wbrowse hernan
que tal luis me extraña el error del acivex, yo e generado la lib con xharbour y harbour y sin problemas, los archivos a enlazar son: wbrowse.prg, tmultise.prg y wbrwline.c ya probaste agregando estos programas a tu proyecto para er el error que te envia? ya que ese parece ser otro error como que no encuentra la clase activex, y no precismanete de wbrowse salu2 paco
error a crear librería de wbrowse hernan
Francisco siempre hice una lib aparte, y ami también me extraña el error porque al crear la libreria no da ningún mensaje de inconvenientes, pero cuando compilo el programa con la librería me lanza ese error al iniciar el programa. Utilizo el verce 4.3 y cuando termina de compilar lanza el programa y ahí el error. Voy a Probar haciendo lo que me sugeris y luego te comento. Gracias
error after new installation
That error disappeared in previous installations becuase every time I install I remove the lib,include from the previous installation directory. This installation I remove lib,include directory and I faced it again. That error most proberly related to include directory. I remove the old one and then I installed the new version 6.12. Thanks FiveWin for Harbour 6.12 - December 2006 Harbour development power (c) FiveTech, 1993-2006 for Microsoft Windows 95/98/NT/2000/ME and XP Compiling... Harbour Compiler Alpha build 46.2 (Flex) Copyright 1999-2006, <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m --> Compiling 'sitex.prg' and generating preprocessed output to 'sitex.ppo'... sitex.prg(302) Error E0030 Syntax error: "parse error at '@'" sitex.prg(448) Error E0030 Syntax error: "parse error at '@'" sitex.prg(456) Error E0030 Syntax error: "parse error at '@'" sitex.prg(933) Error E0030 Syntax error: "parse error at '@'" sitex.prg(1636) Error E0030 Syntax error: "parse error at '{|'" 5 errors No code generated Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland Error E2194: Could not find file 'sitex.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 'SITEX.OBJ' * There are errors E:\programs\clipper\FWH\sitex>edit sitex.prg
error after new installation
Ehab, What source code do you have at 302 ? sitex.prg(302) Error E0030 Syntax error: "parse error at '@'"
error after new installation
I do not beleive there is something in the code. Last time of installation when I got the same error I erased the old include,lib dir and installed the new one . It worked fine. [code:137tifdl] @ 1, 1 LISTBOX oLbx FIELDS; cust->CU_ACCT,; cust->CU_appr,; cust->cu_stre,; cust->cu_coun,; cust->cu_city,; cust->cu_gove,; cust->CU_phon,; cust->CU_fax,; cust->CU_MAN,; cust->CU_mobi,; cust->CU_NAME; HEADERS "Account No&#46;",; "Aprreviation",; "Street",; "Country",; "City",; "Governer",; "Phone",; "Fax",; "Customer Man",; "Customer Mobile",; "NAME"; ON CHANGE oLbx&#58;Say&#40; "Rec&#58; " + cValToChar&#40; RecNo&#40;&#41; &#41; + "/" + ; cValToChar&#40; RecCount&#40;&#41; &#41; &#41;; Line 302^^^^SIZE 480, 280 OF custDlg ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @14,35 SAY oRec OF custDlg // Lets use different row colors oLbx&#58;nClrText = &#123; || SelColor&#40; 3 &#41; &#125; oLbx&#58;nClrForeFocus = &#123; || SelColor&#40; 3 &#41; &#125; // Uncomment this to quickly calculate the desired columns width // Right click with the mouse over the browse and you will // see the columns sizes! oLbx&#58;bRClicked = &#123; || oLbx&#58;ShowSizes&#40;&#41; &#125; [/code:137tifdl]
error after new installation
Ehab, Try removing this (red color): cValToChar( RecCount() ) )[color=red:1sky841x]; [/color:1sky841x]
error after new installation
Compiling... Harbour Compiler Alpha build 46.2 (Flex) Copyright 1999-2006, <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m --> Compiling 'sitex.prg' and generating preprocessed output to 'sitex.ppo'... sitex.prg(301) Error E0030 Syntax error: "parse error at '@'" sitex.prg(446) Error E0030 Syntax error: "parse error at '@'" sitex.prg(454) Error E0030 Syntax error: "parse error at '@'" sitex.prg(931) Error E0030 Syntax error: "parse error at '@'" sitex.prg(1634) Error E0030 Syntax error: "parse error at '{|'" 5 errors No code generated Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland Error E2194: Could not find file 'sitex.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 'SITEX.OBJ' * There are errors [code:20652ugj] @ 1, 1 LISTBOX oLbx FIELDS; cust->CU_ACCT,; cust->CU_appr,; cust->cu_stre,; cust->cu_coun,; cust->cu_city,; cust->cu_gove,; cust->CU_phon,; cust->CU_fax,; cust->CU_MAN,; cust->CU_mobi,; cust->CU_NAME; HEADERS "Account No&#46;",; "Aprreviation",; "Street",; "Country",; "City",; "Governer",; "Phone",; "Fax",; "Customer Man",; "Customer Mobile",; "NAME"; ON CHANGE oLbx&#58;Say&#40; "Rec&#58; " + cValToChar&#40; RecNo&#40;&#41; &#41; + "/" ; SIZE 480, 280 OF custDlg *^^^^^^^^line 301^^^^^^^^^^^^^^^^^^^ &#46;&#46;&#46;&#46; &#46;&#46;&#46;&#46; oGet2&#58;Refresh&#40;&#41;,oDlg&#58;Refresh&#40;&#41;&#41;; VALID &#40;reset&#40; v_ci_cocmbo, oCbx3, "cust","cu_gove","cu_city" &#41;, &#46;t&#46;&#41; *^^^^^^^^line 446^^^^^^^^^^^^^^^^^^^ &#46;&#46;&#46;&#46; &#46;&#46;&#46;&#46; ON CHANGE &#40; oGet3&#58;VarPut&#40; PADR&#40; v_go_cocmbo, 30 &#41; &#41;,; oGet3&#58;Refresh&#40;&#41;,oDlg&#58;Refresh&#40;&#41;&#41; *^^^^^^^^line 454^^^^^^^^^^^^^^^^^^^ &#46;&#46;&#46;&#46; &#46;&#46;&#46;&#46; "Minimum Volume"; SIZE 480, 280 OF oDlg *^^^^^^^^line 931^^^^^^^^^^^^^^^^^^^ &#46;&#46;&#46;&#46; &#46;&#46;&#46;&#46; 200,200,200,200; SIZE 480, 280 OF oDlg *^^^^^^^^line 1634^^^^^^^^^^^^^^^^^^^ [/code:20652ugj]
error after new installation
Ehab, This line is wrong: ON CHANGE oLbx:Say( "Rec: " + cValToChar( RecNo() ) + "/" ; Try this: ON CHANGE oLbx:Say( "Rec: " + cValToChar( RecNo() ) ) ; I might point out that the recno is pretty much useless to anyone except a programmer and then only for testing (maybe that is what you are doing). Since the recno for a record can change, it can really confuse a user (they think it is a fixed ID No). James
error after new installation
No the same error . May I send copy of the application files to private mails. Compiling... Harbour Compiler Alpha build 46.2 (Flex) Copyright 1999-2006, <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m --> Compiling 'sitex.prg' and generating preprocessed output to 'sitex.ppo'... sitex.prg(301) Error E0030 Syntax error: "parse error at '@'" sitex.prg(446) Error E0030 Syntax error: "parse error at '@'" sitex.prg(454) Error E0030 Syntax error: "parse error at '@'" sitex.prg(931) Error E0030 Syntax error: "parse error at '@'" sitex.prg(1634) Error E0030 Syntax error: "parse error at '{|'" 5 errors No code generated Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland Error E2194: Could not find file 'sitex.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 'SITEX.OBJ' * There are errors E:\programs\clipper\FWH\sitex> [code:2zyx8p23] ON CHANGE oLbx&#58;Say&#40; "Rec&#58; " + cValToChar&#40; RecNo&#40;&#41; &#41; &#41; ; SIZE 480, 280 OF custDlg *^^^^^^^^^^^^line 301^^^^^^^^^^^^^^^^^ [/code:2zyx8p23]
error after new installation
Ehab, The file you sent compiles without error for me. James
error after new installation
That is what I told you both together . That is a matter related to old files . I removed all *.obj . *.exe in my directory . I removed old directories of installation \harbour,\FWH. I need advice what else to remove and reinstall .
error after new installation
Ehab, Are you using the [x]Harbour build that we distribute or do you build it from the [x]Harbour CVS ?
error after new installation
No I used the one you distribute.
error after new installation
Ehab, Please remove all CH files in your harddisk, before installing Harbour and FWH.
error after new installation
Ehab, It is a bug in the Harbour compiler. Simply place a space ( " " ) in front of each line here and it will compile fine: [code:19lqasyl] @ 1, 1 LISTBOX oLbx FIELDS; cust->CU_ACCT,; cust->CU_appr,; cust->cu_stre,; cust->cu_coun,; cust->cu_city,; cust->cu_gove,; cust->CU_phon,; cust->CU_fax,; cust->CU_MAN,; cust->CU_mobi,; cust->CU_NAME; HEADERS "Account No&#46;",; "Aprreviation",; "Street",; "Country",; "City",; "Governer",; "Phone",; "Fax",; "Customer Man",; "Customer Mobile",; "NAME"; SIZE 480, 280 OF custDlg [/code:19lqasyl]
error al abrir archivos RTF
Hola: Estoy intentando abrir un archivo RTF a través de los ejemplos del directorio de samples llamados TESTRICH y TESTRTF. En ambos casos al abrir los RTF del propio directorio me aparece un 'unrecoverable error 9010' y algo así como hb_xFree() invalid pointer ¿? Saludos,
error al abrir archivos RTF
Jose Luis ! Con FWH Ver2.6 Septiembre y su xHarbour que distribuye Antonio, compilo los dos ejemplos que pones y abro los 3 archivos.rtf que hay de ejemplo sin ningun problema... Si quieres que haga alguna otra prueba, me lo dices. Un saludo
error al abrir recordset
Hola!! Tengo un extraño problema. Trabajo con una aplicación usando recordset. El programa va bien. Pero si lo dejo abierto sin hacer nada durante mucho tiempo (por ejemplo media hora), me da un error cuando intento abrir el recordset. Me dice que no lo pudo abrir porque no lo reconoce. Aparentemente, es como si la conexión se hubiese cerrado automáticamente al estar el programa inactivo mucho tiempo. No encuentro otra posible explicación. Pero ya estoy un poco desesperado, pues no sé como solucionarlo. Tamposo sé si la solución está en el código del programa o en el servidor de la base de datos. Trabajo con SQL Server 2005. Ayuda porfavoooorr <!-- s:twisted: --><img src="{SMILIES_PATH}/icon_twisted.gif" alt=":twisted:" title="Twisted Evil" /><!-- s:twisted: -->
error al abrir recordset
Javier, El "problema", que se te presenta es porque SQL, tiene un limite para dejar abiertos los cursores, si por ejemplo abres la tabla desde el administrador corparativo (boton derecho y devolver todas las filas), el SQL te genera una lista con los registros de las tablas, pues bien, deja esa consulta "ABIERTA" unos 4 o 5 minutos, y SQL te enviara un mensaje diciendo que para volver a "ver" la lista, es necesario generar de nuevo la consulta. Ahora mi pregunta, Porque dejar abierto tanto tiempo el RS, desde tu programa? S A L U D O S
error al abrir recordset
Pues lo dejo abierto en la consulta de datos. Pues tengo un formulario que muestra los campos y con unos botones de navegación, avanzo o retrocedo. Cada vez que avanzo, se produce un [code=fw:1u0yzokk]<div class="fw" id="{CB}" style="font-family: monospace;">oRs:<span style="color: #000000;">MoveNext</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>[/code:1u0yzokk] y asigno los nuevos valores a las variables del formulario, de modo que tengo que dejar abierto el cursor, hasta que el usuario avandone la consulta. Entonces, ¿como puedo mantener la consulta sin tener abierto el cursor? <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
error al abrir recordset
Podrias poner aqui el trozo de codigo, donde creas y abres el rs. por favor. Saludos.
error al abrir recordset
Hola Riacad, Es extraño pero el error solo se produce ocasionalmente. Creo que tal vez es un fallo de diseño. Voy a probarlo mas a ver si lo localizo y te puedo dar mas detalles. Gracias por contestar. Un saludo.
error al abrir recordset
Esta bien, estoy a la espera.
error al acceder a conexión con María db
Buenos días hoy quise entrar a mi programa y me dio el error que envío en el adjunto. Y no entiendo a que se debe alguno de Uds sabrían decirme a que se debe, ya que hasta hace dos días funcionaba correcto [url:17zr7n3w]https&#58;//drive&#46;google&#46;com/file/d/1om_crfxs-XD4WNdYGJKsyxvSOvej7Nml/view?usp=sharing[/url:17zr7n3w] Y como podría solucionarlo Desde ya muchísimas gracias
error al acceder a conexión con María db
Permiso necesario. utilice otro método para muestrar el error, por favor. Saludos.
error al acceder a conexión con María db
Gracias Karinha el problema fue que no se porque, se borro la base de datos, tenía una copia y la reinstale. El porque desaparecio no lo se. Luis
error al actualizar un campo indice
Me está produciendo un error, el modificar un campo en un ABM al ser este un índice o parte de una expresión de índice. El error dice "ntvdm ha encontrado un error". Quien pueda tirar alguna sugerencia, desde ya muchas gracias!
error al borrar registro con xbrowse tdophin mysql
Estimados tengo el siguiente problema, cuando hago una consulta tal como: cTab_Modelo:=XServer:Query("SELECT cod_modelo, nom_modelo, cod_marca FROM tab_modelo ORDER BY cod_modelo") le doy por eliminar un registro en particular, con esta instrucción, todo funciona STATIC FUNCTION DelModelo(oBrw,cEmpresa,cAclave,cTab_Modelo) cTab_Modelo:delete() SetDolphin( oBrw, cTab_Modelo,.f. ) cTab_Modelo:Refresh() oBrw:SetFocus() oBrw:Refresh() RETURN( NIL ) Pero si hago esto mismo, con una base relacionada. cTab_Modelo:=xServer:Query("SELECT a.cod_modelo, a.nom_modelo, a.cod_marca, b.cod_marca, b.nom_marca FROM tab_modelo AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca ORDER BY a.cod_modelo") me tira error.. y es solo esto... el LEFT JOIN... me genera esto ??? Time from start: 0 hours 0 mins 43 secs Error occurred at: 12/07/2018, 17:06:54 Error description: Error MYSQL/1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca WHERE cod_modelo = '2' at line 1
error al borrar registro con xbrowse tdophin mysql
Saludos, tenia el mismo probela y la recomendacon es que uses el mismo comando SQL de la consulta para hacer el DELETE o como lo hago ahora, uses DELETE LOW_PIORITY, asi te borra el registro sin problemas, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- m --><a class="postlink" href="https://dba.stackexchange.com/questions/21483/delete-low-priority-row-visibility">https://dba.stackexchange.com/questions ... visibility</a><!-- m -->
error al borrar registro con xbrowse tdophin mysql
If you want to delete a record ( dolphin or any other ) when browsing, simply call: [code=fw:32fedt5p]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">Delete</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp;</div>[/code:32fedt5p] This is simple to use. Very safe. If you use FWH builtin methods you do not commit bugs.
error al borrar registro con xbrowse tdophin mysql
[quote="nageswaragunupudi":2lbylyl5]If you want to delete a record ( dolphin or any other ) when browsing, simply call: [code=fw:2lbylyl5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">Delete</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /> </div>[/code:2lbylyl5] This is simple to use. Very safe. If you use FWH builtin methods you do not commit bugs.[/quote:2lbylyl5] Mr RAO, cuando el registro que se va a borrar esta en una tabla relacionada(mysql), da error y no lo borra con oBrw:delete()...gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
error al borrar registro con xbrowse tdophin mysql
Estimado, como se indica, el borrar solo opera a una tabla unica sin relacion de ningun tipo, pero si la relaciono, se cae la aplicación En este caso, se me cae cTab_Modelo:=xServer:Query("SELECT a.cod_modelo, a.nom_modelo, a.cod_marca, b.cod_marca, b.nom_marca FROM tab_modelo AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca ORDER BY a.cod_modelo") Time from start: 0 hours 0 mins 36 secs Error occurred at: 16/07/2018, 11:08:14 Error description: Error MYSQL/1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca WHERE cod_modelo = '9' at line 1 Asi como se muestra, funciona bien cTab_Modelo:=XServer:Query("SELECT cod_modelo, nom_modelo, cod_marca FROM tab_modelo ORDER BY cod_modelo") esta es la funcion STATIC FUNCTION DelModelo(oBrw,cEmpresa,cAclave,cTab_Modelo, cod_modelo) Local cSql If Alltrim(cAclave)=Alltrim( cEmpresa [15]) cTab_Modelo:delete() SetDolphin( oBrw, cTab_Modelo,.f. ) cTab_Modelo:Refresh() oBrw:SetFocus() oBrw:Refresh() Else TipoMensaje("Usuario no habilitado") Endif RETURN( NIL ) y se invoca asi.. Redefine BtnBmp oBtn2[3] Id 103 Resource "BTO_BORRA" Of oDlg 2007; ACTION (Del_Modelo(oBrw,cTab_Modelo,cEmpresa,cTab_Modelo:cod_modelo),cTab_Modelo:Refresh(),oBrw:Refresh(),oBrw:Gotop()) Tooltip "Permite Borrar y/o Eliminar Registro.."
error al borrar registro con xbrowse tdophin mysql
Preuba Asi [code=fw:19d2gorf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">FUNCTION</span> DelModelo<span style="color: #000000;">&#40;</span>oBrw,cEmpresa,cAclave,cTab_Modelo, cod_modelo<span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">Local</span> cSql<br /><span style="color: #00C800;">If</span> Alltrim<span style="color: #000000;">&#40;</span>cAclave<span style="color: #000000;">&#41;</span>=Alltrim<span style="color: #000000;">&#40;</span> cEmpresa <span style="color: #000000;">&#91;</span><span style="color: #000000;">15</span><span style="color: #000000;">&#93;</span><span style="color: #000000;">&#41;</span><br />  <span style="color: #00C800;">if</span> cTab_Modelo:<span style="color: #000000;">IsSingleTable</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />     cTab_Modelo:<span style="color: #000000;">delete</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />     <span style="color: #00C800;">ELSE</span> <br />     XServer:<span style="color: #000000;">Execute</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"DELETE FROM tab_modelo WHERE cod_modelo = "</span> ClipValue2Sql<span style="color: #000000;">&#40;</span>cTab_Modelo:<span style="color: #000000;">cod_modelo</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><br />  <span style="color: #00C800;">ENDIF</span>   <br />  cTab_Modelo:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />  oBrw:<span style="color: #000000;">SetFocus</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />  oBrw:<span style="color: #0000ff;">Refresh</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />  <span style="color: #00C800;">Else</span><br />  TipoMensaje<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"Usuario no habilitado"</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">Endif</span><br /><span style="color: #00C800;">RETURN</span><span style="color: #000000;">&#40;</span> <span style="color: #00C800;">NIL</span> <span style="color: #000000;">&#41;</span></div>[/code:19d2gorf]
error al borrar registro con xbrowse tdophin mysql
[quote="kpidata":2yuf1u49]Estimado, como se indica, el borrar solo opera a una tabla unica sin relacion de ningun tipo, pero si la relaciono, se cae la aplicación En este caso, se me cae cTab_Modelo:=xServer:Query("SELECT a.cod_modelo, a.nom_modelo, a.cod_marca, b.cod_marca, b.nom_marca FROM tab_modelo AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca ORDER BY a.cod_modelo") Time from start: 0 hours 0 mins 36 secs Error occurred at: 16/07/2018, 11:08:14 Error description: Error MYSQL/1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS a LEFT JOIN tab_marca AS b ON a.cod_marca = b.cod_marca WHERE cod_modelo = '9' at line 1 Asi como se muestra, funciona bien cTab_Modelo:=XServer:Query("SELECT cod_modelo, nom_modelo, cod_marca FROM tab_modelo ORDER BY cod_modelo") esta es la funcion STATIC FUNCTION DelModelo(oBrw,cEmpresa,cAclave,cTab_Modelo, cod_modelo) Local cSql If Alltrim(cAclave)=Alltrim( cEmpresa [15]) cTab_Modelo:delete() SetDolphin( oBrw, cTab_Modelo,.f. ) cTab_Modelo:Refresh() oBrw:SetFocus() oBrw:Refresh() Else TipoMensaje("Usuario no habilitado") Endif RETURN( NIL ) y se invoca asi.. Redefine BtnBmp oBtn2[3] Id 103 Resource "BTO_BORRA" Of oDlg 2007; ACTION (Del_Modelo(oBrw,cTab_Modelo,cEmpresa,cTab_Modelo:cod_modelo),cTab_Modelo:Refresh(),oBrw:Refresh(),oBrw:Gotop()) Tooltip "Permite Borrar y/o Eliminar Registro.."[/quote:2yuf1u49] REPITO MI RESPUESTA INICIAL...usa DELETE LOW_PIORITY, asi te borra el registro sin problemaso cambia DELETE por SELECT en la consulta por, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
error al borrar registro con xbrowse tdophin mysql
oBrw:Delete() in turn calls oQry:Delete() or oRs:Delete(). All the three libraries DOLPHIN, TMYSQL and ADO do NOT support Append, Modify, Delete operations on a query with join. There is only one library, i.e., FWH MariaDB library that supports all operations Append, Modify and Delete of data in the main table of a query with joins also very smoothly. These operations work just like they work with a single table query. We can modify the joining field and we see a refreshed view of the row immediately. All this is done without requery. (Requery is time-consuming and puts undue strain on server and network traffic and good programming practices avoid requery unless essential). FWH created the library not only to overcome the limitations of the existing librarries, but also provide for the very high end neeeds of Corporate programmers heavily relying on server-side scripting. This sample program compares FWH Mariadb, Dolphin and ADO. Anyone having FWH 16.08 or later can compare all three libraries. [code=fw:14m90soh]<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;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> nLib, oCn, oRs, cSql<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> nLib := Alert<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Select Library"</span>, <span style="color: #000000;">&#123;</span> <span style="color: #ff0000;">"FWH-MARIALIB"</span>, <span style="color: #ff0000;">"ADO"</span>, <span style="color: #ff0000;">"DOLPHIN"</span> <span style="color: #000000;">&#125;</span> <span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> == <span style="color: #000000;">0</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;oCn &nbsp; := FW_DemoDB<span style="color: #000000;">&#40;</span> <span style="color: #000000;">&#123;</span> <span style="color: #00C800;">nil</span>, <span style="color: #ff0000;">"ADO"</span>, <span style="color: #ff0000;">"DLP"</span> <span style="color: #000000;">&#125;</span><span style="color: #000000;">&#91;</span> nLib <span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;cSql &nbsp;:= <span style="color: #ff0000;">"SELECT c.id, c.first as name, c.city, c.state as code, s.name as statename FROM customer c LEFT JOIN states s ON c.state = s.code ORDER by c.id"</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> nLib == <span style="color: #000000;">1</span><br />&nbsp; &nbsp; &nbsp; oRs &nbsp; := oCn:<span style="color: #000000;">RowSet</span><span style="color: #000000;">&#40;</span> cSql <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;elseif nLib == <span style="color: #000000;">2</span><br />&nbsp; &nbsp; &nbsp; oRs &nbsp; := FW_OpenRecordSet<span style="color: #000000;">&#40;</span> oCn, cSql <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">else</span> <span style="color: #B900B9;">// nLib == 3</span><br />&nbsp; &nbsp; &nbsp; oRs &nbsp; := oCn:<span style="color: #000000;">Query</span><span style="color: #000000;">&#40;</span> cSql <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br />&nbsp; &nbsp;XBROWSER oRs FASTEDIT<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> nLib == <span style="color: #000000;">3</span><br />&nbsp; &nbsp; &nbsp; oRs:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; oCn:<span style="color: #000000;">End</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">else</span><br />&nbsp; &nbsp; &nbsp; oRs:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; oCn:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br />EXTERNAL TDOLPHINSRV<br />&nbsp;</div>[/code:14m90soh]
error al borrar registro con xbrowse tdophin mysql
GOOGLE TRASLATOR Mr RAO, thank you very much for your explanation, I think it's time to move my systems to the FWH Mariadb library to jump the limitations of the good LIB Dolphin and ADO that gave the initiative to their improvements with FWH Mariadb and thus increase security of data and speed of processes, thanks... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> Mr RAO, muchas gracias por su explicacion, creo que es hora de ir pasando mis sistemas a la libreria FWH Mariadb para asi saltar las limitaciones de las buenas LIB Dolphin and ADO que dieron la iniciativa a sus mejoras con FWH Mariadb y asi aumentar la seguridad de la data y rapidez de los procesos, gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
error al colocar un image en un reporte (extrano)
Estimados:Trabajaba de lo mejor y de repente me arroja un error en la ejecucion, simplemente es una imagen en un reporte. Parte del codigo: // encabezado del Reporte oprn:say(row,1,"1Arriba?Izq",ofn1) oprn:say((row+0)*cantlines,1,"2Arriba?Izq",ofn1) oprn:say((row+1)*cantlines,1,"3Abajo?izq",ofn1) row:=4 cFile:="C:\RC_Temp\Graph.Bmp" @ 1,1 IMAGE oImg FILENAME Alltrim(cFile) OF oWnd oPrn:SayImage(100,200,oImg,100,100)error al cargar el print: Error description: Error BASE/1005 Message not found: TIMAGE:_HDIBStack Calls=========== Called from: => __ERRRT_SBASE(0) Called from: => HBOBJECT:ERROR(176) Called from: => __EVAL(105) Called from: => HBOBJECT:MSGNOTFOUND(0) Called from: => TIMAGE:_HDIB(169) Called from: => TIMAGE:NEW(55) Called from: => REPORTE_M(256) Called from: => (b)DES_MENU(574) Called from: => TC5MENU:COMMAND(714) Called from: => TWINDOW:COMMAND(931) Called from: => TWINDOW:COMMAND(0) Called from: => TWINDOW:HANDLEEVENT(0) Called from: => _FWH(3125) Called from: => WINRUN(0) Called from: => TWINDOW:ACTIVATE(880) Called from: => MAIN(416)De Antemano, Gracias.Caracas, Venezuela
error al colocar un image en un reporte (extrano)
<!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?p=63354#63354">http://forums.fivetechsoft.com/viewtopi ... 3354#63354</a><!-- m -->
error al compilar
Cuando intento compilar con XHARBOUR me arroja el siguiente error. Fatal: Unable to open file 'DBFDBT.LIB' Alguien me puede indicar como solucionar el problema LEANDRO ALFONSÒ Bogotá (Colombia)