messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2017-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio:\n\nWell, just to let you know I tracked it down to a problem with c5tip. The CheckToolTip method in windows.prg references a member named :lShowAgain which is not a member of the c5tip class. So I added it. Then the CheckToolTip method calls ::ToolTip:Show(). The c5tip show method takes hWnd, nRow, nCol as parameters, which windows.prg does not pass. Both of these problems caused the program to gpf.\n\nThis is the Show method from my c5tip source. You must have an updated source.\n\n******************************************\n METHOD Show( nRow, nCol, cPrompt, oWnd )\n******************************************\n\nLocal n\nLocal aPoint := { nRow, nCol }\nLocal aAux, nMaxLen\nLocal nHeight\nLocal nWidth\nLocal nHScreen := GetSysMetrics( 1 )\nLocal nWScreen := GetSysMetrics( 0 )\nLocal nLines\n\nif ::lVisible\n ::Hide()\nendif\n\n if cPrompt != nil\n ::cPrompt := cPrompt\n aAux := ::MaxLen( cPrompt )\n nMaxLen := aAux[1]\n nLines := aAux[2]\n nWidth := nMaxLen + 4\n nHeight := ( nLines * ::nHRow ) + 2\n endif\n\n ClientToScreen( oWnd:hWnd, aPoint ) // CRASHES HERE BECAUSE oWn:hWnd is nil and apoint is empty.\n if aPoint[ 1 ] == nRow\n aPoint := ClientToScreen( oWnd:hWnd, aPoint )\n endif\n\n nRow := aPoint[ 1 ]\n nCol := aPoint[ 2 ]\n\n if nRow + nHeight > nHScreen\n nRow := nHScreen - nHeight - 10\n endif\n\n if nCol + nWidth > nWScreen\n nCol := nWScreen - nWidth - 10\n endif\n\n ::Move( nRow, nCol, nWidth, nHeight , .t. )\n\n Super:Show()\n\n ::lVisible := .t.\n\nReturn nil\n\nI don't use tooltips on my calendar so I'm just returning nil from this method. Thanks again for your help.\n\nRandal",
"time": "13:41",
"topic": "Canal5 Calendar",
"username": "Randal"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "you must not compile c5tip you have allready [b:1htuy5ip]TC5ToolTip [/b:1htuy5ip]class on Fwh \n\n[b:1htuy5ip]method default of c5calendar[/b:1htuy5ip]\n\n if ::oTooltip == nil\n // ::oToolTip := TC5Tip():New(Self )\n ::oToolTip := TC5ToolTip():New( 0, 0, 1, 5, Self, .f., CLR_WHITE, RGB(228,229,240), RGB(100,100,100), 2, 2 )\n endif\n\n [b:1htuy5ip]METHOD MouseMove( nRow, nCol, nKeyFlags ) of c5calendar [/b:1htuy5ip]\n\n[b:1htuy5ip]found these lines[/b:1htuy5ip]\n\n if ::lTooltips\n if ::oToolTip != nil\n ::oToolTip:Show( nBottom - 6, nRight - 6, ::acTooltips[ nDia ], Self )\n\n\n[b:1htuy5ip]and paste these [/b:1htuy5ip]\n\nif ::lTooltips\n if ::oToolTip != nil\n // ::oToolTip:Show( nBottom - 6, nRight - 6, ::acTooltips[ nDia ], Self )\n ::oToolTip:cHeader := \"Calendar\"\n ::oToolTip:cBody := ::acTooltips[ nDia ]\n ::oToolTip:Move(nTop, nLeft,nBottom - 6, nRight - 6, .f. )\n ::oToolTip:cFoot :=\"Fwh Power\"\n ::oToolTip:Default()\n ::oToolTip:Show()\n hToolTip = ::oToolTip:hWnd\n\n\n\n[b:1htuy5ip]here run ok [/b:1htuy5ip]\n\n\n[img:1htuy5ip]http://www.iispascalcomiforti.it/wp-content/uploads/2017/02/calendar.jpg[/img:1htuy5ip]",
"time": "15:16",
"topic": "Canal5 Calendar",
"username": "Silvio.Falconi"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[b:383y0973]good this :[/b:383y0973]\n\n local a, aPos\n---\n a := ::oTooltip:GetSize()\n aPos = { nRow, nCol }\n aPos := ClientToScreen( ::hWnd, aPos )\n\n if aPos[2]+a[1] > GetSysMetrics(1)\n aPos[2] := GetSysMetrics(0) - a[1] - 20\n endif\n\n ::oToolTip:cHeader := nil//\"Calendar\"\n ::oToolTip:cBody := ::acTooltips[ nDia ]\n ::oToolTip:cFoot :=nil //\"Fwh Power\"\n *::oToolTip:Move(nTop, nLeft,nBottom , nRight , .t. )\n ::oToolTip:Move( aPos[1], aPos[2],a[1],a[2], .f. )\n ::oToolTip:Default()\n ::oToolTip:Show()\n\n hToolTip = ::oToolTip:hWnd",
"time": "15:52",
"topic": "Canal5 Calendar",
"username": "Silvio.Falconi"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio:\n\nI didn't realize I could just use the c5tooltip class included with FWH. Thanks for the sample code.\n\nRandal",
"time": "18:45",
"topic": "Canal5 Calendar",
"username": "Randal"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I not understood what you cannot realize ?\n I sad you the oldest c5tip class of paco is no compatible with c5calendar if you use fwh last version.(2017) because fwh have a c5tioltip class changed by fivetech.\n\nTo use c5calendar you must modify the class as i wrote.",
"time": "20:13",
"topic": "Canal5 Calendar",
"username": "Silvio.Falconi"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio:\n\nI'm sorry for the miscommunication. What I mean is I did not realize I could use the fwh c5tooltip class until you showed me that. I got it all working, thank you very much helping me get this fixed and for the sample code.\n\nBest Regards,\nRandal",
"time": "02:02",
"topic": "Canal5 Calendar",
"username": "Randal"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\n\n\"I didn't realize\" means \"I didn't understand\".\n\nIn italiano: \"non avevo realizzato che...\", nel senso di \"non avevo capito che...\", \"non mi ero reso conto che...\".\n\n<!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "10:04",
"topic": "Canal5 Calendar",
"username": "Enrico Maria Giordano"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-02-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Grazie Emg\nAdesso sono più tranquillo.\nSe però rileggi le frasi di Randal puoi trovare che lui pensava fosse un esempio \"test\" mentre io gli avevo modificato direttamente la classe \nEcco cosa cercavo di far capire al Randal \n\nThanks Emg\nNow I am quieter.\nHowever, if you re-read the sentences of Randal can find that he thought was an example \"test\" of calendar while I had changed the class directly\nHere is what I tried to explain to Mr Randal",
"time": "10:20",
"topic": "Canal5 Calendar",
"username": "Silvio.Falconi"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-10-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Silvio.Falconi\":c1wt6f89]Also I use calendar,Banner and other Canalfive controls\nwich error you have ?[/quote:c1wt6f89]\n\nHi Silvio,\nDid you had CanalFive C5Folder sample code? if you had it, could you send to me? Thank you.",
"time": "19:54",
"topic": "Canal5 Calendar",
"username": "richard-service"
}
] |
Canal5 Calendar
|
[
{
"date": "2017-10-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I use this, I can post the fonts.\n\n[img:9lsphnk8]https://i.imgur.com/CJjj7BT.png[/img:9lsphnk8]\n\nRegards, saludos.",
"time": "20:21",
"topic": "Canal5 Calendar",
"username": "karinha"
}
] |
Canal5 Calendar
|
[
{
"date": "2011-07-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estoy intentando compilar una libreria de Canal5 con la version de FWH de Junio de 2011, y me genera estos errores en el modulo\nc5new.c.\n\nTiene alguien una version compatible con esta version de Harbour (2.1)\n\n.\nError E2227 c5cnew.c 45: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIRC\nError E2227 c5cnew.c 46: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIRC\nError E2227 c5cnew.c 47: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIRC\nError E2227 c5cnew.c 48: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIRC\nError E2227 c5cnew.c 57: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIDRECT\nError E2227 c5cnew.c 58: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIDRECT\nError E2227 c5cnew.c 59: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIDRECT\nError E2227 c5cnew.c 60: Extra parameter in call to hb_parni in function HB_FUN_FILLSOLIDRECT\nWarning W8004 c5cnew.c 217: 'bRet' is assigned a value that is never used in function HB_FUN_CREATECAPTIONFONT\nWarning W8004 c5cnew.c 226: 'bRet' is assigned a value that is never used in function HB_FUN_CREAFCAPT\nError E2227 c5cnew.c 355: Extra parameter in call to hb_parni in function HB_FUN_PTINRECT\nError E2227 c5cnew.c 356: Extra parameter in call to hb_parni in function HB_FUN_PTINRECT\nError E2227 c5cnew.c 357: Extra parameter in call to hb_parni in function HB_FUN_PTINRECT\nError E2227 c5cnew.c 358: Extra parameter in call to hb_parni in function HB_FUN_PTINRECT\nError E2227 c5cnew.c 468: Extra parameter in call to hb_parni in function HB_FUN_C5DEGRADA\nError E2227 c5cnew.c 469: Extra parameter in call to hb_parni in function HB_FUN_C5DEGRADA\nError E2227 c5cnew.c 470: Extra parameter in call to hb_parni in function HB_FUN_C5DEGRADA\nError E2227 c5cnew.c 471: Extra parameter in call to hb_parni in function HB_FUN_C5DEGRADA\nError E2227 c5cnew.c 549: Extra parameter in call to hb_parni in function HB_FUN_BOXEX\nError E2227 c5cnew.c 550: Extra parameter in call to hb_parni in function HB_FUN_BOXEX\nError E2227 c5cnew.c 551: Extra parameter in call to hb_parni in function HB_FUN_BOXEX\nError E2227 c5cnew.c 552: Extra parameter in call to hb_parni in function HB_FUN_BOXEX\nError E2227 c5cnew.c 580: Extra parameter in call to hb_parni in function HB_FUN_DRAWEDGE\nError E2227 c5cnew.c 581: Extra parameter in call to hb_parni in function HB_FUN_DRAWEDGE\nError E2227 c5cnew.c 582: Extra parameter in call to hb_parni in function HB_FUN_DRAWEDGE\nError E2227 c5cnew.c 583: Extra parameter in call to hb_parni in function HB_FUN_DRAWEDGE\nError E2227 c5cnew.c 723: Extra parameter in call to hb_parni in function HB_FUN_VALIDATERECT\nError E2228 c5cnew.c 723: Too many error or warning messages in function HB_FUN_VALIDATERECT\n6 Files, 2 Warnings, 26 Errors\nTiempo de compilación: 5.54s Tiempo de enlazado: 0s Tiempo total: 5.56s\n\nGracias,",
"time": "13:45",
"topic": "Canal5 y FWH 11.05",
"username": "audisys"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2011-07-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "José,\n\nCambia las llamadas a hb_parni(...) en ese código a hb_parvni(...)",
"time": "08:06",
"topic": "Canal5 y FWH 11.05",
"username": "Antonio Linares"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2011-07-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nCorregido en parte, ahora muestra otros errores.\n\nGracias por tu colaboracion.\n\nCompilando vitem.prg...\nCompilando VMenu.prg...\nCompilando c5cnew.c...\nCompilando C5ImgLis.prg...\nCompilando dblbuffe.prg...\nCompilando libreria.prg...\nWarning W8004 c5cnew.c 217: 'bRet' is assigned a value that is never used in function HB_FUN_CREATECAPTIONFONT\nWarning W8004 c5cnew.c 226: 'bRet' is assigned a value that is never used in function HB_FUN_CREAFCAPT\nWarning W8004 c5cnew.c 388: 'nRight' is assigned a value that is never used in function C5GradientFill\nWarning W8004 c5cnew.c 386: 'nBottom' is assigned a value that is never used in function C5GradientFill\nError E2227 c5cnew.c 758: Extra parameter in call to hb_storni in function HB_FUN_INTRECT\nError E2227 c5cnew.c 759: Extra parameter in call to hb_storni in function HB_FUN_INTRECT\nError E2227 c5cnew.c 760: Extra parameter in call to hb_storni in function HB_FUN_INTRECT\nError E2227 c5cnew.c 761: Extra parameter in call to hb_storni in function HB_FUN_INTRECT\nWarning W8064 c5cnew.c 1124: Call to function with no prototype in function HB_FUN_C5_ISAPPTHEMED\nWarning W8064 c5cnew.c 1142: Call to function with no prototype in function HB_FUN_C5_ISTHEMEACTIVE\nWarning W8075 c5cnew.c 1151: Suspicious pointer conversion in function HB_FUN_C5_OPENTHEMEDATA\nError E2227 c5cnew.c 1209: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEBACKGROUND\nError E2227 c5cnew.c 1210: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEBACKGROUND\nError E2227 c5cnew.c 1211: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEBACKGROUND\nError E2227 c5cnew.c 1212: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEBACKGROUND\nError E2227 c5cnew.c 1246: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEICON\nError E2227 c5cnew.c 1247: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEICON\nError E2227 c5cnew.c 1248: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEICON\nError E2227 c5cnew.c 1249: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMEICON\nWarning W8075 c5cnew.c 1285: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\nError E2227 c5cnew.c 1290: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMETEXT\nError E2227 c5cnew.c 1291: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMETEXT\nError E2227 c5cnew.c 1292: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMETEXT\nError E2227 c5cnew.c 1293: Extra parameter in call to hb_parnl in function HB_FUN_C5_DRAWTHEMETEXT\nWarning W8075 c5cnew.c 1312: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\n6 Files, 9 Warnings, 16 Errors\nTiempo de compilación: 4.65s Tiempo de enlazado: 0s Tiempo total: 4.67s",
"time": "14:39",
"topic": "Canal5 y FWH 11.05",
"username": "audisys"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2011-07-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "José,\n\nCambia hb_storni(...) por hb_storvni(...), y hb_parnl(...) por hb_parvnl(...)",
"time": "02:07",
"topic": "Canal5 y FWH 11.05",
"username": "Antonio Linares"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2011-07-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nPaso todo Ok, solo quedan unos Warning que no creo que sean problemas.\n\nDe nuevo gracias.\n\nCompilando vitem.prg...\nCompilando VMenu.prg...\nCompilando C5ImgLis.prg...\nCompilando dblbuffe.prg...\nCompilando libreria.prg...\nCompilando c5cnewH.c...\nWarning W8004 c5cnewH.c 217: 'bRet' is assigned a value that is never used in function HB_FUN_CREATECAPTIONFONT\nWarning W8004 c5cnewH.c 226: 'bRet' is assigned a value that is never used in function HB_FUN_CREAFCAPT\nWarning W8004 c5cnewH.c 388: 'nRight' is assigned a value that is never used in function C5GradientFill\nWarning W8004 c5cnewH.c 386: 'nBottom' is assigned a value that is never used in function C5GradientFill\nWarning W8064 c5cnewH.c 1124: Call to function with no prototype in function HB_FUN_C5_ISAPPTHEMED\nWarning W8064 c5cnewH.c 1142: Call to function with no prototype in function HB_FUN_C5_ISTHEMEACTIVE\nWarning W8075 c5cnewH.c 1151: Suspicious pointer conversion in function HB_FUN_C5_OPENTHEMEDATA\nWarning W8075 c5cnewH.c 1285: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\nWarning W8075 c5cnewH.c 1312: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\nConstruyendo librería c5taskh.lib...\n6 Files, 9 Warnings, 0 Errors\nTiempo de compilación: 4.18s Tiempo de enlazado: 0.44s Tiempo total: 4.64s",
"time": "15:35",
"topic": "Canal5 y FWH 11.05",
"username": "audisys"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio;\nretomo este post oprque me encuentro con el mismo problema al compilar esta clase, quizás porque uso xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 9421)\nhice las correcciones sugeridas y me retorna el siguiente error:\n[code=fw:23k5wq7f]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Generating C source output <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'obj<span style=\"color: #000000;\">\\t</span>emp.c'</span>...<br />Done.<br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />obj\\temp.c:<br /> obj\\c5cnew.obj does not exist<br /> c5cnew.cpp does not exist<br /> source\\c5cnew.c Fri May <span style=\"color: #000000;\">04</span> <span style=\"color: #000000;\">10</span>:<span style=\"color: #000000;\">28</span>:<span style=\"color: #000000;\">10</span> <span style=\"color: #000000;\">2012</span><br /><br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />source\\c5cnew.c:<br /><span style=\"color: #000000;\">Warning</span> W8065 source\\c5cnew.c <span style=\"color: #000000;\">11</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATECOMPATIBLEBITMAP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">17</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_COMPATBMP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">23</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATECOMPATIBLEDC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">29</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_COMPATDC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">44</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">45</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">46</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">47</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">48</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">50</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIRC<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">56</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">57</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">58</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">59</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">60</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">62</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">68</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BEGINPATH<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">73</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ENDPATH<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">78</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PATHTOREGION<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">83</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINREGION<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">89</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEFONTUNDERLINE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">119</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREAFUNDER<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">150</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEFONTBOLD<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">181</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREAFBOLD<br />Warning W8004 source\\c5cnew.c <span style=\"color: #000000;\">217</span>: <span style=\"color: #ff0000;\">'bRet'</span> is assigned a value that is never used in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATECAPTIONFONT<br />Warning W8004 source\\c5cnew.c <span style=\"color: #000000;\">226</span>: <span style=\"color: #ff0000;\">'bRet'</span> is assigned a value that is never used in <span style=\"color: #00C800;\">function</span> HB_FUN_CREAFCAPT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">233</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">234</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">235</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">236</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">237</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">238</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">239</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWDOWN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">288</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">289</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">290</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">291</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">292</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">293</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">294</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ARROWUP<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">343</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTEXTLEN<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">352</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">353</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">355</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">356</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">357</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">358</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8004 source\\c5cnew.c <span style=\"color: #000000;\">388</span>: <span style=\"color: #ff0000;\">'nRight'</span> is assigned a value that is never used in <span style=\"color: #00C800;\">function</span> C5GradientFill<br />Warning W8004 source\\c5cnew.c <span style=\"color: #000000;\">386</span>: <span style=\"color: #ff0000;\">'nBottom'</span> is assigned a value that is never used in <span style=\"color: #00C800;\">function</span> C5GradientFill<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">468</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5DEGRADA<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">469</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5DEGRADA<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">470</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5DEGRADA<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">471</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5DEGRADA<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">473</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5DEGRADA<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">489</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_STRETCHBLT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">497</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BMPWIDTH<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">507</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BMPHEIGHT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">523</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWSTATE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">529</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ROUNDRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">535</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_SETBRUSHORG<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">536</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_SETBRUSHORG<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">537</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_SETBRUSHORG<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">543</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">549</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">550</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">551</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">552</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Error E2451 source\\c5cnew.c <span style=\"color: #000000;\">554</span>: <span style=\"color: #000000;\">Undefined</span> symbol <span style=\"color: #ff0000;\">'hb_stackST'</span> in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">556</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOXEX<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">580</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">581</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">582</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">583</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">589</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">594</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_SETMENUITEMBITMAPS<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">612</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BMPTOGRAY<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">659</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_ICONTOGRAY<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">696</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_SETSTRETCHBLTMODE<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">723</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_VALIDATERECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">724</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_VALIDATERECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">725</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_VALIDATERECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">726</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_VALIDATERECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">729</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_VALIDATERECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">744</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">745</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">746</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">747</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">749</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">750</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">751</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">752</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">758</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">759</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">760</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">761</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">772</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">773</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">774</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">775</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">777</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Warning W8065 source\\c5cnew.c <span style=\"color: #000000;\">778</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />Error E2228 source\\c5cnew.c <span style=\"color: #000000;\">778</span>: <span style=\"color: #000000;\">Too</span> many error or warning messages in <span style=\"color: #00C800;\">function</span> HB_FUN_EQUALRECT<br />*** <span style=\"color: #000000;\">2</span> errors in Compile ***<br /><br />** error <span style=\"color: #000000;\">1</span> ** deleting obj\\c5cnew.obj<br /> </div>[/code:23k5wq7f]\n\ndesde ya gracias por tu tiempo",
"time": "14:45",
"topic": "Canal5 y FWH 11.05",
"username": "MarioG"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nAhora Fivewin, al incorporar la clase TVistaMenu de CanalFive, incluye nativamente todas las funciones de Canalfive.\n\nSin embargo, el uso de controles de canalfive y FWH a veces me ha reportado problemas que no soy capaz de trazar adecuadamente.",
"time": "15:14",
"topic": "Canal5 y FWH 11.05",
"username": "lucasdebeltran"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Lucas;\ngracias por la respuesta; lo tendré en cuenta",
"time": "15:25",
"topic": "Canal5 y FWH 11.05",
"username": "MarioG"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mario,\n\n¿Y has probado a contactar con el autor?. Quizás tenga una versión actualizada.",
"time": "15:43",
"topic": "Canal5 y FWH 11.05",
"username": "lucasdebeltran"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "No, aunque tengo que estudiar que me conviene mas. Si mantenerlo con vtaskbar (y contactar al autor) o reescribirlo con TOutLook2003 que ha mis necesidades solucionaría el problema que se me presento al intenar recompilar esta aplicación que lleva ya sus años y requiere una modificación menor",
"time": "16:01",
"topic": "Canal5 y FWH 11.05",
"username": "MarioG"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos:\n\nLa clase vTaskMenu funciona perfectamente hasta la versión 11.09, harbour 5.8.2 y Borland C++ 5.8.2 que son las versiones que estoy usando ahora, pero yo también tuve el mismo problema cuando empece a usar FWH 11.09, y si mi memoria no me falla ( que es muy habitual, jeje ), el problema era actualizar a harbour 5.8.2 y borland C++ 5.8.2 a las ultimas versiones y volver a compilar la clase y los ficheros c.\n\nUn saludo\nJLL",
"time": "17:08",
"topic": "Canal5 y FWH 11.05",
"username": "jll-fwh"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Javier:\n\nSí, yo compilé de nuevo todas las libs pero de vez en cuando el control hace cosas raras y se queda colgado, pero generalmente funciona bien.\n\nDebe ser algo de las funciones de c5lib, pues se diseñó con FW 2.4 y Harbour 1.x, y exigiría una revisión que a mi se me escapa teniendo en cuenta todos los tremendos cambios que ha tenido FWH y Harbour.\n\nVtaskmenu tamibén me funciona correctamente, pero alguna vez me arroja el error de can´t create dialog. Tampoco he conseguido acotar el problema la verdad.\n\nMuchas gracias por compartir tu feedback, ya que muchas veces me siento solo con los problemas.\n\nUn saludo",
"time": "19:14",
"topic": "Canal5 y FWH 11.05",
"username": "lucasdebeltran"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "lucas, agregame al msn si quieres.\n\nem mi firma del hilo tienes mi blog y msn.\n\nUn saludo\nJL",
"time": "20:12",
"topic": "Canal5 y FWH 11.05",
"username": "jll-fwh"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mario,\n\nPara compilar con xharbour quita la \"v\" de las llamadas a hb_par...\n\nEsas funciones son solo de Harbour. FWH proporciona una capa de compatibilidad entre Harbour y xHarbour <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "21:38",
"topic": "Canal5 y FWH 11.05",
"username": "Antonio Linares"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2012-05-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio; gracias por tu tiempo\ncreo que falta menos, este error devuelve ahora:\n[quote:3tvukwvu]Borland C++ 5.82 for Win32 Copyright (c) 1993, 2005 Borland\nsource\\c5cnew.c:\nWarning W8004 source\\c5cnew.c 217: 'bRet' is assigned a value that is never used in function HB_FUN_CREATECAPTIONFONT\nWarning W8004 source\\c5cnew.c 226: 'bRet' is assigned a value that is never used in function HB_FUN_CREAFCAPT\nWarning W8004 source\\c5cnew.c 388: 'nRight' is assigned a value that is never used in function C5GradientFill\nWarning W8004 source\\c5cnew.c 386: 'nBottom' is assigned a value that is never used in function C5GradientFill\nError E2451 source\\c5cnew.c 554: Undefined symbol 'hb_stackST' in function HB_FUN_BOXEX\nWarning W8064 source\\c5cnew.c 1124: Call to function with no prototype in function HB_FUN_C5_ISAPPTHEMED\nWarning W8064 source\\c5cnew.c 1142: Call to function with no prototype in function HB_FUN_C5_ISTHEMEACTIVE\nWarning W8075 source\\c5cnew.c 1151: Suspicious pointer conversion in function HB_FUN_C5_OPENTHEMEDATA\nWarning W8075 source\\c5cnew.c 1285: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\nWarning W8075 source\\c5cnew.c 1312: Suspicious pointer conversion in function HB_FUN_C5_DRAWTHEMETEXT\n*** 1 errors in Compile ***[/quote:3tvukwvu]",
"time": "13:54",
"topic": "Canal5 y FWH 11.05",
"username": "MarioG"
}
] |
Canal5 y FWH 11.05
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello \n \nAs some of you you know, Fivetechsoft begins conversations with CanalFive to distribute its products. We have not reached an agreement and for it CanalFive will continue selling its own products. \nPlease, to buy the products of Canalfive, to send a mail to <!-- e --><a href=\"mailto:pacogarcia@canalfive.com\">pacogarcia@canalfive.com</a><!-- e --> or <!-- e --><a href=\"mailto:francisco_garcia_fernandez@hotmail.com\">francisco_garcia_fernandez@hotmail.com</a><!-- e --> \n \nI thank FivetechSoft openly their interest for the products of CanalFive. \n \nA cordial greeting \n \nPaco García",
"time": "09:22",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola \n \nComo algunos de vosotros sabeis, Fivetechsoft inicio conversaciones con CanalFive para distribuir sus productos. No hemos llegado a un acuerdo y por ello CanalFive seguirá vendiendo sus propios productos. \n\nPara comprar los productos de Canalfive por favor, enviar un correo a <!-- e --><a href=\"mailto:pacogarcia@canalfive.com\">pacogarcia@canalfive.com</a><!-- e --> o <!-- e --><a href=\"mailto:francisco_garcia_fernandez@hotmail.com\">francisco_garcia_fernandez@hotmail.com</a><!-- e --> \n \nAgradezco publicamente a FivetechSoft su interés por los productos de CanalFive. \n \nUn cordial saludo \n \nPaco García",
"time": "09:23",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "> We have not reached an agreement \nThis new week starts with really bad news.\n\nRegards\nOtto",
"time": "10:11",
"topic": "CanalFive",
"username": "Otto"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nWe have tried to reach an agreement but it was not possible. Anyhow you may buy the CanalFive products directly from them",
"time": "11:16",
"topic": "CanalFive",
"username": "Antonio Linares"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nThat’s true. But I don’t belief a standalone product “CAnalFive RibbonBar” has enough financial budget for a long life.\n\nRegards\nOtto",
"time": "11:48",
"topic": "CanalFive",
"username": "Otto"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":ci3qvn8v]\nThat’s true. But I don’t belief a standalone product “CAnalFive RibbonBar” has enough financial budget for a long life.\n[/quote:ci3qvn8v]\n\nI agree with Otto.\nI long time ago I tryed contact Paco to buy VTaskBar but I receive nothing...\nI'm sad because Paco's products are very good but the problem is support to it...\n\nRegards\nMaurilio",
"time": "12:23",
"topic": "CanalFive",
"username": "Maurilio Viana"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello.\n\nI apologize if I have stopped some person to assist at some time. Lately I have had problems of health. Any thing that you need you knows my email.\n\n<!-- e --><a href=\"mailto:pacogarcia@canalfive.com\">pacogarcia@canalfive.com</a><!-- e -->\n<!-- e --><a href=\"mailto:francisco_garcia_fernandez@hotmail.com\">francisco_garcia_fernandez@hotmail.com</a><!-- e -->\n\nYou can contact also in the last address by Messenger.\n\nA greeting.\n\nPaco",
"time": "17:26",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Que classes existem? o Site <!-- w --><a class=\"postlink\" href=\"http://www.canalfive.com\">www.canalfive.com</a><!-- w --> não mostra nada.\n\nGracias.",
"time": "23:06",
"topic": "CanalFive",
"username": "syda"
}
] |
CanalFive
|
[
{
"date": "2007-01-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I don´t know how was the support before but I bought allmost all classes of Paco during last six months and I´m recieving an excelent support.\n\nI ask him for special changes to the classes to cover my special needs and I recieve this changes allmost inmediatly.\n\nI report little bugs and I recieved the same result, a solution in less than two days.\n\nI can find him allmost every day in Msn, I can´t say that is difficult for me to comunicate with him.\n\nThat´s my experience.",
"time": "01:51",
"topic": "CanalFive",
"username": "jose_murugosa"
}
] |
CanalFive
|
[
{
"date": "2007-01-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear josè\ndo you tried new vtaskbar clause watermark.\nbecause when you use a splitter and move it on left and right it hide the bitmap of watermark. On the old version this function worked good.",
"time": "10:09",
"topic": "CanalFive",
"username": "Silvio"
}
] |
CanalFive
|
[
{
"date": "2007-01-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"jose_murugosa\":mebaou2k]\nI can´t say that is difficult for me to comunicate with him.\nThat´s my experience.[/quote:mebaou2k]\n\nJose,\n\nI'm happy to know it.\n\nThanks a lot!\nMaurilio",
"time": "11:54",
"topic": "CanalFive",
"username": "Maurilio Viana"
}
] |
CanalFive
|
[
{
"date": "2007-01-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Paco\n\ny nosotros que estamos del otro lado del charco, podremos comprar tus productos con RF.\n\nSaludos\nMarco A. Delgado.",
"time": "17:03",
"topic": "CanalFive",
"username": "Marco A. Delgado"
}
] |
CanalFive
|
[
{
"date": "2007-01-16",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estamos en eso....",
"time": "20:58",
"topic": "CanalFive",
"username": "R.F."
}
] |
CanalFive
|
[
{
"date": "2007-01-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I've tried to see what products CanalFive now offers. Many years ago I bought several for use with Clipper but I thought they stopped selling with the rise of the windows environment.\n\nWhen I first saw the RibbonBar info I tried to find a website that would display the products, but only found a banner.\n\nIs there a website where I can now see what is available ? Is it in English ?\n\nThanks.",
"time": "02:02",
"topic": "CanalFive",
"username": "TimStone"
}
] |
CanalFive
|
[
{
"date": "2007-01-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"TimStone\":3hex6prk]When I first saw the RibbonBar info I tried to find a website that would display the products, but only found a banner.\n[/quote:3hex6prk]\n\nThat's true.\nPaco, do you have plan to enable Canal Five website again?\n\nRegards,\nMaurilio",
"time": "16:07",
"topic": "CanalFive",
"username": "Maurilio Viana"
}
] |
CanalFive
|
[
{
"date": "2007-01-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes indeed. I'm preparing the web to open it again. I hope that it will be ready very soon. First I'm going to open a provisional web and after I will open the definitive web. \nI will maintain you informed.\n\nA greeting\n\nSi, en efecto. Estoy preparando la página para abrirla de nuevo. Espero tenerla lista en cuanto antes. Primero voy a abrir una página provisional y posteriormente la definitiva. Ya os avisaré cuando esté lista.\n\nUn saludo",
"time": "09:20",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Paco ,\nI can Help you to create a new dynamic website",
"time": "10:44",
"topic": "CanalFive",
"username": "Silvio"
}
] |
CanalFive
|
[
{
"date": "2007-01-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio. \n\nThank you very much. I have a person working in CanalFive that he is preparing the web page and other things. Very soon we will see the result.\n\nThank you very much, sincerely.\n\nPaco",
"time": "12:44",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Se fosse possivel, poderia postar os produtos, preços e forma de pagto, para nos ?\n\nEu tenho interesse na Officebar e na FsDi2006.\n\n@braços Ale",
"time": "19:52",
"topic": "CanalFive",
"username": "Ale SB"
}
] |
CanalFive
|
[
{
"date": "2007-01-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ya te he enviado la información a tu direccion de correo.\n\nAlready I have send you the information to your email.\n\nA greeting.\n\nPaco Garcia",
"time": "23:34",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-01-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola\n\nQue es CanalFive <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\nSaluditos\n\nAida <!-- s:wink: --><img src=\"{SMILIES_PATH}/icon_wink.gif\" alt=\":wink:\" title=\"Wink\" /><!-- s:wink: -->",
"time": "00:57",
"topic": "CanalFive",
"username": "AIDA"
}
] |
CanalFive
|
[
{
"date": "2007-03-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Some news about the FW16 version?",
"time": "18:09",
"topic": "CanalFive",
"username": "Otto"
}
] |
CanalFive
|
[
{
"date": "2007-04-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Alguien ha reconstruido las librerias con la nueva version de Fwh y Harbour Abril de 2007? porque da error, en version de Junio del año pasado no da problemas.\nSalu2\nPaco",
"time": "15:36",
"topic": "CanalFive",
"username": "Francisco Horta"
}
] |
CanalFive
|
[
{
"date": "2007-04-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hola\nAlgunos clientes me han reportado errores de C5menu en concreto. \nEs curioso pero cuando antes esto funcionaba\n\nDATA cPrompt AS String INIT \" \"\n\ny se inicializaba a nil\n\nahora no funciona\n\nNo entiendo muy bien porque se pierde continuamente la compatiblidad con lo hecho antiguamente, pero enfin.\n\nUn saludo y si tienes algun problema en concreto escribeme a \n\npacogarcia[arroba]canalfive[punto]com",
"time": "11:05",
"topic": "CanalFive",
"username": "Paco Garcia"
}
] |
CanalFive
|
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "GOOOOOOD MR PACOOO!!!",
"time": "11:35",
"topic": "CanalFive Web",
"username": "Silvio"
}
] |
CanalFive Web
|
[
{
"date": "2007-04-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Paco, I'm still waiting for Outlook Bar patch (bottom line icons)\n\nRegards,\nRoberto Parisi",
"time": "13:39",
"topic": "CanalFive Web",
"username": "Roberto Parisi"
}
] |
CanalFive Web
|
[
{
"date": "2007-04-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "TROESMA !!!!\nExcelente !!!\n\nComo tienta tu trabajo !!! =>))\n\nUn abrazo. El Loco =>))",
"time": "00:53",
"topic": "CanalFive Web",
"username": "El Loco"
}
] |
CanalFive Web
|
[
{
"date": "2007-04-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Y los precios ?",
"time": "02:18",
"topic": "CanalFive Web",
"username": "Marco Augusto"
}
] |
CanalFive Web
|
[
{
"date": "2007-04-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mandar un correo a pacogarcia[arroba]canalfive[punto]com y os los envio gustosamente.\n\nUn saludo\n\nPaco Garcia",
"time": "08:20",
"topic": "CanalFive Web",
"username": "Paco Garcia"
}
] |
CanalFive Web
|
[
{
"date": "2006-10-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Pues a todos nuestros clientes de Mexico, les informo que hemos llegado a un acuerdo con Paco para distribuir sus controles en Mexico.\n\nActualmente tenemos disponible la clase VTaskBar, pero pronto tendremos mas sorpresas, paco me va a matar, pero bueno... aqui esta una primicia: Control tipo barra de Outlook con un VTaskBar.\n\n[img:1d6p4qtz]http://www.google.d2g.com/objeto/c52.jpg[/img:1d6p4qtz]\n\nTambien tenemos en la chistera una nueva clase MENU, un calendario nuevo muy bonito, una clase para titulos en dialogos, y ademas, esto: que todavia esta en una etapa temprana de desarrollo:\n\n[img:1d6p4qtz]http://www.google.d2g.com/objeto/c51.jpg[/img:1d6p4qtz]",
"time": "19:27",
"topic": "CanalFive ya disponible en Mexico.",
"username": "R.F."
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2006-10-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Rene,\nTodo un look profesional al alcanze... Me interesa.\nPersonalmente me reuso a usar clases de terceros, por que al cambiar de versión en fivewin pueden ya no ser compatibles y esperar a que el desarrollador entrege una versión nueva... ni hablar.\n\nPero, estoy dispuesto a correr el riesgo. Un look profesional vende muy bien el programa al cliente. \n\nFelicidades a Paco.\n\nSaludos",
"time": "05:37",
"topic": "CanalFive ya disponible en Mexico.",
"username": "fleal"
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2006-10-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Pues mira que suerte teneis por ahí, por que por aquí en España no es fácil encontrar información sobre los productos de Canalfive. Su web lleva inactiva bastante tiempo.\n\nUn saludo,\nFenix",
"time": "09:13",
"topic": "CanalFive ya disponible en Mexico.",
"username": "fenix"
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2006-10-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Lo bueno de los controles de paco, aparte de su look es que proporciona el 100% del codigo por lo que ante cualquier cambio grade en los compiladores es nbecesario solamente una recompilacion para recrear las librerias.\n\nsalu2\ncarlos vargas",
"time": "00:44",
"topic": "CanalFive ya disponible en Mexico.",
"username": "carlos vargas"
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2006-10-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Master FLORES\n\nAdemas de la vTaskBar que esta fabulosa, que otros controles/clases estan disponibles ??\n\nMe interesaria mucho el de los Folders <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\n\nSaludos",
"time": "20:42",
"topic": "CanalFive ya disponible en Mexico.",
"username": "Raymundo Islas M."
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2006-10-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Rene,\nhace algunos dias te envie un mail para saber cuanto dolares por la vTaskBar. La página de canalfive solo tiene una imagen... no hay nada.\nPlease, cuando tengas un tiempo contactame con los detalles.\n\n<!-- e --><a href=\"mailto:visitante32@hotmail.com\">visitante32@hotmail.com</a><!-- e -->\n\nSaludos\nFernando",
"time": "00:16",
"topic": "CanalFive ya disponible en Mexico.",
"username": "fleal"
}
] |
CanalFive ya disponible en Mexico.
|
[
{
"date": "2007-01-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenos días foro!!\n\n Mirad, tengo un problema que se solucionó en su día, pero no sé el porque me pasa, tengo lo siguiente:\n\n[code:2f2zpus2]\n redefine btnbmp aoButtons[14] resource \"BOTON_ATRAS\" id 314 of odlg UPDATE TRANSPARENT ACTION oDlg:end()\naoButtons[14]:bValid:={||.t.}\n[/code:2f2zpus2]\n\nel problema es que como entre en un gets que tenga una función de validación, el cancel de este button NO me funciona. \n\nUN SALUDO, y muchas gracias",
"time": "14:13",
"topic": "Cancel en Buttonbmp",
"username": "Mike Serra"
}
] |
Cancel en Buttonbmp
|
[
{
"date": "2007-01-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "<!-- m --><a class=\"postlink\" href=\"http://www.fivewin.com.br/exibedicas.asp?id=53\">http://www.fivewin.com.br/exibedicas.asp?id=53</a><!-- m -->",
"time": "15:44",
"topic": "Cancel en Buttonbmp",
"username": "karinha"
}
] |
Cancel en Buttonbmp
|
[
{
"date": "2007-01-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias, funcionó.",
"time": "11:20",
"topic": "Cancel en Buttonbmp",
"username": "Mike Serra"
}
] |
Cancel en Buttonbmp
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nI am trying to trap my Cancel button event during a Get - Valid scenario .. Here is the code \n\n[code=fw:373lkf2f]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br /><span style=\"color: #00C800;\">Static</span> lClose := <span style=\"color: #00C800;\">nil</span><br />..<br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">GET</span> oClname <span style=\"color: #0000ff;\">VAR</span> cClname <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">120</span> <span style=\"color: #0000ff;\">of</span> oREQ <span style=\"color: #0000ff;\">PICTURE</span> <span style=\"color: #ff0000;\">\"@!\"</span> ;<br /> <span style=\"color: #0000ff;\">valid</span> CustGet<span style=\"color: #000000;\">(</span>cClname, cMODE, oRsReq, oButt1,oButt2,oButt3,oButt4, <span style=\"color: #ff0000;\">\"1\"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">UPDATE</span><br /><br />...<br />...<br />...<br /><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBUTT2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">of</span> oREQ ; <span style=\"color: #B900B9;\">// cancel</span><br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Cancel \"</span> <span style=\"color: #0000ff;\">LEFT</span> <span style=\"color: #000000;\">2007</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> lClose := .t.,lOK := .F., oREQ:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------</span><br /><span style=\"color: #00C800;\">Static</span> Func CUSTGET<span style=\"color: #000000;\">(</span> cNAME, cMODE, oRsReq, oButt1,oButt2,oButt3,oButt4, cWhere <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> oDLG,oLBX, oRsCust, cSQL, oERR, oCol<br /><span style=\"color: #00C800;\">LOCAL</span> oBTN1,oBTN2,oBTN3,lOK,oBrush<br /><br /><span style=\"color: #0000ff;\">msginfo</span><span style=\"color: #000000;\">(</span> lclose <span style=\"color: #000000;\">)</span><br /><br /> </div>[/code:373lkf2f]\n\nAs you can see from the screen shot .. the valid fires before the lclose variable is initialized and I can not seem to trap the event and return(.t.) from the valid ..\n\nThanks\nRick Lipkin\n\n[url=http://imageshack.us/photo/my-images/830/validg.jpg/:373lkf2f][img:373lkf2f]http://img830.imageshack.us/img830/1015/validg.jpg[/img:373lkf2f][/url:373lkf2f]",
"time": "17:22",
"topic": "Cancel on Valid",
"username": "Rick Lipkin"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Try adding \noBUTT2:lCancel := .t.",
"time": "20:39",
"topic": "Cancel on Valid",
"username": "Gale FORd"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Gale\n\nHow would I trap that in the Valid function if the cursor is in the Get field ?? \n\n[code=fw:3da1qdsk]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBUTT2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">of</span> oREQ ; <span style=\"color: #B900B9;\">// cancel</span><br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Cancel \"</span> <span style=\"color: #0000ff;\">LEFT</span> <span style=\"color: #000000;\">2007</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> lOK := .F., oBUTT2:<span style=\"color: #000000;\">lCancel</span> := .t., oREQ:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /> </div>[/code:3da1qdsk]\n\nI inserted your suggestion but the valid still fires if the cursor is in the Customer last name field ??\n\n[code=fw:3da1qdsk]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">GET</span> oClname <span style=\"color: #0000ff;\">VAR</span> cClname <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">120</span> <span style=\"color: #0000ff;\">of</span> oREQ <span style=\"color: #0000ff;\">PICTURE</span> <span style=\"color: #ff0000;\">\"@!\"</span> ;<br /> <span style=\"color: #0000ff;\">valid</span> CustGet<span style=\"color: #000000;\">(</span>cClname, cMODE, oRsReq, oButt1,oButt2,oButt3,oButt4, <span style=\"color: #ff0000;\">\"1\"</span><span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">UPDATE</span><br /><br /> </div>[/code:3da1qdsk]\n\nThanks \nRick Lipkin",
"time": "21:45",
"topic": "Cancel on Valid",
"username": "Rick Lipkin"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick:\n\nWith the BUTTON class I do this way\n\n[code=fw:2oycdrow]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oCancelar <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">902</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span> CANCEL;<br /> <span style=\"color: #0000ff;\">ACTION</span> oDlg:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #0000ff;\">MESSAGE</span> <span style=\"color: #ff0000;\">\"Cancela el proceso\"</span><br /> </div>[/code:2oycdrow]\n\nPls note the CANCEL clause, perhaps these can help you\n\nRegards",
"time": "23:20",
"topic": "Cancel on Valid",
"username": "Armando"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You need to do it like this:\n[code=fw:30btkr1l]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBUTT2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">of</span> oREQ ; <span style=\"color: #B900B9;\">// cancel</span><br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Cancel \"</span> <span style=\"color: #0000ff;\">LEFT</span> <span style=\"color: #000000;\">2007</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> lOK := .F., oREQ:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br />oBUTT2:<span style=\"color: #000000;\">lCancel</span> := .t.<br /> </div>[/code:30btkr1l]\n\nThis allows to Button to fire and ignore the valid function.",
"time": "23:23",
"topic": "Cancel on Valid",
"username": "Gale FORd"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I don't think the Cancel clause works on btnbmp class. You have to use oButton:lCancel := .f.",
"time": "23:25",
"topic": "Cancel on Valid",
"username": "Gale FORd"
}
] |
Cancel on Valid
|
[
{
"date": "2011-12-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Gale\n\nYES .. your advice worked GREAT .. oButton:lCancel := .t. allowed the valid NOT to fire if the cursor was in the Valid Get !\n\nThanks\nRick Lipkin\n\n[code=fw:1tyb2zze]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBUTT2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">of</span> oREQ ; <span style=\"color: #B900B9;\">// cancel</span><br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span>,<span style=\"color: #ff0000;\">\"DCANCEL1\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Cancel \"</span> <span style=\"color: #0000ff;\">LEFT</span> <span style=\"color: #000000;\">2007</span>;<br /> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span> lOK := .F., oREQ:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> oButt2:<span style=\"color: #000000;\">lCancel</span> := .t.<br /> </div>[/code:1tyb2zze]",
"time": "00:13",
"topic": "Cancel on Valid",
"username": "Rick Lipkin"
}
] |
Cancel on Valid
|
[
{
"date": "2005-10-11",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Hi Antônio,\n\nYou solve the problem in fivewin for harbour 2.6? Cancel in button dont work with acelerator.\n\nThanks.",
"time": "02:50",
"topic": "Cancel with acelerator",
"username": "Anonymous"
}
] |
Cancel with acelerator
|
[
{
"date": "2007-08-17",
"forum": "Off Topic / Otros temas",
"text": "Hola a todos:\n\nEs una pena informarles que debido a algunos problemas logísticos con la empresa que contrata nuestros servicios en Colombia, la visita planeada para la segunda quincena de este mes se ha suspendido.\n\nTenemos una nueva fecha planteada a partir del día 17 de Septiembre, pero con varios cambios en el itinerario que aun tengo pendientes de confirmar, pero que una vez confirmados les informaremos con mucho gusto.\n\nConfirmo además la visita a Chile a partir del 12 de Octubre.",
"time": "17:35",
"topic": "Cancelada la visita a Colombia",
"username": "R.F."
}
] |
Cancelada la visita a Colombia
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Compañeros del foro buenos días...\n\nLo que pasa es que estoy corriendo un ciclo, pero eventualmente necesito cancelarlo. Es posible que sea una pregunta un poco tonta pero no se como hacer esto.\n\nSaludos\n\n[code=fw:31aqbeje]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">IF</span> nRegistros#<span style=\"color: #000000;\">0</span><br /> oConsCA:<span style=\"color: #000000;\">MoveFirst</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Do</span> <span style=\"color: #00C800;\">While</span> !oConsCA:<span style=\"color: #000000;\">Eof</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> vR_Ter:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Con:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Pro:=oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_proyecto\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><br /><br /> vR_Lot:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Tip:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Maz:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /><br /> vConsCB:=<span style=\"color: #ff0000;\">\"INSERT INTO lyma_cobro_serv (ss_regist,ss_estado,ss_tercer,ss_contra,ss_lotesp,ss_tiplot,ss_manzan,ufecha,uhoras) VALUES ('\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>vFReg<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"','A','\"</span>+alltrim<span style=\"color: #000000;\">(</span>vR_Ter<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"',\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Con<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Lot<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Tip<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Maz<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",'\"</span>+vFec+<span style=\"color: #ff0000;\">\"','\"</span>+vTim+<span style=\"color: #ff0000;\">\"')\"</span><br /> <span style=\"color: #00C800;\">TRY</span><br /> oCon:<span style=\"color: #000000;\">Execute</span><span style=\"color: #000000;\">(</span>vConsCB<span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> FW_ShowAdoError<span style=\"color: #000000;\">(</span>oCon<span style=\"color: #000000;\">)</span><br /> END<br /><br /> oConsCA:<span style=\"color: #000000;\">MoveNext</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oProgress2:<span style=\"color: #000000;\">nPosition</span>++<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">EndDo</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br /> </div>[/code:31aqbeje]",
"time": "13:44",
"topic": "Cancelar CICLO",
"username": "leandro"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[code=fw:6q4jun58]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #00C800;\">local</span> nKey := VK_RETURN<br /><br /><br /><span style=\"color: #00C800;\">IF</span> nRegistros#<span style=\"color: #000000;\">0</span><br /> oConsCA:<span style=\"color: #000000;\">MoveFirst</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">Do</span> <span style=\"color: #00C800;\">While</span> !oConsCA:<span style=\"color: #000000;\">Eof</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">CASE</span><br /> <span style=\"color: #00C800;\">CASE</span> nKey == VK_ESCAPE .OR. GETKEYSTATE<span style=\"color: #000000;\">(</span> VK_ESCAPE <span style=\"color: #000000;\">)</span> .OR. ;<br /> LASTKEY<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> = VK_ESCAPE<br /><br /> EXIT<br /><br /> <span style=\"color: #00C800;\">ENDCASE</span><br /><br /><br /> vR_Ter:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Con:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Pro:=oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_proyecto\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><br /><br /> vR_Lot:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Tip:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Maz:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /><br /> vConsCB:=<span style=\"color: #ff0000;\">\"INSERT INTO lyma_cobro_serv (ss_regist,ss_estado,ss_tercer,ss_contra,ss_lotesp,ss_tiplot,ss_manzan,ufecha,uhoras) VALUES ('\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>vFReg<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"','A','\"</span>+alltrim<span style=\"color: #000000;\">(</span>vR_Ter<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"',\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Con<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Lot<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Tip<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Maz<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",'\"</span>+vFec+<span style=\"color: #ff0000;\">\"','\"</span>+vTim+<span style=\"color: #ff0000;\">\"')\"</span><br /> <span style=\"color: #00C800;\">TRY</span><br /> oCon:<span style=\"color: #000000;\">Execute</span><span style=\"color: #000000;\">(</span>vConsCB<span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> FW_ShowAdoError<span style=\"color: #000000;\">(</span>oCon<span style=\"color: #000000;\">)</span><br /> END<br /><br /> oConsCA:<span style=\"color: #000000;\">MoveNext</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oProgress2:<span style=\"color: #000000;\">nPosition</span>++<br /> sysrefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">EndDo</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /> </div>[/code:6q4jun58]\n\nSaludos.\n\u001a",
"time": "14:19",
"topic": "Cancelar CICLO",
"username": "karinha"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "karinha Muchas Gracias por Responder...\n\nEfectivamente funciono..... Pero ahora me surge otra duda.\n\nResulta que coloque un msgNoYes(\"Confirma?\"), si el usuario dice si, se sale del proceso. \nPero si dice no el mensaje se repite hasta que finaliza ciclo...\n\nAlguna idea de como solucionarlo?",
"time": "16:22",
"topic": "Cancelar CICLO",
"username": "leandro"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Intenta:\n\n[code=fw:38ysxg1o]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> <span style=\"color: #00C800;\">WHILE</span> LASTKEY<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> != VK_ESCAPE<br /> </div>[/code:38ysxg1o]",
"time": "16:52",
"topic": "Cancelar CICLO",
"username": "karinha"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Leandro:\n\nSi el usuario responde NO, cambia el valor de nKey\n\nnKey := VK_RETURN\n\nSaludos",
"time": "17:17",
"topic": "Cancelar CICLO",
"username": "Armando"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-02",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Creo que esta es la mejor manera.\n1.-El ciclo en si es rapido, poner un sysrefresh en cada ciclo podría provocar un error. lo mejor es ponerlo cada n registros.\n2.-lo mas rapido es crear una sola cadena para la insertar de una vez todos los registros, esto es eficiente en la mayoria de los casos.\n[code=fw:1kno4b80]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />lSalirSinGrabar := .F.<br />nContador := <span style=\"color: #000000;\">0</span><br />cInsertSQL := <span style=\"color: #ff0000;\">\"\"</span><br /><br /><span style=\"color: #00C800;\">IF</span> nRegistros > <span style=\"color: #000000;\">0</span><br /><br /> oConsCA:<span style=\"color: #000000;\">MoveFirst</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">WHILE</span> !oConsCA:<span style=\"color: #000000;\">Eof</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> <br /> <span style=\"color: #00C800;\">IF</span> LaskKey<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>==VK_ESC<br /> <span style=\"color: #00C800;\">IF</span> MsgNoYes<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Desa cancelar la inserción de registros?\"</span><span style=\"color: #000000;\">)</span><br /> lSalirSinGrabar := .t.<br /> EXIT<br /> <span style=\"color: #00C800;\">ENDIF</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> vR_Ter:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Con:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Pro:=oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_proyecto\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><br /><br /> vR_Lot:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Tip:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Maz:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /><br /> vConsCB:=<span style=\"color: #ff0000;\">\"INSERT INTO lyma_cobro_serv (ss_regist,ss_estado,ss_tercer,ss_contra,ss_lotesp,ss_tiplot,ss_manzan,ufecha,uhoras) VALUES ('\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>vFReg<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"','A','\"</span>+alltrim<span style=\"color: #000000;\">(</span>vR_Ter<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"',\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Con<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Lot<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Tip<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Maz<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",'\"</span>+vFec+<span style=\"color: #ff0000;\">\"','\"</span>+vTim+<span style=\"color: #ff0000;\">\"')\"</span><br /><br /> cInsertSQL += cInsertSQL + <span style=\"color: #ff0000;\">\";\"</span><br /><br /> oConsCA:<span style=\"color: #000000;\">MoveNext</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">IF</span> ++nContador > <span style=\"color: #000000;\">20</span><br /> SysRefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> <span style=\"color: #00C800;\">ENDDO</span><br /><br /> <span style=\"color: #00C800;\">IF</span> !empty<span style=\"color: #000000;\">(</span> cInsertSQL <span style=\"color: #000000;\">)</span> .and. !lSalirSinGrabar<br /> <br /> <span style=\"color: #00C800;\">TRY</span><br /> oCon:<span style=\"color: #000000;\">Execute</span><span style=\"color: #000000;\">(</span> cInsertSQL <span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> FW_ShowAdoError<span style=\"color: #000000;\">(</span> oCon <span style=\"color: #000000;\">)</span><br /> END<br /> <br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">ENDIF</span><br /> </div>[/code:1kno4b80]",
"time": "17:26",
"topic": "Cancelar CICLO",
"username": "carlos vargas"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Que tal asi;\n\n[code=fw:xwwenzcv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><br />oApp := TAplication<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oCiclo <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">101</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">ACTION</span> Proceso<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BUTTON</span> oStop <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">102</span> <span style=\"color: #0000ff;\">OF</span> oDlg <span style=\"color: #0000ff;\">ACTION</span> oApp:<span style=\"color: #000000;\">lStop</span> := .t. <br />...<br />..<br /><br /><span style=\"color: #00C800;\">Function</span> Proceso<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />cInsertSQL := <span style=\"color: #ff0000;\">\"\"</span><br /><br /><span style=\"color: #00C800;\">IF</span> nRegistros > <span style=\"color: #000000;\">0</span><br /><br /> oConsCA:<span style=\"color: #000000;\">MoveFirst</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">WHILE</span> !oConsCA:<span style=\"color: #000000;\">Eof</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> .AND. !oApp:<span style=\"color: #000000;\">lStop</span><br /> <br /> vR_Ter:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,space<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"docu_terce\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Con:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_compraventa\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Pro:=oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_proyecto\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><br /><br /> vR_Lot:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Tip:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_tipo_lote\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /> vR_Maz:=<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span>valtype<span style=\"color: #000000;\">(</span>oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span>=<span style=\"color: #ff0000;\">\"U\"</span>,<span style=\"color: #000000;\">0</span>,oConsCA:<span style=\"color: #000000;\">Fields</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"id_manzana\"</span> <span style=\"color: #000000;\">)</span>:<span style=\"color: #000000;\">Value</span><span style=\"color: #000000;\">)</span><br /><br /> vConsCB:=<span style=\"color: #ff0000;\">\"INSERT INTO lyma_cobro_serv (ss_regist,ss_estado,ss_tercer,ss_contra,ss_lotesp,ss_tiplot,ss_manzan,ufecha,uhoras) VALUES ('\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>vFReg<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"','A','\"</span>+alltrim<span style=\"color: #000000;\">(</span>vR_Ter<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\"',\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Con<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+;<br /> alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Lot<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Tip<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",\"</span>+alltrim<span style=\"color: #000000;\">(</span>str<span style=\"color: #000000;\">(</span>vR_Maz<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\",'\"</span>+vFec+<span style=\"color: #ff0000;\">\"','\"</span>+vTim+<span style=\"color: #ff0000;\">\"')\"</span><br /><br /> cInsertSQL += cInsertSQL + <span style=\"color: #ff0000;\">\";\"</span><br /><br /> oConsCA:<span style=\"color: #000000;\">MoveNext</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <br /> <span style=\"color: #00C800;\">ENDDO</span><br /><br /> <span style=\"color: #00C800;\">IF</span> !empty<span style=\"color: #000000;\">(</span> cInsertSQL <span style=\"color: #000000;\">)</span> .and. !oApp:<span style=\"color: #000000;\">lStop</span><br /> <br /> <span style=\"color: #00C800;\">TRY</span><br /> oCon:<span style=\"color: #000000;\">Execute</span><span style=\"color: #000000;\">(</span> cInsertSQL <span style=\"color: #000000;\">)</span><br /> CATCH oError<br /> FW_ShowAdoError<span style=\"color: #000000;\">(</span> oCon <span style=\"color: #000000;\">)</span><br /> END<br /> <br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">ENDIF</span><br /> <br /><span style=\"color: #00C800;\">return</span><span style=\"color: #000000;\">(</span><span style=\"color: #00C800;\">Nil</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">CLASS</span> TAplicacion<br /><span style=\"color: #00C800;\">DATA</span> lStop <span style=\"color: #0000ff;\">INIT</span> .f.<br /><span style=\"color: #00C800;\">ENDCLASS</span><br /><br /><br /> </div>[/code:xwwenzcv]",
"time": "03:55",
"topic": "Cancelar CICLO",
"username": "Willi Quintana"
}
] |
Cancelar CICLO
|
[
{
"date": "2015-02-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias a todos por sus respuestas....\n\nWilli voy a probar tu solucion me gusta que se pueda cancelar con el boton. La implemento y les cuento.\n\nGracias.",
"time": "13:34",
"topic": "Cancelar CICLO",
"username": "leandro"
}
] |
Cancelar CICLO
|
[
{
"date": "2021-10-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola.\n\nEn un proceso de GRABAR usando MARIADB inserto en una tabla \"a\" luuego tomo el ID de esa tabla y la grabo en una tabla \"b\", lo quie quiero hacer es que si no puedo grabar en la tabla \"b\" tambien se \"cancele\" la grabacion de la tabla \"A\".\n\ncomo lo hago?",
"time": "14:19",
"topic": "Cancelar INSERT... como lo hacen?",
"username": "goosfancito"
}
] |
Cancelar INSERT... como lo hacen?
|
[
{
"date": "2021-10-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nBusca sobre transacciones.\n\nC.",
"time": "14:23",
"topic": "Cancelar INSERT... como lo hacen?",
"username": "Carles"
}
] |
Cancelar INSERT... como lo hacen?
|
[
{
"date": "2021-10-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "gracias",
"time": "18:30",
"topic": "Cancelar INSERT... como lo hacen?",
"username": "goosfancito"
}
] |
Cancelar INSERT... como lo hacen?
|
[
{
"date": "2021-10-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "oCon:BeginTransaction()\n? INSERT,UPDATE,DELETE\n<!-- s:o --><img src=\"{SMILIES_PATH}/icon_surprised.gif\" alt=\":o\" title=\"Surprised\" /><!-- s:o -->Con:CommitTransaction()\n\nMySql Graba al disco al hacer commit \nlo anterior solo está en memoria\n\nsaludos",
"time": "21:54",
"topic": "Cancelar INSERT... como lo hacen?",
"username": "sysctrl2"
}
] |
Cancelar INSERT... como lo hacen?
|
[
{
"date": "2021-10-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"sysctrl2\":36pd86bi]oCon:BeginTransaction()\n? INSERT,UPDATE,DELETE\n<!-- s:o --><img src=\"{SMILIES_PATH}/icon_surprised.gif\" alt=\":o\" title=\"Surprised\" /><!-- s:o -->Con:CommitTransaction()\n\nMySql Graba al disco al hacer commit \nlo anterior solo está en memoria\n\nsaludos[/quote:36pd86bi]\n\ngracias",
"time": "17:24",
"topic": "Cancelar INSERT... como lo hacen?",
"username": "goosfancito"
}
] |
Cancelar INSERT... como lo hacen?
|
[
{
"date": "2010-02-16",
"forum": "FiveWin para Pocket PC",
"text": "Bom dia....\n\nDuas questões por favor...\n\n1 - Com cancelar um xalias->( OrdScope( 0, xScope ) ) ? Ja tentei \"ClearScope\",\"ClrScope\",\"DbClearScope\" e nada funciona.... Qual é o comando? e já agora onde se pode consultar a sintaxe de todos os comandos FWPPC?\n\n2 - Tenhom um Browse ( LSTBox ) com uma coluna checkon / checkOff. Quando o brwose é muito grande demora muito\ntempo a fazer oBRW:Refresh(). Existe alguma forma de fazer somente um obrw:refreshCurrent() ou algo do genero ?\n\n\nQualquer Dica fico muito grato.\n\nMuito Obrigado.",
"time": "19:51",
"topic": "Cancelar OrdScope e oBrw:Refresh una linea",
"username": "PeterBaga"
}
] |
Cancelar OrdScope e oBrw:Refresh una linea
|
[
{
"date": "2010-02-18",
"forum": "FiveWin para Pocket PC",
"text": "Pedro,\n\n1) Revisa esta conversación acerca de cómo cancelar OrdScope():\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=3&t=17192&start=0&hilit=ordscope\">viewtopic.php?f=3&t=17192&start=0&hilit=ordscope</a><!-- l -->\n\n2) Cuantas columnas tiene el browse ? Son todas visibles ? Estás usando SET FILTER TO ... ?",
"time": "10:16",
"topic": "Cancelar OrdScope e oBrw:Refresh una linea",
"username": "Antonio Linares"
}
] |
Cancelar OrdScope e oBrw:Refresh una linea
|
[
{
"date": "2010-02-18",
"forum": "FiveWin para Pocket PC",
"text": "Antonio. Bom dia....\n\nO assunto do item n1. esta OK, nao me tinha ocorrido ordscope(0,nil), ordscope(1,nil). Obrigado,\n\nO assunto do item n.2 aqui esta o meu codigo.\n\nO que eu pretendia é refrescar unicamente a linha que foi alterada.\nSe for possivel é claro...\n\n[code=fw:12yutzku]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">Function</span> Historico<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">local</span> oDlgHis, oBrwHis, oBtn1, hBmpOn := LoadBitmap<span style=\"color: #000000;\">(</span> GetResources<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\"CheckOn\"</span> <span style=\"color: #000000;\">)</span>,;<br /> hBmpOFF := LoadBitmap<span style=\"color: #000000;\">(</span> GetResources<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">\"CheckOFF\"</span> <span style=\"color: #000000;\">)</span><br /><br />HISMES-><span style=\"color: #000000;\">(</span> OrdSetFocus<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"HICLI\"</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span><br />HISMES-><span style=\"color: #000000;\">(</span> ordScope<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span>, CLIMES->NUMERO <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br />HISMES-><span style=\"color: #000000;\">(</span> ordScope<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span>, CLIMES->NUMERO <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br />HISMES-><span style=\"color: #000000;\">(</span> DbGoTop<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgHis <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Historico\"</span>+<span style=\"color: #ff0000;\">\"-\"</span>+Alltrim<span style=\"color: #000000;\">(</span>CLIMES->NOME<span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">240</span>,<span style=\"color: #000000;\">270</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">FONT</span> oFont <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">'Arial'</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">-10</span><br /><br />@ <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #0000ff;\">LISTBOX</span> oBrwHis ;<br /> FIELDS <span style=\"color: #00C800;\">IF</span><span style=\"color: #000000;\">(</span> HISMES->SEL, hBmpOn, hBmpOFF <span style=\"color: #000000;\">)</span>,;<br /> HISMES->DATA, HISMES->DESCRITIVO, Transform<span style=\"color: #000000;\">(</span>HISMES->QUANTIDADE,<span style=\"color: #ff0000;\">\"99 999.99\"</span><span style=\"color: #000000;\">)</span>,;<br /> Transform<span style=\"color: #000000;\">(</span>HISMES->PVENDA,<span style=\"color: #ff0000;\">\"999 999.999\"</span><span style=\"color: #000000;\">)</span>, Transform<span style=\"color: #000000;\">(</span>HISMES->DESCONTO1,<span style=\"color: #ff0000;\">\"999.99\"</span><span style=\"color: #000000;\">)</span>,;<br /> Alltrim<span style=\"color: #000000;\">(</span>HISMES->NOMEDOC<span style=\"color: #000000;\">)</span>, Transform<span style=\"color: #000000;\">(</span>HISMES->DOCUMENTO,<span style=\"color: #ff0000;\">\"9999999999\"</span><span style=\"color: #000000;\">)</span> ;<br /> COLSIZES <span style=\"color: #000000;\">15</span>,<span style=\"color: #000000;\">55</span>,<span style=\"color: #000000;\">120</span>,<span style=\"color: #000000;\">45</span>,<span style=\"color: #000000;\">50</span>,<span style=\"color: #000000;\">45</span>,<span style=\"color: #000000;\">70</span>,<span style=\"color: #000000;\">50</span> ;<br /> HEADERS <span style=\"color: #ff0000;\">\"X\"</span>,<span style=\"color: #ff0000;\">\"Data\"</span>, <span style=\"color: #ff0000;\">\"Artigo\"</span>,<span style=\"color: #ff0000;\">\"Qtd\"</span>,<span style=\"color: #ff0000;\">\"Preço\"</span>,<span style=\"color: #ff0000;\">\"Desc.\"</span>,<span style=\"color: #ff0000;\">\"Doc.\"</span>,<span style=\"color: #ff0000;\">\"Nr.\"</span> ;<br /> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">120</span>, <span style=\"color: #000000;\">114</span> ;<br /> <span style=\"color: #0000ff;\">FONT</span> oFont ;<br /> <span style=\"color: #0000ff;\">OF</span> oDlgHis ;<br /> <span style=\"color: #0000ff;\">ALIAS</span> <span style=\"color: #ff0000;\">'HISMES'</span><br /><br />oBrwHis:<span style=\"color: #000000;\">bLDblClick</span> = <span style=\"color: #000000;\">{</span> || HISMES->SEL := !HISMES->SEL, oBrwHIS:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #B900B9;\">// aqui seria necessario refresh so a linha alterada</span><br />oBrwHis:<span style=\"color: #000000;\">bLogicLen</span> = <span style=\"color: #000000;\">{</span> || HISMES-><span style=\"color: #000000;\">(</span> OrdKeyCount<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><br />@ <span style=\"color: #000000;\">125</span>,<span style=\"color: #000000;\">00</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn2 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"Retroceder\"</span> <span style=\"color: #0000ff;\">SIZE</span> <span style=\"color: #000000;\">60</span>, <span style=\"color: #000000;\">12</span> <span style=\"color: #0000ff;\">action</span> <span style=\"color: #000000;\">{</span> oDlgHis:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <span style=\"color: #0000ff;\">OF</span> oDlgHis<br /><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlgHis <span style=\"color: #0000ff;\">CENTERED</span><br /><br />HISMES-><span style=\"color: #000000;\">(</span> ordScope<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">0</span>, <span style=\"color: #00C800;\">Nil</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br />HISMES-><span style=\"color: #000000;\">(</span> ordScope<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span>, <span style=\"color: #00C800;\">Nil</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">Nil</span><br /><br /> </div>[/code:12yutzku]",
"time": "12:07",
"topic": "Cancelar OrdScope e oBrw:Refresh una linea",
"username": "PeterBaga"
}
] |
Cancelar OrdScope e oBrw:Refresh una linea
|
[
{
"date": "2010-02-20",
"forum": "FiveWin para Pocket PC",
"text": "Pedro,\n\nEstás probando la aplicación en el emulador ó en el pocket pc real ?\n\nSi la pruebas en el pocket pc real no pongas las DBFs y los índices en una tarjeta de memoria. Copia la aplicación y las bases de datos e índices a una carpeta dentro del pocket pc. Las tarjetas de memoria son mucho más lentas que la propia memoria del pocket pc.",
"time": "11:38",
"topic": "Cancelar OrdScope e oBrw:Refresh una linea",
"username": "Antonio Linares"
}
] |
Cancelar OrdScope e oBrw:Refresh una linea
|
[
{
"date": "2010-02-20",
"forum": "FiveWin para Pocket PC",
"text": "Ok. Antonio\n\nObrigado pelo feed Back.\n\nPor agora esta tudo bem.",
"time": "18:47",
"topic": "Cancelar OrdScope e oBrw:Refresh una linea",
"username": "PeterBaga"
}
] |
Cancelar OrdScope e oBrw:Refresh una linea
|
[
{
"date": "2013-10-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos y buen inicio de Semana:\n\nTengo un módulo de actualizaciones via FTP, puedo revisar los archivos actualizados, bajarlos y remplazar los archivos antíguos, pero quise implementar un boton para detener la descarga de archivos y cancelar el proceso antes de que 1 o todos los archivos se descarguen, si los archivos se descargan completamente se deshabilita el boton para evitar el proceso.\n\n[img:36yah45b]http://img404.imageshack.us/img404/4527/ylr6.jpg[/img:36yah45b]\n\nTrabajo con la Clase [b:36yah45b]ServicesFTP[/b:36yah45b] de Jose Javier LLoris Roig, la cual hereda los methods de la Clase TFTP de Habour.\n\nMi idea es mediante una variable lógica si es .T. la descarga continua, si pulso el boton Cancelar la Variable torna a .F. y se cierra el Dialogo.\n\n[code=fw:36yah45b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">REDEFINE</span> BUTTONBMP oBtn <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">500</span> <span style=\"color: #0000ff;\">OF</span> oDlg TEXTRIGHT BITMAP <span style=\"color: #ff0000;\">\"CANCELAR\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #000000;\">(</span>lDown:= .F., lFinDlg:= .T., oDlg:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span></div>[/code:36yah45b]\n\nY para mostrar el vance de la desgarga:\n\n[code=fw:36yah45b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">oFtp:<span style=\"color: #000000;\">oFtp</span>:<span style=\"color: #000000;\">exGauge</span> := <span style=\"color: #000000;\">(</span> @FtpProgress<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /> oFtp:<span style=\"color: #000000;\">oFtp</span>:<span style=\"color: #000000;\">DownLoadFile</span><span style=\"color: #000000;\">(</span> cDestino + <span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\\"</span> + cFile, cFile )</span></div>[/code:36yah45b]\n\nLa Función que muestra el progreso de la descarga de los archivos y en la cual interrumpo el procesoa con la variable:\n\n[code=fw:36yah45b]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//-----------------------------------------------------------------------------------------------------------------//</span><br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> FtpProgress<span style=\"color: #000000;\">(</span>nSent, nTotal<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> cProgress := INT<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">100</span>*nSent/nTotal <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> nPos:= <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #00C800;\">IF</span> lDown == .T.<br /> oProg:<span style=\"color: #000000;\">SETPOS</span><span style=\"color: #000000;\">(</span>cProgress<span style=\"color: #000000;\">)</span><br /> oProg:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> oSayP:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Descargando \"</span>+cFile+<span style=\"color: #ff0000;\">\" --> \"</span>+STR<span style=\"color: #000000;\">(</span>nSent<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\" Progreso: \"</span>+ALLTRIM<span style=\"color: #000000;\">(</span>STR<span style=\"color: #000000;\">(</span>cProgress<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> +<span style=\"color: #ff0000;\">\" % \"</span><span style=\"color: #000000;\">)</span><br /> oSayP:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> cProgress == <span style=\"color: #000000;\">1</span><br /> nPos:= nPos + <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> oBrw:<span style=\"color: #000000;\">SETPOS</span><span style=\"color: #000000;\">(</span>nPos<span style=\"color: #000000;\">)</span><br /> oBrw:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> SysRefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />ELSEIF lDown == .F.<br /> oFTP:<span style=\"color: #000000;\">CLOSE</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//-----Aki el fallo</span><br /> DeleteObject<span style=\"color: #000000;\">(</span> oFTP <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">Nil</span></div>[/code:36yah45b]\n\n\nSl cancelar el proceso el Dialogo de Cierra y muestra este error:\n\n[quote:36yah45b]Time from start: 0 hours 0 mins 12 secs \n Error occurred at: 21-10-2013, 10:54:23\n Error description: Error BASE/3012 Error de argumento: HB_INETERRORCODE\n Args:\n [ 1] = U \n\nStack Calls\n===========\n Called from: => HB_INETERRORCODE( 0 )\n Called from: hbtip\\client.prg => TIPCLIENTFTP:INETERRORCODE( 0 )\n Called from: hbtip\\client.prg => TIPCLIENTFTP:READTOFILE( 0 )\n Called from: hbtip\\ftpcli.prg => TIPCLIENTFTP:DOWNLOADFILE( 0 )\n Called from: Update.prg => DOWNFILS( 271 )[/quote:36yah45b]\n\n\nComo puedo parar la conexión al FTP sin que provoque error, ya que despupés del error el archivo continua descargandose de forma escondida... Talvéz la solución sea sencilla pero no doy como..\n\nOjala puedan darme una ayudadita.. Gracias..",
"time": "17:02",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Up +1 <!-- s:twisted: --><img src=\"{SMILIES_PATH}/icon_twisted.gif\" alt=\":twisted:\" title=\"Twisted Evil\" /><!-- s:twisted: --> <!-- s:twisted: --><img src=\"{SMILIES_PATH}/icon_twisted.gif\" alt=\":twisted:\" title=\"Twisted Evil\" /><!-- s:twisted: -->",
"time": "06:12",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Víctor, \n\nAunque no tengo mucha idea de lo que puede estar pasando... como veo que insistes con el mensaje he pensado echar una mano: He intentado buscar, segun las llamadas del error, el client.prg y no lo he encontrado ni en xHarbour ni en Harbour 3.2. \nDeduzco que debes tener un Harbour antiguo. ¿ Has pensado coger los fuentes actuales de Harbour y utilizar esa parte de las contribs ?\nTampoco he identificado las llamadas con lo que tu dices \"aki\". Debe ser que tu te refieres a que es esa accion la que genera los problemas.\n\nDe todas formas te digo: el comando ftp.exe tiene la opcion de 'disconnect'... no se si habra que desconectar la conexion antes de cerrar(la). Es probable que el Close() prematuro le pueda sentar mal a la clase.\nEn todo caso, yo miraria los fuentes de la clase para saber que argumento es el que es erroneo para seguirle la pista. Si hubiera tenido los fuentes de la clase yo mismo lo hubiera hecho.\n\n\nSaludos",
"time": "12:44",
"topic": "Cancelar Transferencia FTP",
"username": "hmpaquito"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias por responder:\n\nUso Harbour 3.0, he revisado los fuentes de las libs y no hay la opcion de desconectar, no obstante la de conectar, subir y bajar si estan presentes, mi idea es de primero detener la descarga del archivo en curso, para que sea permitible la desconección del FTP, y despues cerrarlo con oFTP:CLOSE(), pero reitero que la opcion de la función desconectar no existe en harbour.\n\nHe detectado que si cierro la conexión a internet o si se llega a cortar si se detiene la transferencia y borra el archivo descargado, pero muestra un mensaje que que el sitio ftp retorna el mensaje de desconección, pero no se me hace correcto que por aqui este el tiro.. Lo correcto es que el comando desconectar.. Sigo investigando..\n\nSaludos..",
"time": "14:57",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Por lo pronto ya pude hacer que a media transferencia pueda cancelar la descarga del archivo en curso, pero no de forma \"nativa\" si no haciendo trampa, entendí que el Objeto oFTP se queda colgado y busca al manejador de errores HB_INETERRORCODE(), para que no se quede buscando al manejador y de error tuve que desviar el tipo de objeto de la clase \"ServicesFTP\" a otra Clase y después finalizarlo para que no continue la descarga quedando de ésta manera:\n\n\n[code=fw:t7bkl88c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #B900B9;\">//-----------------------------------------------------------------------------------------------------------------//</span><br /><span style=\"color: #00C800;\">STATIC</span> <span style=\"color: #00C800;\">FUNCTION</span> FtpProgress<span style=\"color: #000000;\">(</span>nSent, nTotal<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> cProgress := INT<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">100</span>*nSent/nTotal <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">LOCAL</span> nPos:= <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #00C800;\">IF</span> lDown == .T.<br /> oProg:<span style=\"color: #000000;\">SETPOS</span><span style=\"color: #000000;\">(</span>cProgress<span style=\"color: #000000;\">)</span><br /> oProg:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> oSayP:<span style=\"color: #000000;\">SetText</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Descargando \"</span>+cFile+<span style=\"color: #ff0000;\">\" --> \"</span>+STR<span style=\"color: #000000;\">(</span>nSent,.T.<span style=\"color: #000000;\">)</span>+<span style=\"color: #ff0000;\">\" Progreso: \"</span>+ALLTRIM<span style=\"color: #000000;\">(</span>STR<span style=\"color: #000000;\">(</span>cProgress<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> +<span style=\"color: #ff0000;\">\" % \"</span><span style=\"color: #000000;\">)</span><br /> oSayP:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> cProgress == <span style=\"color: #000000;\">1</span><br /> nPos:= nPos + <span style=\"color: #000000;\">1</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /> oBrw:<span style=\"color: #000000;\">SETPOS</span><span style=\"color: #000000;\">(</span>nPos<span style=\"color: #000000;\">)</span><br /> oBrw:<span style=\"color: #0000ff;\">Refresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <br /> SysRefresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />ELSEIF lDown == .F.<br /> HB_InetCleanup<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oFtp:= TTimer<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span>, <span style=\"color: #000000;\">{</span> || <span style=\"color: #00C800;\">Nil</span> <span style=\"color: #000000;\">}</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">//--Cambiando de \"ServicesFTP\" a \"TTimer\"</span><br /> oFTP:<span style=\"color: #000000;\">END</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> DeleteObject<span style=\"color: #000000;\">(</span> oFTP <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">Nil</span><br /> </div>[/code:t7bkl88c]\n\n\nListo: la solución es casi perfecta, no da errores, cierra el dialogo de actualización, no modifica ni borra los archivos a actualizar, peroooo... el archivo \"ftp-1.log\" se queda cargado en memoria y no lo puedo eliminar ni con el comando FERASE(), este archivo lo genera al conectarse al FTP.\n\nConsidero que éste archivo no debiera ser creado, representa un peligro: pues en él esta contenida toda la información de conexión al FTP, nomnbre de usuario, pasword. [b:t7bkl88c]Habrá forma de evitar que este archivo \"ftp-X.log\" sea creado..? [/b:t7bkl88c] <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: --> <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: --> <!-- s:roll: --><img src=\"{SMILIES_PATH}/icon_rolleyes.gif\" alt=\":roll:\" title=\"Rolling Eyes\" /><!-- s:roll: --> \n\nSaludos.. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->",
"time": "05:25",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Víctor,\n\nMuy, muy bueno... el cambio de tipo de objeto... Genial, SI NO se producen fugas de memoria al no cerrar el oftp de forma \"ortodoxa\".\nBuena también la info del log que no quiere borrarse. ¿ Has probado con el Unlocker, a ver si lo puedes borrar ? Yo, por de pronto, intentaria, a ese archivo cambiarle el nombre y crearlo en temp o algo asi para que no estuviera demasiado \"ubicado\".\n\nEn todo caso, y como te comente, yo hubiera probado primero las rutinas ftp de fwh y/o las rutinas ftp de harbour 3.2. Pero como dicen los informaticos, si funciona ¡ no lo toques ! <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nSaludos",
"time": "08:35",
"topic": "Cancelar Transferencia FTP",
"username": "hmpaquito"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Victor,\n\nEn c:\\harbour\\contrib\\hbtip\\ftpcli.prg tienes un ejemplo de cliente FTP en donde hay llamadas al método . No se si este es el código que usas ó parecido. Si publicas un ejemplo completo aqui, lo probaremos y a ver si podemos solucionarlo:\n\n[url:yxlmb6jz]https://github.com/harbour/core/blob/master/contrib/hbtip/ftpcli.prg[/url:yxlmb6jz]\n\nEn ese código hay llamadas a un método inetErrorCode(), que por el nombre pareciese que esta basado en HB_INETERRORCODE(). De ahi el sugerirte este fichero por si contiene información valiosa para tu código basado en esas funciones.",
"time": "08:39",
"topic": "Cancelar Transferencia FTP",
"username": "Antonio Linares"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buen dia Maestro Antonio:\n\n[b:2u60io5m]Solo queda pendiente evitar que se genere el archivo \"ftp-1.log\" que se crea al conectar al sitio FTP[/b:2u60io5m], es molesto y peligroso que este archivo se genere, ya que contiene toda la información para conectarse a los sitios FTP, esta información no deberia darse a los usuarios finales, de hecho ya estaba comentado en el foro pero no se le dio seguimiento y solución.\n\n[url:2u60io5m]http://forums.fivetechsupport.com/viewtopic.php?p=113198#p113198[/url:2u60io5m]\n\nSi es inavitable que ese archivo sea creado para el uso interno de Harbour para conectarse al FTP, seria bueno que se le cambiara de extención para que no pueda ser abierto tan facil y/o mejor aún cambiar el lugar donde se crea, ya sea en la carpeta temporal de Windows.\n\nEl link de los fuentes de Harbour ya los habia revisado, de ahi obtuve la raíz del fallo anterior, revise si de ahi proviene la creación del archivo \"ftp-1.log\" pero no lo encontre, talvez este en los demás fuentes pero no me dio tiempo de revisarlo.\n\nLo de detener la transferencia del archivo no me da problemas, funciona como lo explique anteriormente...\n\nOjala se puediera solucionar este pequeño bug.. Saludos.. <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: --> <!-- s:lol: --><img src=\"{SMILIES_PATH}/icon_lol.gif\" alt=\":lol:\" title=\"Laughing\" /><!-- s:lol: -->",
"time": "16:10",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Victor,\n\nComprueba si en tu código se usa esto:\n\nMETHOD New( oUrl, xTrace, oCredentials ) CLASS TIPClient\n\nTIPClient():New( ... )\n\nsi especificas el segundo parámetro como .F. no se debería generar ningun fichero .log",
"time": "17:48",
"topic": "Cancelar Transferencia FTP",
"username": "Antonio Linares"
}
] |
Cancelar Transferencia FTP
|
[
{
"date": "2013-10-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[b:1vve9ppg]¡¡¡ PERFECTO MAESTRO: !!![/b:1vve9ppg]\n\nAhora si, funciona como lo tenia pensado.. \nNo pues con razón, en los parametros de la clase esta determinado xomo XTrace, yo estube buscando algo que tuviera que ver con \".log\" pero no di mas que con StartCleanLogFile()\n\nGracias... <!-- s:mrgreen: --><img src=\"{SMILIES_PATH}/icon_mrgreen.gif\" alt=\":mrgreen:\" title=\"Mr. Green\" /><!-- s:mrgreen: --> <!-- s:mrgreen: --><img src=\"{SMILIES_PATH}/icon_mrgreen.gif\" alt=\":mrgreen:\" title=\"Mr. Green\" /><!-- s:mrgreen: --> <!-- s:mrgreen: --><img src=\"{SMILIES_PATH}/icon_mrgreen.gif\" alt=\":mrgreen:\" title=\"Mr. Green\" /><!-- s:mrgreen: -->",
"time": "01:53",
"topic": "Cancelar Transferencia FTP",
"username": "cuatecatl82"
}
] |
Cancelar Transferencia FTP
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.