topic
stringlengths
1
63
text
stringlengths
1
577k
2155 error hb_cdxindexCheckVersion fivewin/harbour
[quote="lorenzoazz":2pgub6eg]Thanks for the reply. Consider that, the problem rises when hardware goes in suspension mode, so it happens when in stand-by, while you take a coffee break. I mean, if the hardware do not go in stand-by (as a notebook does) , there is no error when i go to recording! I cannot PREVENT the stand-by event, so i cannot dbcommit() before replace()...[/quote:2pgub6eg] My English is very poor DBCOMMIT, DBCOMMITALL, is to be performed at the end of the append or replace Or it is when you leave the record unfinished? You can not have this option selected on your network card [url=http://postimage.org/:2pgub6eg][img:2pgub6eg]http://s14.postimg.org/6ml4qw6kx/Title180.png[/img:2pgub6eg][/url:2pgub6eg]
2155 error hb_cdxindexCheckVersion fivewin/harbour
Yes, it happens only when i leave the record unfinisced! So when i resume from suspension mode, i try to update the record and i git the unrecoverable error!
2155 error hb_cdxindexCheckVersion fivewin/harbour
Please, no one has encountered this error? I think it is a general index error depending on system suspension. I have also read ( do not remeber where) that someone had adopted a trick inserting at program initialization a "Request" REQUEST DESCEND but not working for me.
2155 error hb_cdxindexCheckVersion fivewin/harbour
Look line: 1162, [url:xjc0ndjr]https://github.com/harbour/core/blob/master/src/rdd/dbfcdx/dbfcdx1.c[/url:xjc0ndjr] In xHarbour, Line: 1271 [url:xjc0ndjr]http://searchcode.com/codesearch/view/4483707/[/url:xjc0ndjr] Show what you are doing. Regards,
2155 error hb_cdxindexCheckVersion fivewin/harbour
Corruption detected? Look dbOrderInfo [url:3l54oyvh]http://sourceforge.net/p/xharbour/mailman/message/16232978/[/url:3l54oyvh] Regards.
2155 error hb_cdxindexCheckVersion fivewin/harbour
Lorenzo, Maybe you can first check if a file exists to force the wake up of the computer: [code=fw:1z6io0kg]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">while</span> ! File<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"myfile.txt"</span> <span style="color: #000000;">&#41;</span><br />   SysRefresh<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />end<br /> </div>[/code:1z6io0kg]
2155 error hb_cdxindexCheckVersion fivewin/harbour
2155 Read error on index heading page Explanation: A read error occurred when reading the heading page of the index file, or the header did not contain the .ntx/cdx signature, or the macro compiler returned a syntax error when attempting to compile the key expression. Action: Recreate the index file and check the key expression. Make sure the database header is updated before index recreation.
2155 error hb_cdxindexCheckVersion fivewin/harbour
[quote="Antonio Linares":3bg3vw41]Lorenzo, Maybe you can first check if a file exists to force the wake up of the computer: [code=fw:3bg3vw41]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">while</span> ! File<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"myfile.txt"</span> <span style="color: #000000;">&#41;</span><br />   SysRefresh<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />end<br /> </div>[/code:3bg3vw41][/quote:3bg3vw41] Antonio, thanks but this does not work! It is not a problem of file not found or read error, the problem is coming from the fact that, when in suspension the "static" ? reference to the index file is lost. I got the same error even if i try to relink the index! This is not a question about some wrong code logic of mine, is all about the way windows 8.1 manage and restore the memory after suspension !!! This error OCCURS ONLY in this occasion/situation ! and here the Harbour code that cause the ERROR 2155 [code=fw:3bg3vw41]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">/*<br />&nbsp;* check if index was updated by other process and if it was discard buffers<br />&nbsp;*/</span><br /><span style="color: #00C800;">static</span> void hb_cdxIndexCheckVersion<span style="color: #000000;">&#40;</span> LPCDXINDEX pIndex <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp;BYTE byBuf<span style="color: #000000;">&#91;</span><span style="color: #000000;">8</span><span style="color: #000000;">&#93;</span>;<br />&nbsp; &nbsp;ULONG ulVer, ulFree;<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> hb_fsSeek<span style="color: #000000;">&#40;</span> pIndex->hFile, 0x04, FS_SET <span style="color: #000000;">&#41;</span> != 0x04 ||<br />&nbsp; &nbsp; &nbsp; &nbsp;hb_fsRead<span style="color: #000000;">&#40;</span> pIndex->hFile, byBuf, <span style="color: #000000;">8</span> <span style="color: #000000;">&#41;</span> != <span style="color: #000000;">8</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #000000;">&#123;</span><br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">if</span> <span style="color: #000000;">&#40;</span> pIndex->lockWrite > <span style="color: #000000;">0</span> && hb_fsSeek<span style="color: #000000;">&#40;</span> pIndex->hFile, <span style="color: #000000;">0</span>, FS_END <span style="color: #000000;">&#41;</span> == <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;memset<span style="color: #000000;">&#40;</span> byBuf, <span style="color: #000000;">0</span>, <span style="color: #000000;">8</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; <span style="color: #00C800;">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hb_errInternal<span style="color: #000000;">&#40;</span> <span style="color: #000000;">2155</span>, <span style="color: #ff0000;">"hb_cdxIndexCheckVersion: Read error on index heading page."</span>, <span style="color: #00C800;">NULL</span>, <span style="color: #00C800;">NULL</span> <span style="color: #000000;">&#41;</span>;<br />&nbsp; &nbsp;<span style="color: #000000;">&#125;</span></div>[/code:3bg3vw41]
2155 error hb_cdxindexCheckVersion fivewin/harbour
[quote="karinha":37gg2pqu]2155 Read error on index heading page Explanation: A read error occurred when reading the heading page of the index file, or the header did not contain the .ntx/cdx signature, or the macro compiler returned a syntax error when attempting to compile the key expression. Action: Recreate the index file and check the key expression. Make sure the database header is updated before index recreation.[/quote:37gg2pqu] This cannot not be a solution because i would have to reindex every time i update, as the program may be in suspended mode at any moment!
2155 error hb_cdxindexCheckVersion fivewin/harbour
in xHarbour, I do so... Please test. [code=fw:zsf2huoc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Directry.ch"</span><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Ord.Ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> <span style="color: #0000ff;">INDEX</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; ... <span style="color: #0000ff;">DIALOG</span> AND BUTTONS, ETC<br /><br />&nbsp; ... <span style="color: #0000ff;">ACTION</span>... ReIndPack<span style="color: #000000;">&#40;</span> oMeter1, oMeter2, oMeter3 <span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br /><br /><span style="color: #00C800;">FUNCTION</span> ReIndPack<span style="color: #000000;">&#40;</span> oMeter1, oMeter2, oMeter3 <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">LOCAL</span> Del_Indice<br /><br />&nbsp; &nbsp;EXTERNAL DESCEND<br /><br />&nbsp; &nbsp;DEL_INDICE := DIRECTORY<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"*.CDX"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">FOR</span> I = <span style="color: #000000;">1</span> <span style="color: #0000ff;">TO</span> LEN<span style="color: #000000;">&#40;</span> Del_Indice <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; FERASE<span style="color: #000000;">&#40;</span> DEL_INDICE<span style="color: #000000;">&#91;</span>I<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#91;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#93;</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">NEXT</span> I<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">IF</span> NetUse<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"CONVENIO"</span>, .F. <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp;oMeter1:<span style="color: #000000;">nTotal</span> = RecCount<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> VAL<span style="color: #000000;">&#40;</span>Field->CODIGO<span style="color: #000000;">&#41;</span> TAG CODIGO <span style="color: #0000ff;">TO</span> CONVENIO &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #00C800;">FOR</span> !DELETED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVAL <span style="color: #000000;">&#40;</span> oMeter1:<span style="color: #000000;">Set</span><span style="color: #000000;">&#40;</span> RecNo<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, CursorWait<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, SysRefresh<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVERY <span style="color: #000000;">10</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> Field->NOME &nbsp; &nbsp; &nbsp; &nbsp;TAG NOME &nbsp; <span style="color: #0000ff;">TO</span> CONVENIO &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #00C800;">FOR</span> !DELETED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVAL <span style="color: #000000;">&#40;</span> oMeter1:<span style="color: #000000;">Set</span><span style="color: #000000;">&#40;</span> RecNo<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span>, CursorWait<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>, SysRefresh<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span> ;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EVERY <span style="color: #000000;">10</span><br /><br />&nbsp; &nbsp; &nbsp; &nbsp;DbCloseAll<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">ENDIF</span><br /><br /><span style="color: #00C800;">RETURN</span> <span style="color: #00C800;">NIL</span><br />&nbsp;</div>[/code:zsf2huoc] Regards,
2155 error hb_cdxindexCheckVersion fivewin/harbour
Hi lorenzoazz, as CNavarro explained, if the OS is allowed to turn off network cards when going into suspend or energy saving mode, all files open are being closed, so there is NO WAY to recover from such situation. You SHOULD AVOID that, not allowing the card to be turned off by the operating system, as Cristobal Navarro explained. My operating system is in spanish, so i cannot show you an screenshot but look into network card properties, and DON'T ALLOW it to go off during energy saving. In Antonio's post there is a line that shows you when the error arises, the system isn't able to read from the file, so the issue if far beyond your code, there is nothing to do from the Harbour's side, it seems to be a configuration problem. Better yet, don't allow the computer go into suspend!
2155 error hb_cdxindexCheckVersion fivewin/harbour
Lorenzo, You may need to close the DBF and indexes and open them again, so the memory data is updated.
2155 error hb_cdxindexCheckVersion fivewin/harbour
[quote="Carlos Mora":xtpypuoj]Hi lorenzoazz, as CNavarro explained, if the OS is allowed to turn off network cards when going into suspend or energy saving mode, all files open are being closed, so there is NO WAY to recover from such situation. You SHOULD AVOID that, not allowing the card to be turned off by the operating system, as Cristobal Navarro explained. My operating system is in spanish, so i cannot show you an screenshot but look into network card properties, and DON'T ALLOW it to go off during energy saving. In Antonio's post there is a line that shows you when the error arises, the system isn't able to read from the file, so the issue if far beyond your code, there is nothing to do from the Harbour's side, it seems to be a configuration problem. Better yet, don't allow the computer go into suspend![/quote:xtpypuoj] A way to prevent suspension would be a possible solution or better, to be able to intercept a suspension "message"
2155 error hb_cdxindexCheckVersion fivewin/harbour
Ok Antonio, Close the area ( USE) then reload with index ( without reindexing) at the moment is the only work around! Anyway this will be a problem not only for my singular case, almost with windows 8.1. Thamks a lot! Antonio Lorenzo
2206 - 64 bit errors (solved)
I believe debugging code was left in the 64 bit FWH 22.06. When opening a dialog, I get a MsgInfo() saying TBAR, and then one saying TXBROWSE. These tend to repeat on any dialogs using the bar control and the browse control. It locks up the program. The exact same code compiled with the 32 bit FWH is working. However, I am trying to actually focus on full 64 bit development. I just downloaded this today ( 06/30/2022 ) so it's not an "early release" issue. The exact same code built with 22.03 works perfectly. Thank you.
2206 - 64 bit errors (solved)
Dear Tim, Here is the answer: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=41926&p=251426#p251426">viewtopic.php?f=3&t=41926&p=251426#p251426</a><!-- l --> We are going to remove it and publish a revised version We are sorry for this
2206 - 64 bit errors (solved)
We have just published a revised build, please download it again Our apologizes for this
2206 - 64 bit errors (solved)
[quote="Antonio Linares":1w5mxwff]We have just published a revised build, please download it again Our apologizes for this[/quote:1w5mxwff] Dear Antonio, Today, I download it and same as appear TXBROWSE dialog.
2206 - 64 bit errors (solved)
<!-- l --><a class="postlink-local" href="http://fivetechsupport.com/forums/viewtopic.php?p=251564&sid=e50d7623c852d6abf956d465af6a4e6b#p251564">viewtopic.php?p=251564&sid=e50d7623c852d6abf956d465af6a4e6b#p251564</a><!-- l -->
2206 - 64 bit errors (solved)
Dear Antonio, I use build64 compile sample xbrgen and xbrdbu appear error below: [img:1y1gcs41]https&#58;//i&#46;postimg&#46;cc/ZRDRpyRB/2022-07-08-113705&#46;jpg[/img:1y1gcs41] [img:1y1gcs41]https&#58;//i&#46;postimg&#46;cc/tC8BDrfD/2022-07-08-115221&#46;jpg[/img:1y1gcs41]
2206 - 64 bit errors (solved)
Dear Richard, That error happens when the used manifest file is not the right one (the 32 bits one is being used instead of the 64 bits one). Please use this xbrgen.rc We are updating our FWH builds, so if you download them in a while, they will be fixed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> many thanks for your great feedback [code=fw:2i4403pk]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <windows.h><br /><br />#ifndef __64__<br />  <span style="color: #000000;">1</span> <span style="color: #000000;">24</span> <span style="color: #ff0000;">"WinXP/WindowsXP.Manifest"</span> <br />#else<br />  <span style="color: #000000;">1</span> <span style="color: #000000;">24</span> <span style="color: #ff0000;">"WinXP/WindowsXP.Manifest64"</span><br />#endif <br /><br />TEST <span style="color: #0000ff;">DIALOG</span> <span style="color: #000000;">6</span>, <span style="color: #000000;">15</span>, <span style="color: #000000;">306</span>, <span style="color: #000000;">227</span><br /><span style="color: #0000ff;">STYLE</span> DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU<br />CAPTION <span style="color: #ff0000;">"TXBrowse demo"</span><br /><span style="color: #0000ff;">FONT</span> <span style="color: #000000;">8</span>, <span style="color: #ff0000;">"MS Sans Serif"</span><br /><span style="color: #000000;">&#123;</span><br /> DEFPUSHBUTTON <span style="color: #ff0000;">"OK"</span>, IDOK, <span style="color: #000000;">252</span>, <span style="color: #000000;">211</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">14</span><br /> CONTROL <span style="color: #ff0000;">""</span>, <span style="color: #000000;">101</span>, <span style="color: #ff0000;">"TXBrowse"</span>, <span style="color: #000000;">0</span> | WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, <span style="color: #000000;">4</span>, <span style="color: #000000;">5</span>, <span style="color: #000000;">297</span>, <span style="color: #000000;">202</span><br /><span style="color: #000000;">&#125;</span><br /><br />STAR     BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/favorite.bmp"</span><br />GREEN    BITMAP <span style="color: #ff0000;">"../bitmaps/level1.bmp"</span><br />RED      BITMAP <span style="color: #ff0000;">"../bitmaps/level2.bmp"</span><br />FIVEBACK BITMAP <span style="color: #ff0000;">"../bitmaps/fiveback.bmp"</span><br />STONE    BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/stone.bmp"</span><br />PAPER    BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/paper.bmp"</span><br /><span style="color: #0000ff;">ON</span>   BITMAP <span style="color: #ff0000;">"../bitmaps/checkon.bmp"</span><br />OFF      BITMAP <span style="color: #ff0000;">"../bitmaps/checkoff.bmp"</span><br />EXCEL    BITMAP <span style="color: #ff0000;">"../bitmaps/excel.bmp"</span><br />REPORT   BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/print.bmp"</span><br />ATTACH   BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/attach.bmp"</span><br />CALC     BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/calc.bmp"</span><br />OPEN     BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/folder3.bmp"</span><br />CLOSE    BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/folder.bmp"</span><br />BLUBRICK BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/blubrick.bmp"</span><br />CONFIG   BITMAP <span style="color: #ff0000;">"../bitmaps/config.bmp"</span><br />EXPAND   BITMAP <span style="color: #ff0000;">"../bitmaps/expand.bmp"</span><br />COLLAPS  BITMAP <span style="color: #ff0000;">"../bitmaps/collaps.bmp"</span><br />TREE     BITMAP <span style="color: #ff0000;">"../bitmaps/tree.bmp"</span><br />SOURCE   BITMAP <span style="color: #ff0000;">"../bitmaps/prg.bmp"</span><br />COPY2    BITMAP <span style="color: #ff0000;">"../bitmaps/copy2.bmp"</span><br />COPY3    BITMAP <span style="color: #ff0000;">"../bitmaps/copy3.bmp"</span><br />COMPILE  BITMAP <span style="color: #ff0000;">"../bitmaps/compile.bmp"</span><br />SAVE     BITMAP <span style="color: #ff0000;">"../bitmaps/save.bmp"</span><br />SAVE2    BITMAP <span style="color: #ff0000;">"../bitmaps/save2.bmp"</span><br />RUN      BITMAP <span style="color: #ff0000;">"../bitmaps/run.bmp"</span><br />CLOSE2   BITMAP <span style="color: #ff0000;">"../bitmaps/close.bmp"</span><br />CODE     BITMAP <span style="color: #ff0000;">"../bitmaps/code.bmp"</span><br />DLG      BITMAP <span style="color: #ff0000;">"../bitmaps/dlg.bmp"</span><br /><br /> </div>[/code:2i4403pk]
2206 - 64 bit errors (solved)
[quote="Antonio Linares":z662i5ts]Dear Richard, That error happens when the used manifest file is not the right one (the 32 bits one is being used instead of the 64 bits one). Please use this xbrgen.rc We are updating our FWH builds, so if you download them in a while, they will be fixed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> many thanks for your great feedback [code=fw:z662i5ts]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <windows.h><br /><br />#ifndef __64__<br />  <span style="color: #000000;">1</span> <span style="color: #000000;">24</span> <span style="color: #ff0000;">"WinXP/WindowsXP.Manifest"</span> <br />#else<br />  <span style="color: #000000;">1</span> <span style="color: #000000;">24</span> <span style="color: #ff0000;">"WinXP/WindowsXP.Manifest64"</span><br />#endif <br /><br />TEST <span style="color: #0000ff;">DIALOG</span> <span style="color: #000000;">6</span>, <span style="color: #000000;">15</span>, <span style="color: #000000;">306</span>, <span style="color: #000000;">227</span><br /><span style="color: #0000ff;">STYLE</span> DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU<br />CAPTION <span style="color: #ff0000;">"TXBrowse demo"</span><br /><span style="color: #0000ff;">FONT</span> <span style="color: #000000;">8</span>, <span style="color: #ff0000;">"MS Sans Serif"</span><br /><span style="color: #000000;">&#123;</span><br /> DEFPUSHBUTTON <span style="color: #ff0000;">"OK"</span>, IDOK, <span style="color: #000000;">252</span>, <span style="color: #000000;">211</span>, <span style="color: #000000;">50</span>, <span style="color: #000000;">14</span><br /> CONTROL <span style="color: #ff0000;">""</span>, <span style="color: #000000;">101</span>, <span style="color: #ff0000;">"TXBrowse"</span>, <span style="color: #000000;">0</span> | WS_BORDER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, <span style="color: #000000;">4</span>, <span style="color: #000000;">5</span>, <span style="color: #000000;">297</span>, <span style="color: #000000;">202</span><br /><span style="color: #000000;">&#125;</span><br /><br />STAR     BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/favorite.bmp"</span><br />GREEN    BITMAP <span style="color: #ff0000;">"../bitmaps/level1.bmp"</span><br />RED      BITMAP <span style="color: #ff0000;">"../bitmaps/level2.bmp"</span><br />FIVEBACK BITMAP <span style="color: #ff0000;">"../bitmaps/fiveback.bmp"</span><br />STONE    BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/stone.bmp"</span><br />PAPER    BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/paper.bmp"</span><br /><span style="color: #0000ff;">ON</span>   BITMAP <span style="color: #ff0000;">"../bitmaps/checkon.bmp"</span><br />OFF      BITMAP <span style="color: #ff0000;">"../bitmaps/checkoff.bmp"</span><br />EXCEL    BITMAP <span style="color: #ff0000;">"../bitmaps/excel.bmp"</span><br />REPORT   BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/print.bmp"</span><br />ATTACH   BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/attach.bmp"</span><br />CALC     BITMAP <span style="color: #ff0000;">"../bitmaps/32x32/calc.bmp"</span><br />OPEN     BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/folder3.bmp"</span><br />CLOSE    BITMAP <span style="color: #ff0000;">"../bitmaps/16x16/folder.bmp"</span><br />BLUBRICK BITMAP <span style="color: #ff0000;">"../bitmaps/backgrnd/blubrick.bmp"</span><br />CONFIG   BITMAP <span style="color: #ff0000;">"../bitmaps/config.bmp"</span><br />EXPAND   BITMAP <span style="color: #ff0000;">"../bitmaps/expand.bmp"</span><br />COLLAPS  BITMAP <span style="color: #ff0000;">"../bitmaps/collaps.bmp"</span><br />TREE     BITMAP <span style="color: #ff0000;">"../bitmaps/tree.bmp"</span><br />SOURCE   BITMAP <span style="color: #ff0000;">"../bitmaps/prg.bmp"</span><br />COPY2    BITMAP <span style="color: #ff0000;">"../bitmaps/copy2.bmp"</span><br />COPY3    BITMAP <span style="color: #ff0000;">"../bitmaps/copy3.bmp"</span><br />COMPILE  BITMAP <span style="color: #ff0000;">"../bitmaps/compile.bmp"</span><br />SAVE     BITMAP <span style="color: #ff0000;">"../bitmaps/save.bmp"</span><br />SAVE2    BITMAP <span style="color: #ff0000;">"../bitmaps/save2.bmp"</span><br />RUN      BITMAP <span style="color: #ff0000;">"../bitmaps/run.bmp"</span><br />CLOSE2   BITMAP <span style="color: #ff0000;">"../bitmaps/close.bmp"</span><br />CODE     BITMAP <span style="color: #ff0000;">"../bitmaps/code.bmp"</span><br />DLG      BITMAP <span style="color: #ff0000;">"../bitmaps/dlg.bmp"</span><br /><br /> </div>[/code:z662i5ts][/quote:z662i5ts] I change .RC code and working now. Thank you
2400 iconos gratuitos / 2400 free icons
Hola / Hi, 2400 iconos gratuitos en formato png / 2400 free icons in png format [url:3nos36c1]http&#58;//www&#46;softandapps&#46;info/2012/03/21/2400-iconos-gratuitos-de-gran-calidad-en-formato-png/[/url:3nos36c1] Saludos / Regards, Félix
28 settembre . Roma
Salve,Stiamo organizzando per il 28 settembre 2008 una cena in pizzeria alle ore 21.00il luogo è lo stesso dell'altra volta, dove alcuni di voi ha incontrato Antonio Linares e la moglie Sylvia quando sono venuti in Italia, e cmq Emg vi può dare maggiori informazioni perché è del posto.ADESIONISilvioEmg
28 settembre . Roma
Per me va bene.
28 settembre . Roma
[quote="Marco Turco":36hjfc8j]Per me va bene.[/quote:36hjfc8j]Ottimo! Sei di passaggio o vieni apposta?EMG
28 settembre . Roma
Sono a Roma fino al 9 Ottobre.
28 settembre . Roma
eh...siamo rimasti in tre..tre somari e tre briganti ....sulla strada di girngentu.... siamo solo in 3!!!!???!!!
28 settembre . Roma
Verrei volentieri ma location e soprattutto orario rende difficoltosa la trasferta. Bevetevi una birra anche alla mia salute.Ciao
28 settembre . Roma
[quote="MarcoBoschi":2e9r1o40]Verrei volentieri ma location e soprattutto orario rende difficoltosa la trasferta. Bevetevi una birra anche alla mia salute. Ciao[/quote:2e9r1o40] <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> EMG
28 settembre . Roma
<!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> dai vieni anche tuda padova vieni ila mattina di domenica EMG ti fa da CICERO per RM ti fa vedere tutte le bellezze di RM e poi la sera vieni in PIZfino alle 22.30 poi riparti e arrivi a Padova alle 02.00 circa( ce l'hai una ferrari ? te la presta emg)
28 settembre . Roma
ci penso un attimo, è comunque più no che siGrazie per l'invito
28 settembre . Roma
Già... piacerebbe anche a me venire...sarebbe una bella cosa conoscerci di persona, e poi saranno più di 15 anni che non vengo a Roma!!Solo che dovrei venire apposta e mi piacerebbe con l'occasione portare moglie e figli per unire l'utile al dilettevole... e poi di domenica sera è dura... fosse stato di sabato sera o domenica a pranzo magari un pensierino...
28 settembre . Roma
In effetti anche a me andrebbe meglio di sabato sera. Anzi, a pensarci bene, il lunedì ci si deve alzare presto e quindi non si può fare tanto tardi.Spostiamo a sabato?EMG
28 settembre . Roma
Se fosse sabato sera io un tentativo di organizzare con la famiglia di venire sabato nel pomeriggio poi dormire a Roma e ripartire con calma la domenica post-visita in centro lo farei volentieri e quindi sabato sera verrei, mia moglie permettendo....Dove sarebbe esattamente il posto?
28 settembre . Roma
[url:231082gf]http&#58;//www&#46;lafiorentina&#46;net[/url:231082gf][quote:231082gf]La Fiorentina è a Via Andrea Doria, 22 - 00192 Roma Telefoni 06 39737019 / 06 39733173 E-MAIL: <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e --> Tutte le carte di credito sono benvenute. Apertura: 7 giorni su 7. Ristorazione NON STOP dalle 12,30 alle 24,00.[/quote:231082gf]EMG
28 settembre . Roma
grande idea,peccato che sono troppo lontano....mi piacerebbe conoscervi di personabuon divertimento a tutti
28 settembre . Roma
Beh, anche il posto niente male. "La Fiorentina", direi quasi un nome una garanzia...Fate sapere in tempo utile se decidete di spostare l'incontro al sabato sera (il 27) oppure rimane confermato per domenica sera, che se decidete per il sabato allora propongo a casa a moglie e figli (2) una puntatina (casualmente!) a Roma per il week-end e così riesco ad esserci anch'io. Ovviamente decidete indipendentemente da me per come è più comodo a voi, anche perché in confronto a voi sono la "burba" e voi siete i "nonni", per dirla in termini militari. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
28 settembre . Roma
per me non ci dovrebbero essere problemi l'importante che mi aspettiate xché sab sera sono a vallelunga e domenica mattina devo essere a Rm fresco, ho una riunione in fmi in viale tiziano...Emg è di casa quindi che facciamo?io lo devo sapere x prenotare la camera a rm così non rientro a teramo ...Emg?
28 settembre . Roma
Come ho già detto, domenica sera per me non va bene. Sabato andrebbe bene ma fino a quando dobbiamo aspettarti? Non vorrei fare troppo tardi dato che verrei probabilmente con moglie e figlia. Per me prima è meglio è.EMG
28 settembre . Roma
KAPPAma quanti siamo per sabato sera ?facciamo una lista anche perchè tu dovresti prenotareio cerco di sbrigarmi quanto dista valle ?a che ora fissiamo ?il mio cell ce lo hai ancora ?
28 settembre . Roma
Scusa Max!!! Per sbaglio ho editato il tuo messaggio! Accidenti a me, ho sbagliato pulsante! Puoi riscriverlo? Scusate, ho combinato un casino... In ogni caso, diceva che non viene più. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->EMG
28 settembre . Roma
Marco, almeno tu confermi per sabato 27?EMG
28 settembre . Roma
Emg io sono Out Stamani mi hanno spostato la gara a San Severino Marchequindi sarei lontano sabato per raggiungere Romae cmq Domenica alle 10.30 devo essere a Rm x quella riunioneA me sabato non va piu' bene Sorry
28 settembre . Roma
Va bene, allora diciamo che per questa volta è andata male.Alla prossima.EMG
28 settembre . Roma
Per me anche sabato sarebbe andato bene,comunque viste le difficoltà possiamo incontrarci anche un altra volta,dato che sono a Roma per un pò non ho particolari difficoltà ad organizzarmi, il problema è più che altro per chi viene da fuori.
28 settembre . Roma
A me farebbe piacere incontrarci. In che zona di Roma stai?EMG
28 settembre . Roma
Io sono a Casal Palocco.
28 settembre . Roma
Azz, non proprio a due passi... <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->Vogliamo farla lo stesso in due la pizza? Decidi tu, non ti voglio forzare. A me farebbe piacere.EMG
28 settembre . Roma
Per me va bene. E' parecchio che non ci vediamo, fa molto piacere anche a me.Possiamo fare anche alla pizzeria che avevi proposto tu, per te è più comodo (se ricordo vivi in quella zona) ed io visto che mi sposto sempre in aereo, non ho certo problemi a fare qualche km con la macchina (spero di non perdermi <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> per Roma)
28 settembre . Roma
Benissimo. Quando preferisci? Per me anche domani sera alle 20:30.EMG
28 settembre . Roma
Per me va bene. Preparati psicologicamente perché ti tedierò con una serie infinita di domande tecniche <!-- s:twisted: --><img src="{SMILIES_PATH}/icon_twisted.gif" alt=":twisted:" title="Twisted Evil" /><!-- s:twisted: --> Rimedio un cellulare e ti mando il numero via private mail nel caso ci siano problemi - o mi dovessi perdere .Vieni da solo ?
28 settembre . Roma
Porterei anche moglie e figlia. Però stavo pensando una cosa: se domani è brutto tempo come oggi forse è meglio rimandare al sabato successivo, che ne dici?Forse è meglio che passiamo in privato...EMG
28 settembre . Roma
Fateci sapere poi come andrà a finire <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->Sta diventando tutto così complicato...o no?Comunque tenete presente che noi siamo lì con voi con una pizza e una birra (grande) anzi due la prima per dissetarsi ...la seconda da gustare
28 settembre . Roma
Che dire... è stato un incontro molto piacevole con EMG & Family.Ovviamente ho approfittato dell'occasione per consumare a dovere i neuroni di EMG, è per questo motivo che in questi giorni è meno attivo sul sito: deve raffreddare la corteccia cerebrale con impacchi di ghiaccio.Ma non ti preoccupare, qualche giorno e ritornerà in forma come al solito.
28 settembre . Roma
Una fonte inesauribile di sapere <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: --> "L'uomo che sapeva tutto" <!-- s8) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8)" title="Cool" /><!-- s8) -->
28 settembre . Roma
[quote="Marco Turco":1dudzyp7]Che dire... è stato un incontro molto piacevole con EMG & Family.[/quote:1dudzyp7] Naturalmente il piacere è stato assolutamente reciproco. Mi sa che i bambini invece non si sono divertiti... [quote="Marco Turco":1dudzyp7]Ovviamente ho approfittato dell'occasione per consumare a dovere i neuroni di EMG,[/quote:1dudzyp7]Non è vero, hai parlato praticamente sempre tu.EMG
28 settembre . Roma
Mi dispiace ragazzi ... per quella sera...Purtroppo ho finito la riunione alle 22.00 alla Fmi e da li ho preso la flamminia ( passando per saxa) e sono tornato a casa ...c'era molto traffico .E' stata buona la pizza al florence ?
28 settembre . Roma
A me è piaciuta. Anche se ad un certo punto mi si è un po' annacquata... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->EMG
28 settembre . Roma
mhm... in che senso...??!!??
28 settembre . Roma
Proprio nel senso che ci è andata l'acqua. Marco potrà raccontartelo. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->EMG
28 settembre . Roma
L'acqua ...????? Ma non era pizza e.... Birra ????Emg, L'acqua fa male!!!!!
28 settembre . Roma
Diciamo che era un po' sciapa. Comunque io sono completamente astemio.EMG
28 settembre . Roma
[quote="Silvio":1odtka63]Purtroppo ho finito la riunione alle 22.00 alla Fmi [/quote:1odtka63]FMI - Fondo Monerario Internazionale ?Potevi passare a trovarmi allora ..Qui a Londra ci sono bei "problemini" con le banche <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
28 settembre . Roma
purtroppo hai fatto un errore di sbaglio FMI è l'acronimo di Federazione Motociclistica Italiana
28 settembre . Roma
Perché non fate una campagna di informazione tra i motociclisti cercando di convincerli ad usare il mezzo il meno possibile e, quando lo usano, di essere un po' più disciplinati? Le moto sono diventate una vera piaga delle strade e ora, purtroppo, anche dei marciapiedi.EMG
28 settembre . Roma
Lo stiamo già facendo ...io per esempio oltre ad essere un commissario sportivo ( occupandomi solo di gare sportive) , sono un Formatore di Educazione Stradale e faccio gli incontri nelle scuole ( MPI e FMI hanno firmato un accordo ) per adesso scuole medie e biennio superiori, gli incontri sono inprontati sulla sicurezza e l'uso del proprio mezzo, ci sono gli istruttori che fanno vedere e provare qualunque tipo di mezzo dagli 50 cc agli 500cc in diverse difficoltà per esempio ghiaia, asfalto bagnato ecc. e fanno fare dei percorsi dal piu' semplice al piu impegnativo. se ti puo essere utile vai alla sezione sicurezza stradale della <!-- w --><a class="postlink" href="http://www.federmoto.it">www.federmoto.it</a><!-- w -->.poi ci sono anche i delinquenti...dei marciapiedi appunto !!!
28 settembre . Roma
Speriamo allora nella prossima generazione. Comunque dovreste in primo luogo dissuaderli dall'utilizzare le moto che sono il modo migliore per ammazzarsi, oltre al fatto che inquinano come le auto.EMG
28 settembre . Roma
Caro ragazzo ...Ho capito sei uno di quelli che dice " con le moto uno si ammazza" !!!Ma guarda che con le auto ci si ammazza anche !!!!Se devi morire ... è il destino .... un mio conoscente è morto perchè è cascato da una sedia, ma lui faceva le gare prima di moto e poi di auto e non è mai accaduto niente, poi un giorno da una sedia ....Se sei un buon motociclista ci devi saper andare con la moto, per la tua sicurezza e per l'incolumità degli altri. Sono stufo di sentire sta ' storia le moto NO le auto si , le bici son meglio...se il destino ti chiama...puo' accaderti in qualsiasi momento...
28 settembre . Roma
Cmq non vorrei alimentare una discussione qui in questo forum dove si dovrebbe parlare di altro ....io non sono un troll
28 settembre . Roma
[quote="Silvio":1vc1hexv]Caro ragazzo ...[/quote:1vc1hexv] Grazie per il "ragazzo". <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [quote="Silvio":1vc1hexv]Ho capito sei uno di quelli che dice " con le moto uno si ammazza" !!![/quote:1vc1hexv] No, non lo dico, lo vedo. In un traffico caotico come quello di Roma negli incidenti sono quasi sempre coinvolte motociclette. Ne vedo tantissimi. [quote="Silvio":1vc1hexv]Ma guarda che con le auto ci si ammazza anche !!!![/quote:1vc1hexv] Senza dubbio, ma solo se corri. Le auto hanno quattro ruote e se vai piano non ti succede niente. Le moto hanno solo due ruote e ti puoi far male anche da fermo se non stai attento. [quote="Silvio":1vc1hexv]Sono stufo di sentire sta ' storia le moto NO le auto si , le bici son meglio...[/quote:1vc1hexv]Il fatto che tu sia stufo di sentirle non le rende meno vere. Le moto sono pericolose soprattutto per chi le guida e tendono a rendere il guidatore spericolato. Inoltre inquinano. Le auto sono grosse e inquinanti. Le biciclette non inquinano ma hanno una pericolosità analoga alle moto. Per me la cosa migliore è andare a piedi...EMG
28 settembre . Roma
>Le auto hanno quattro ruote che cosa vuol dire ?le 4 vanno bene le due no ?io mi fido di piu' quando vado con la moto che con la macchina ed ho esperienza di 9 anni a brescia ( traffico caotico), molto spesso qualche deficiente che guida le auto crea il traffico te se devi andare a Milano ci vai a piedi ?
28 settembre . Roma
[quote="Silvio":jlzgvvsy]che cosa vuol dire ? le 4 vanno bene le due no ?[/quote:jlzgvvsy] Ma dobbiamo proprio discutere di banalità come questa? Non ti sembra forse ovvio che un veicolo a quattro ruote sia più stabile di uno a due? [quote="Silvio":jlzgvvsy]io mi fido di piu' quando vado con la moto che con la macchina[/quote:jlzgvvsy] Ti fidi in che senso? Pensi forse che sia più facile farsi male con l'auto che con la moto? Non diciamo assurdità, per favore. [quote="Silvio":jlzgvvsy]molto spesso qualche deficiente che guida le auto crea il traffico [/quote:jlzgvvsy] Su questo non ci piove. Le auto, l'ho già detto, sono più grosse e quindi ingombranti. Ma in quei casi dipende più dal conducente che dal mezzo. [quote="Silvio":jlzgvvsy]te se devi andare a Milano ci vai a piedi ?[/quote:jlzgvvsy]Questo è proprio il tipo di atteggiamento che provoca tutti i problemi di traffico che abbiamo oggi. Se devo andare a Milano non ci vado certo né in auto né in moto. Mai sentito parlare di treni?EMG
28 settembre . Roma
ci sono treni che ti fanno perdere tempo...altri che hanno servizi che non funziano... ho ricevuto molte lettere di scuse dalle ffss dopo aver fatto le dovute lamentele ed una in paricolare per il servizio scadente proprio del servizi bar ristorante di roma.se devi andare da una parte devi stare agli orari che fissano alte persone? io preferisco di no!ma ritornando alle moto io mi sento più sicuro quando vado con la moto invece con la auto devo gardare a desa e a sinistra xché c'é sempre qualcuno che ti vuole venire addosso .Io spero per te che i tuoi figli non abbiano voglia di comprarsi un motore xché troveranno un padre difficile.Ma ricordati che con le auto e con le moto si corre SOLO IN PISTA.per quanto riguarda l'inquinamento a volte inquinano anche le parole che ognuno di noi dice.Buon halloween
28 settembre . Roma
[quote="Silvio":1yteab88]ci sono treni che ti fanno perdere tempo...altri che hanno servizi che non funziano... ho ricevuto molte lettere di scuse dalle ffss dopo aver fatto le dovute lamentele ed una in paricolare per il servizio scadente proprio del servizi bar ristorante di roma. se devi andare da una parte devi stare agli orari che fissano alte persone? io preferisco di no![/quote:1yteab88] Allora preferisci morire di tumore grazie all'aria che si respira? Sembra che la maggior parte della gente non se ne renda ancora conto. [quote="Silvio":1yteab88]ma ritornando alle moto io mi sento più sicuro quando vado con la moto invece con la auto devo gardare a desa e a sinistra xché c'é sempre qualcuno che ti vuole venire addosso .[/quote:1yteab88] ??? Vuoi dire che con la moto puoi andare dritto per la tua strada fregandotene di chi hai a destra e a sinistra? Questo, in effetti, è proprio il tipo di comportamento completamente errato che vedo normalmente nei motociclisti. [quote="Silvio":1yteab88]Io spero per te che i tuoi figli non abbiano voglia di comprarsi un motore xché troveranno un padre difficile.[/quote:1yteab88] Se per "difficile" intendi "attento alle esigenze dell'ambiente e della salute" sicuramente sì. [quote="Silvio":1yteab88]Ma ricordati che con le auto e con le moto si corre SOLO IN PISTA.[/quote:1yteab88] Perfettamente d'accordo. Ma la maggior parte della gente purtroppo non lo è... <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> [quote="Silvio":1yteab88]per quanto riguarda l'inquinamento a volte inquinano anche le parole che ognuno di noi dice.[/quote:1yteab88]Sì, "ferisce più la lingua che la spada". Però qui parliamo di inquinamento da gas di scarico. E se uno non ha recentemente mangiato aglio non credo possa essere così dannoso per la salute se parla. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->EMG
2D Barcode
Hello fiveWinners. Anyone knows of a lib or source code for generating 2D barcode or have an alternative? Greetings
2D Barcode
Devtuxtla, In internet search pdf147 bar code. Best Regards, Lautaro Moreira PD: sorry for my bad english <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
2D Barcode
Zebra printers have native support to 2d barcode. You just have to send a txt through the LPT1 port using the language of the printer.
2D Barcode
Hi FiveWinners Thanks. But, I need to do xHarbour generate a 2D bar code and print the document, this in turn will be printed in PDF. all the work you must do by the program, set to generate orders. Any other ideas? Greetings
2D Barcode
Hola, Ve en este enlace, es una libreria en C : [url] <!-- m --><a class="postlink" href="http://sourceforge.net/projects/pdf417lib/">http://sourceforge.net/projects/pdf417lib/</a><!-- m --> [/url] Saludos Lautaro Moreira
2D bar code printing
Hello, has anyone used 2D bar code library with FWH? If so, can you provide details?
2D bar code printing
For printing I use a barcode font. Here is a sample of my routine to check for barcode and install it if necessary. In my program I just do CheckBarCode() if I want it installed automatically. [code=fw:34ldtloh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#define</span> HKEY_LOCAL_MACHINE &nbsp;<span style="color: #000000;">&#40;</span>0x80000002<span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">Function</span> CheckBarCode<span style="color: #000000;">&#40;</span> lInstall <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cWinFontsFolder, cFontFile, oFontBarCode<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cKey, oReg<br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> lInstall == <span style="color: #00C800;">nil</span><br />&nbsp; &nbsp; &nbsp; lInstall := .t.<br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br />&nbsp; &nbsp;cKey := <span style="color: #ff0000;">"Software<span style="color: #000000;">\M</span>icrosoft<span style="color: #000000;">\W</span>indows NT<span style="color: #000000;">\C</span>urrentVersion<span style="color: #000000;">\F</span>onts"</span><br />&nbsp; &nbsp;oReg &nbsp;:= TReg32<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> HKEY_LOCAL_MACHINE, cKey <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #B900B9;">// need name of font to install here</span><br />&nbsp; &nbsp;cFontFile &nbsp;:= oReg:<span style="color: #0000ff;">Get</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">'3 of 9 Barcode (TrueType)'</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oReg:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;lIsBarcode := !empty<span style="color: #000000;">&#40;</span> cFontFile <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">if</span> .not. lIsBarCode .and. lInstall<br />&nbsp; &nbsp; &nbsp; InstallBarCode<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; cFontFile &nbsp;:= oReg:<span style="color: #0000ff;">Get</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">'3 of 9 Barcode (TrueType)'</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; oReg:<span style="color: #000000;">Close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp; &nbsp; lIsBarcode := !empty<span style="color: #000000;">&#40;</span> cFontFile <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">endif</span><br /><span style="color: #00C800;">return</span><span style="color: #000000;">&#40;</span> lIsBarcode<span style="color: #000000;">&#41;</span><br /><br /><span style="color: #00C800;">Function</span> InstallBarCode<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cWindowsDir<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oShellApplication<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oShell<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> oShellFSO<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cFontFile<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cFontDir<br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> cWinFontsFolder<br /><br />&nbsp; &nbsp;cWindowsDir := gete<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"systemroot"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;oShell = CreateObject<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"Shell.Application"</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oShellApplication := CreateObject<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Shell.Application"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oShell &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= TOleAuto<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"WScript.Shell"</span> <span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;oShellFSO &nbsp; &nbsp; &nbsp; &nbsp; := TOleAuto<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Scripting.FileSystemObject"</span> <span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #B900B9;">// need full path name of font to install.</span><br />&nbsp; &nbsp;cFontDir &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;:= <span style="color: #ff0000;">'<span style="color: #000000;">\\</span>trg401<span style="color: #000000;">\V</span>OL0<span style="color: #000000;">\I</span>nstall<span style="color: #000000;">\F</span>onts<span style="color: #000000;">\'</span> &nbsp;<br /><br />&nbsp; &nbsp;cFontFile &nbsp; &nbsp; &nbsp; &nbsp; := '</span>3of9.ttf<span style="color: #ff0000;">'<br /><br />&nbsp; &nbsp;oNameSpace &nbsp; &nbsp; &nbsp; &nbsp;:= oShellApplication:Namespace( cFontDir )<br />&nbsp; &nbsp;oFont &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; := oNameSpace:ParseName( cFontFile )<br />&nbsp; &nbsp;oFont:InvokeVerb("Install")<br />return nil<br /><br /></span></div>[/code:34ldtloh]
2D bar code printing
[quote="cdmmaui":25k69dl8]Hello, has anyone used 2D bar code library with FWH? If so, can you provide details?[/quote:25k69dl8] Try Cayetano's barlib library. EMG
2a Reunión de programadores de Harbour Magazine
[url:9iiac4r0]http&#58;//medium&#46;com/harbour-magazine[/url:9iiac4r0] Espero que vengais todos los de la primera reunión y todos los que no pudisteis venír. Saludos, José Luis Sánchez
2a Reunión de programadores de Harbour Magazine
Hola a todos, Quiero animar a todos los programadores que viven en España a que hagan un esfuerzo para asistir a la reunión de Calpe. Estamos preparando la reunión con mucha ilusión y con muchas ganas, tenemos previstas ponencias muy interesantes: una de Manuel Calero sobre pruebas unitarias en Harbour - que yo sepa es el único programador Harbour que usa pruebas unitarias en todo el mundo-, otra de Biel Maimó sobre TDolphin, y otra de Bingen Ugaldebere sobremigración rápida de DBF a SQL. También hemos contactado con otros grandes programadores y alguno tiene una charla realmente espectacular en cartera. No quiero dar nombres por no descubrir nada, pero esperamos poder contar con muchos más programadores de renombre e iremos informando de las charlas conforme vayamos cerrándolas. Esta año queremos dedicar un tiempo a un 'taller Harbour' en que cada uno pueda preguntar a quien quiera cosas y aspectos de sus programas que hayan llamado la atención y experiencias en el mundo del desarrollo en Harbour u otros lenguajes. Hace 2 años hicimos la primera reunión y fue increible volvernos a ver después de muchos años. El lado humano de la reunión superó al técnico y lo pasamos fenomenal. Los organizadores dedicamos tiempo y esfuerzo para que salga lo mejor posible, y no tenemos ninguna motivación más que ver el mayor número de programadores Harbour posible juntos. No hay cuota de inscripción, lo hacemos fuera de temporada de vacaciones para que los alojamientos sean lo más económicos posible, y nadie cobra nada por asistir. Es más, el organizador se ha comprometido a pagar dos rondas de cerveza a los asistentes. Por favor, intentar venir los que podais. Teneis el formulario de inscripción en [url:37une2xx]https&#58;//drive&#46;google&#46;com/open?id=1bXAszn4P1nYTVY5zRU_pjPpsxnWLD16konXkDb1bJo8[/url:37une2xx], conforme os vayais inscribiendo contactaremos con vosotros para intentar ayudaros en cualquier tema relativo a la reunión. Os esperamos a todos. Saludos, José Luis Sánchez
2a Reunión de programadores de Harbour Magazine
Seria bueno saber la dirección donde se realiza la reunión, para buscar alojamiento cerquita... y que hoteles soleis frecuentar los que habeis ido otras veces. Gracias.
2a Reunión de programadores de Harbour Magazine
Xevi, lo tienes todo en Harbour Magazine, lo siguiente está copiado/pegado de ahí: [i:1ur0xbiy]Harbour Magazine organiza la 2ª Reunión de Programadores en Calpe (Alicante?—?España) los próximos días 30 y 31 de Marzo de 2019. ... Este año tenemos previsto dedicar un tiempo a un taller Harbour, donde los asistentes puedan interactuar entre ellos preguntando por cuestiones prácticas de programación. Las ponencias se realizarán en el Campus d’Excel·lència Empresarial Casa Nova. No hay cuota de registro a la reunión, pero cada asistente deberá costearse su alojamiento. La organización recomienda a los asistentes los siguientes alojamientos: Hostal Terra de Mar, tfno. 629665124 Hotel Porto Calpe, tfno. 965837322 Hotel Sol y Mar, tfno. 965831762 Suitopía, tfno. 965831762[/i:1ur0xbiy] Yo me alojo en el Hotel Porto Calpe del 29 al 31 de Marzo, 2 noches en individual, por 68€ total. Saludos,
2a Reunión de programadores de Harbour Magazine
Gracias, José Luis. la dirección que encontré, con el maps... Centro Excelencia Empresarial Casa Nova, Partida Casanova, 1, M, 03710 Calpe, Alicante El hotel, me parece bien. <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
2a Reunión de programadores de Harbour Magazine
Xevi, espero que te animes a venir !!! Saludos,
2a Reunión de programadores de Harbour Magazine
Ya estamos preparando la ponencia. [img:3jmwbjgd]https&#58;//i&#46;ibb&#46;co/6ZwRRVw/portada&#46;png"%20alt="portada"%20border="0"[/img:3jmwbjgd] <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
2a Reunión de programadores de Harbour Magazine
Pinta muy bien!!!
2a Reunión de programadores de Harbour Magazine
Hola a todos: ya tenemos una primera relación de charlas que vamos a realizar en la 2ª Reunión de programadores Harbour el próximo mes de marzo en Calpe (Alicante). Las charlas previstas son las siguientes: * Pruebas unitarias con Harbour por Manuel Calero. * Migración rápida a SQL por Bingen Ugaldebere. * Utilización de TDolphin por Biel Maimó * OpenXava por Genaro Tur * Depuración de aplicaciones Harbour con hwgdebug por José Luis Sánchez También vamos a realizar un taller abierto de Habour donde los asistentes puedan exponer dudas y resolverlas entre todos los asistentes. Si algún otro asistente quiere realizar una charla estamos encantados de escuchar vuestras propuestas. Os recuerdo que la reunión se va a realizar del 29 al 31 de Marzo en Calpe (Alicante), que no hay que realizar ningún pago por la inscripción y que hay alojamientos económicos en la zona para que el coste sea el menor posible. Animo a todos a venir a la reunión, y podeis inscribiros en la siguiente URL [url:1vllward]https&#58;//drive&#46;google&#46;com/open?id=1bXAszn4P1nYTVY5zRU_pjPpsxnWLD16konXkDb1bJo8[/url:1vllward]. Tanto yo como el resto de organizadores y los ponentes de las charlas estamos preparando la reunión con mucha ilusión, y nos gustaría contar con la presencia del mayor número de programadores posible. Saludos, José Luis Sánchez
2a Reunión de programadores de Harbour Magazine
Hola, Tiene una pintaza excelente, pero tengo a mi padre mal de salud. ¿Lo colgaréis en streaming?. Aprovecho para preguntaros si pensáis tratar el tema visual, pues creo que es una cuestión que no debemos olvidar porque el software entra por los ojos. Gracias!
2a Reunión de programadores de Harbour Magazine
Intentaremos publicar los videos, pero no prometemos nada. La reunión la estamos organizando con mucha ilusión, pero la verdad es que la acogida entre los programadores españoles está siendo muy escasa. No se cuantos somos en el foro, pero el interés suscitado está siendo pequeño. Creo que este tipo de eventos deberíamos apoyarlos bastante más, para poner nuestra contribución a la comunidad de programadores Harbour y seguir manteniendo vivo el lenguaje y la comunidad de programadores. A todos los asistentes nos supone un esfuerzo asistir, hasta los que vivimos en Alicante, pero puede ser una de las últimas oportunidades de conocer a otros programadores y compartir con ellos nuestras inquietudes. Saludos, José Luis Sánchez
2a Reunión de programadores de Harbour Magazine
José Luís, me he inscrito. <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> No me he apuntado a ninguna cominola/cena por que no se a cual os apuntais los demás. Voy a ir con la familia y así aprovechan para hacer turismo (y compras, claro) Luego, si eso ya veré a que comida me apunto. Nos vemos en Calpe!!!
2a Reunión de programadores de Harbour Magazine
Es una pasada... Ves a viejos amigos y conoces a otros. Se aprende un montón... los temas de este año son muy buenos!!! Os animo a que vayáis, seguro que no os defraudará!!! Vamossssssssssssssssssssssssssss!!!!
2a Reunión de programadores de Harbour Magazine
Hola Xevi, me alegro mucho de que te hayas inscrito, y espero que el resto de programadores que lo están pensando todavía hagan lo mismo. No es solo por las charlas, que van a ser superinteresantes, sino por conocer en persona a otros compañeros con los que has compartido tantos mensajes en estos y otros fotos. Saludos, José Luis
2a Reunión de programadores de Harbour Magazine
Hola a todos, tenemos buenas noticias para la 2ª Reunión de programadores de Harbour Magazine. Antonio Linares y Cristobal Navarro han confirmado su asistencia, y Antonio va a realizar una charla práctica con FiveTouch en Android, mostrando como usar QT Creator, como construir Harbour, como probarlo en el emulador BlueStacks. A los que todavía estais dudando en asistir, creo que es una gran oportunidad para conocer a Antonio Linares y Cristobal Navarro y disfrutar de sus conocimientos y su compañía durante la reiunión. Saludos, José Luis Sánchez
2a Reunión de programadores de Harbour Magazine
Hola gente, me acabo de apuntar, reservando en Porto Calpe y para todas las comidas. Estamos en un grupo de Whatsapp para coordinarnos, por lo que ponedme un mensajito si quereis participar del grupo. Nos vemos en Calpe
2a Reunión de programadores de Harbour Magazine
Gracias Carlos por inscrbirte, y tengo que decir que es una satisfacción decir que tambíen se ha inscrito Gustavo Valentín que va a venir desde Argentina a la reunión. Hasta ahora somos 19 los inscritos, y creo que la reunión va a superar la asistencia de la de 2017. En serio, ¿ os lo vais a perder ? Saludos, José Luis Sánchez