messages
listlengths 1
1
| topic
stringlengths 2
60
|
---|---|
[
{
"date": "2009-08-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos...\nConsulta....\n¿Como haria para leer un bd en access y luego pasarla a mysql,,,, no tengo experiencia en ADO,,, trabajo com eagle y con tmysql,, alguna sugerencia????\nSalu2",
"time": "01:07",
"topic": "Access a MySQL",
"username": "Willi Quintana"
}
] |
Access a MySQL
|
[
{
"date": "2009-08-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Willi:\n\nPongámonos en contacto !.\n\nSaludos",
"time": "03:34",
"topic": "Access a MySQL",
"username": "Armando"
}
] |
Access a MySQL
|
[
{
"date": "2012-05-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Here is a webcast on mobile access with ADS 11 web platform. \n\n<!-- m --><a class=\"postlink\" href=\"http://response.sybase.com/forms/WW12Q2ADSWBCSTMobileAccess?elq=8ef015988ca84e348d82f5ecc496d491\">http://response.sybase.com/forms/WW12Q2 ... ecc496d491</a><!-- m -->\n\nOr visit <!-- m --><a class=\"postlink\" href=\"http://devzone.advantagedatabase.com\">http://devzone.advantagedatabase.com</a><!-- m --> to learn more and register for the free webcast. The more we learn these new technology the better for the rest of us.\n\nThis is not a development language. You still need to write your mobile apps using whatever development tool the device is compatible with. I think the webcast only shows how to access Advantage Web Platform using oData which is compatible with all mobile development systems.\n\nReinaldo.",
"time": "19:31",
"topic": "Access dbfs from mobile devices",
"username": "reinaldocrespo"
}
] |
Access dbfs from mobile devices
|
[
{
"date": "2014-09-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nI googled for this and found that it seems as 2GB is the size limit for Access databases.\n\nI appreciate your comments, thanks",
"time": "15:05",
"topic": "Access tables and databases size limitation",
"username": "Antonio Linares"
}
] |
Access tables and databases size limitation
|
[
{
"date": "2014-09-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio\n\nYES, 2gb seems to be the maximum size. The largest ( single ) .Mdb I have in production is well under 100mg. I will say that one irritating feature of Ms Access is that you must Compact and Repair occasionally because when you delete a record the size of the database does not get smaller and to permanently expunge deleted records, you must run the Compact and Repair utility <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->\n\nWith that said, you can use multiple Access databases and have multiple connections to link databases, so theoretically size is not an issue.\n\nI do like Ms Access for projects that have 10-50 concurrent users ( for small business ), but for Enterprise applications, I prefer Ms Sql Server or the free version of Sql Express that has a 10gb limitation 'per database' and of course you can have multiple databases per instance.\n\nHere is my Compact and Repair utility for Ms Access that can be incorporated into any FiveWin ADO Application. If I am not mistaken, Enrico helped me with some of this code.\n\nRick Lipkin\n\n[code=fw:1rqo64s1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">//-- RepairUm.prg</span><br /><br /><span style=\"color: #00D7D7;\">#INCLUDE</span> <span style=\"color: #ff0000;\">\"FIVEWIN.CH\"</span><br /><br /><span style=\"color: #B900B9;\">//----------------------</span><br />Func _RepairUm<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> SAYING,oBtn1,oBtn2<br /><span style=\"color: #00C800;\">Local</span> oSay1,oSay2,oFontB,cLine,oLine<br /><span style=\"color: #00C800;\">Local</span> lOk,cDefa,cSay1,cSay2,oRs,cSql,oErr<br /><span style=\"color: #00C800;\">Local</span> oBmp<br /><br /><span style=\"color: #00C800;\">If</span> xDatabase = <span style=\"color: #ff0000;\">\"A\"</span><br /><span style=\"color: #00C800;\">Else</span><br /> Saying := <span style=\"color: #ff0000;\">\"Compacting and Repair only Applies to Ms Access\"</span><br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> Saying <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.f.<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Endif</span><br /><br />oFontB := TFont<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Ms Sans Serif\"</span>,,<span style=\"color: #000000;\">-6</span>,.F.,.T. ,,,,.F. <span style=\"color: #000000;\">)</span><br />cDefa := set<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">7</span><span style=\"color: #000000;\">)</span><br /><br />xConnect:<span style=\"color: #000000;\">CLose</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// close global connection</span><br />StandardGrad<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">If</span> File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb\"</span> <span style=\"color: #000000;\">)</span><br /> Ferase<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb\"</span> <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Endif</span><br /><br />cSay1 := <span style=\"color: #ff0000;\">\" \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />cSay1 += <span style=\"color: #ff0000;\">\"Compact and Repair Database attemts to remove \"</span><br />cSay1 += <span style=\"color: #ff0000;\">\"Deleted records and shrink the size of the database. \"</span><br /><br />cSay2 := <span style=\"color: #ff0000;\">\" \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />cSay2 += <span style=\"color: #ff0000;\">\"This routine will need EXCLUSIVE rights to run and \"</span><br />cSay2 += <span style=\"color: #ff0000;\">\"No One Else can be logged in at the same time.\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> BITMAP oBmp <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"SETUP\"</span><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"REPAIRUM\"</span> ;<br /> <span style=\"color: #0000ff;\">TITLE</span> <span style=\"color: #ff0000;\">\"Compact and Repair Utility\"</span> ;<br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> oSay1 <span style=\"color: #0000ff;\">var</span> cSay1 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">115</span> <span style=\"color: #0000ff;\">of</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span><br /> oSay1:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFontB <span style=\"color: #000000;\">)</span><br /> oSay1:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> nRgb<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">7</span>,<span style=\"color: #000000;\">224</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// blue</span><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> oSay2 <span style=\"color: #0000ff;\">var</span> cSay2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">113</span> <span style=\"color: #0000ff;\">of</span> oDlg <span style=\"color: #0000ff;\">UPDATE</span><br /> oSay2:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFontB <span style=\"color: #000000;\">)</span><br /> oSay2:<span style=\"color: #000000;\">SetColor</span><span style=\"color: #000000;\">(</span> nRgb<span style=\"color: #000000;\">(</span>CLR_HRED<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// red</span><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> oLINE <span style=\"color: #0000ff;\">var</span> cLINE MEMO <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">129</span> <span style=\"color: #0000ff;\">of</span> oDLG <span style=\"color: #0000ff;\">UPDATE</span><br /> oLine:<span style=\"color: #000000;\">SetFont</span><span style=\"color: #000000;\">(</span> oFontB <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn1 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">111</span> <span style=\"color: #0000ff;\">of</span> oDlg ;<br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"OK\"</span>, <span style=\"color: #ff0000;\">\"DOK\"</span>, <span style=\"color: #ff0000;\">\"DOK\"</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\" &Run \"</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 := _doit<span style=\"color: #000000;\">(</span>@cLine,oLine,oDlg,oBtn1,oBtn2<span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn2 <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">112</span> <span style=\"color: #0000ff;\">of</span> oDlg ;<br /> <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">\"CANCEL\"</span>, <span style=\"color: #ff0000;\">\"DCANCEL\"</span>, <span style=\"color: #ff0000;\">\"DCANCEL\"</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 := .t., oDlg:<span style=\"color: #000000;\">ENd</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span><br /><br /><br /> <span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg ;<br /> <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">PAINT</span> <span style=\"color: #000000;\">(</span>PalBmpDraw<span style=\"color: #000000;\">(</span> hDC, <span style=\"color: #000000;\">0</span>, <span style=\"color: #000000;\">0</span>, oBmp:<span style=\"color: #000000;\">hBitmap</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> ;<br /> <span style=\"color: #0000ff;\">VALID</span> <span style=\"color: #000000;\">(</span>!GETKEYSTATE<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">27</span> <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// do not allow esc key here</span><br /><br /><br /><span style=\"color: #0000ff;\">RELEASE</span> <span style=\"color: #0000ff;\">FONT</span> oFontB<br />LightGreyGrad<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br />SysReFresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">// re-establish global connection</span><br /><span style=\"color: #00C800;\">TRY</span><br /> xConnect:<span style=\"color: #000000;\">Open</span><span style=\"color: #000000;\">(</span> xString <span style=\"color: #000000;\">)</span><br />CATCH oErr<br /> Saying := <span style=\"color: #ff0000;\">\"Could not open a Global Connection to Database \"</span>+xSource<br /> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span> Saying <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span>.F.<span style=\"color: #000000;\">)</span><br />END <span style=\"color: #00C800;\">TRY</span><br /><br />oBmp:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">RETURN</span><span style=\"color: #000000;\">(</span> lOk <span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------</span><br /><span style=\"color: #00C800;\">Static</span> FUNC _Doit<span style=\"color: #000000;\">(</span>cLine,oLine,oDlg,oBtn1,oBtn2<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Local</span> Saying,cCn1,cCn2,cDefa,yConnect,ySource<br /><span style=\"color: #00C800;\">Local</span> oJro<br /><br />SysReFresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br />cDefa := set<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">7</span><span style=\"color: #000000;\">)</span><br /><br />oBtn1:<span style=\"color: #000000;\">Hide</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />oBtn2:<span style=\"color: #000000;\">Hide</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br />cLine := <span style=\"color: #ff0000;\">\"Checking for Exclusive Use to Database\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />cLine += xSource<br />oLine:<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 />SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span><br /><br />Ferase<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Ldb\"</span> <span style=\"color: #000000;\">)</span><br />SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">If</span> File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Ldb\"</span> <span style=\"color: #000000;\">)</span><br /> cLine := <span style=\"color: #ff0000;\">\"Checking for Exclusive Use to Database \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += xSource+<span style=\"color: #ff0000;\">\" Failed...\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += <span style=\"color: #ff0000;\">\"This Process may Re-Start\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">5</span><span style=\"color: #000000;\">)</span><br /><br /> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.f.<span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Endif</span><br /><br /><br />ySOURCE := cDEFA+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.mdb\"</span><br /><br />cLine := <span style=\"color: #ff0000;\">\"Atempting to create JRO.JetEngine\"</span><br />oLine:<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 />SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Try</span><br /> oJro := CREATEOBJECT<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"JRO.JetEngine\"</span> <span style=\"color: #000000;\">)</span><br />Catch<br /> cLine := <span style=\"color: #ff0000;\">\"Atempting to create JRO.JetEngine Failed\"</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span>.<span style=\"color: #000000;\">5</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Error in Creating JRO.JetEngine\"</span> <span style=\"color: #000000;\">)</span><br /> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span><br />End <span style=\"color: #00C800;\">Try</span><br /><br />cLine := <span style=\"color: #ff0000;\">\"Compacting Database to \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />cLine += ySource+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />oLine:<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 />SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br />cCn1 := <span style=\"color: #ff0000;\">\"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\"</span><br />cCn1 += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.mdb;\"</span><br />cCn1 += <span style=\"color: #ff0000;\">\"Jet OLEDB:Database Password=\"</span>+xPassword<br />cCn2 := <span style=\"color: #ff0000;\">\"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\"</span><br />cCn2 += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.mdb;\"</span><br />cCn2 += <span style=\"color: #ff0000;\">\"Jet OLEDB:Database Password=\"</span>+xPassword<br /><br /><span style=\"color: #00C800;\">Try</span><br /> oJro:<span style=\"color: #000000;\">CompactDatabase</span><span style=\"color: #000000;\">(</span>cCn1,cCn2 <span style=\"color: #000000;\">)</span><br />Catch<br /> cLine := <span style=\"color: #ff0000;\">\"Compacting Database to \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += ySource+<span style=\"color: #ff0000;\">\" Failed .. \"</span><br /> cLine += <span style=\"color: #ff0000;\">\"This Process may Re-Start\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.f.<span style=\"color: #000000;\">)</span><br />End <span style=\"color: #00C800;\">Try</span><br /><br />cLine := <span style=\"color: #ff0000;\">\"Compacting Database to \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />cLine += ySource+<span style=\"color: #ff0000;\">\" Successful\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br />oLine:<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 />SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">If</span> File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.mdb\"</span> <span style=\"color: #000000;\">)</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Deleating Old Database backup file \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> Ferase<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span> <span style=\"color: #000000;\">)</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Copying \"</span>+cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb to \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> Copy File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span> <span style=\"color: #000000;\">)</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Checking for new backup File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">If</span> file<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db\"</span> <span style=\"color: #000000;\">)</span><br /> cLine := <span style=\"color: #ff0000;\">\"Checking for new backup File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db .. Success\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">Else</span><br /> cLine := <span style=\"color: #ff0000;\">\"Checking for new backup File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing._db .. Failed\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.f.<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Endif</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Deleting Old Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> Ferase<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.mdb\"</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">If</span> File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.mdb\"</span> <span style=\"color: #000000;\">)</span><br /> cLine := <span style=\"color: #ff0000;\">\"Deleting Old Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb ... Failed\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /> oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.f.<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Else</span><br /> cLine := <span style=\"color: #ff0000;\">\"Deleting Old Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb ... Success\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Endif</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Renaming New Repaired Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb to\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /><br /> Rename <span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb\"</span> <span style=\"color: #000000;\">)</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb\"</span> <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">If</span> File<span style=\"color: #000000;\">(</span> cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb\"</span> <span style=\"color: #000000;\">)</span><br /> cLine := <span style=\"color: #ff0000;\">\"Renaming New Repaired Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb to\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb ... Success\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<span style=\"color: #0000ff;\">ReFresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">)</span><br /> SysReFresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Else</span><br /> cLine := <span style=\"color: #ff0000;\">\"Renaming New Repaired Database File\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb to\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illing.Mdb ... Failed\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += <span style=\"color: #ff0000;\">\"Please contact your Administrator\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<span style=\"color: #0000ff;\">ReFresh</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> SysReFresh<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">Endif</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Completed Repair and Compacted Database Routine\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += <span style=\"color: #ff0000;\">\"Success !!! \"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">5</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Else</span><br /><br /> cLine := <span style=\"color: #ff0000;\">\"Sorry .. for some Strange reason the Repaired Database\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += cDefa+<span style=\"color: #ff0000;\">\"<span style=\"color: #000000;\">\\B</span>illingNew.Mdb\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> cLine += <span style=\"color: #ff0000;\">\"Could not be Retrieved .. Failure\"</span>+chr<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /> oLine:<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 /> SysWait<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Endif</span><br /><br />oDlg:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">Return</span><span style=\"color: #000000;\">(</span>.t.<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">// end RepairUm.prg</span><br /> </div>[/code:1rqo64s1]\nRepairUm.Rc\n[code=fw:1rqo64s1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />REPAIRUM <span style=\"color: #0000ff;\">DIALOG</span> <span style=\"color: #000000;\">28</span>, <span style=\"color: #000000;\">52</span>, <span style=\"color: #000000;\">199</span>, <span style=\"color: #000000;\">256</span><br /><span style=\"color: #0000ff;\">STYLE</span> DS_MODALFRAME | WS_POPUP | WS_CAPTION<br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">8</span>, <span style=\"color: #ff0000;\">\"Microsoft Sans Serif\"</span><br /><span style=\"color: #000000;\">{</span><br /> CONTROL <span style=\"color: #ff0000;\">\"&Ok\"</span>, <span style=\"color: #000000;\">111</span>, <span style=\"color: #ff0000;\">\"TBtnBmp\"</span>, <span style=\"color: #000000;\">32</span> | WS_CHILD | WS_VISIBLE | WS_TABSTOP, <span style=\"color: #000000;\">103</span>, <span style=\"color: #000000;\">214</span>, <span style=\"color: #000000;\">41</span>, <span style=\"color: #000000;\">25</span><br /> CONTROL <span style=\"color: #ff0000;\">\"&Cancel\"</span>, <span style=\"color: #000000;\">112</span>, <span style=\"color: #ff0000;\">\"TBtnBmp\"</span>, <span style=\"color: #000000;\">32</span> | WS_CHILD | WS_VISIBLE | WS_TABSTOP, <span style=\"color: #000000;\">150</span>, <span style=\"color: #000000;\">214</span>, <span style=\"color: #000000;\">41</span>, <span style=\"color: #000000;\">25</span><br /> CONTROL <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">115</span>, <span style=\"color: #ff0000;\">\"STATIC\"</span>, SS_CENTER | SS_NOPREFIX | WS_GROUP, <span style=\"color: #000000;\">8</span>, <span style=\"color: #000000;\">31</span>, <span style=\"color: #000000;\">184</span>, <span style=\"color: #000000;\">51</span><br /> LTEXT <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">129</span>, <span style=\"color: #000000;\">8</span>, <span style=\"color: #000000;\">141</span>, <span style=\"color: #000000;\">184</span>, <span style=\"color: #000000;\">64</span>, SS_NOPREFIX | WS_GROUP<br /> CONTROL <span style=\"color: #ff0000;\">\"\"</span>, <span style=\"color: #000000;\">113</span>, <span style=\"color: #ff0000;\">\"STATIC\"</span>, SS_CENTER | SS_NOPREFIX | WS_GROUP, <span style=\"color: #000000;\">8</span>, <span style=\"color: #000000;\">82</span>, <span style=\"color: #000000;\">184</span>, <span style=\"color: #000000;\">51</span><br /><span style=\"color: #000000;\">}</span><br /> </div>[/code:1rqo64s1]",
"time": "14:12",
"topic": "Access tables and databases size limitation",
"username": "Rick Lipkin"
}
] |
Access tables and databases size limitation
|
[
{
"date": "2014-09-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\n\nmany thanks <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "14:29",
"topic": "Access tables and databases size limitation",
"username": "Antonio Linares"
}
] |
Access tables and databases size limitation
|
[
{
"date": "2014-09-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rick,\nThank you for sharing",
"time": "18:32",
"topic": "Access tables and databases size limitation",
"username": "bpd2000"
}
] |
Access tables and databases size limitation
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Good for all.\nSee if someone can tell me how to access the internal structure of HB_ITEM Harbour (not xHarbour).\nSpecifically I want to access the address:\nmyItem->item.asString.length // NOTE, not the value but also the direction.\n\nAs an example:\nmyItem->item.asString.value;\n\nI can access like this:\nchar *MyPointer = myItem->item.asString.value;\nor function:\nchar *MyPointer = hb_itemGetCPtr(myItem) // This is the preferred\n\nBut myItem->item.asString.length, how?\nThere functions that do the same as hb_itemGetCPtr(myIyem) but myItem->item.asString.length?\n\n\n///////////////// Español /////////////////////////\n\nBuenas a todos. \nA ver si alguien sabe decirme como acceder a la estructura interna de HB_ITEM en Harbour (no en xHarbour).\n\nConcrétamente quiero acceder a la dirección de:\nmyItem->item.asString.length // OJO, no al valor si no a la dirección.\n\nComo ejemplo:\nmyItem->item.asString.value;\n\npuedo acceder así:\nchar * miPuntero = myItem->item.asString.value;\no con la función:\nchar * miPuntero = hb_itemGetCPtr( myItem ); // Esta es la aconsejable\n\nPero para myItem->item.asString.length, cómo?\nHay alguna función que haga lo mismo que hb_itemGetCPtr( myIyem ) pero para myItem->item.asString.length?\n\n<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> <!-- s:mrgreen: --><img src=\"{SMILIES_PATH}/icon_mrgreen.gif\" alt=\":mrgreen:\" title=\"Mr. Green\" /><!-- s:mrgreen: --> <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> <!-- s:twisted: --><img src=\"{SMILIES_PATH}/icon_twisted.gif\" alt=\":twisted:\" title=\"Twisted Evil\" /><!-- s:twisted: --> <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: --> <!-- s:arrow: --><img src=\"{SMILIES_PATH}/icon_arrow.gif\" alt=\":arrow:\" title=\"Arrow\" /><!-- s:arrow: -->",
"time": "14:59",
"topic": "Access the structure HB_ITEM Harbour",
"username": "xmanuel"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You ca try\n ULONG hb_arrayGetCLen( myItem )\n\nRegards\nMassimo",
"time": "16:35",
"topic": "Access the structure HB_ITEM Harbour",
"username": "MaxP"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:y4voppup]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=27716&p=154769#p154769[/url:y4voppup]",
"time": "16:45",
"topic": "Access the structure HB_ITEM Harbour",
"username": "Daniel Garcia-Gil"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry,\n\nthis is the function\n\nULONG hb_itemGetCLen( myItem )\n\nRegards\nMassimo",
"time": "17:17",
"topic": "Access the structure HB_ITEM Harbour",
"username": "MaxP"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Example\n\n[code=fw:24vmxx8z]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"fivewin.ch\"</span><br /><br /><span style=\"color: #00C800;\">function</span> Main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">LOCAL</span> nLen<br /> <br /> nLen := MyTest<span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"Example\"</span> <span style=\"color: #000000;\">)</span> <br /> <br /> MsgStop<span style=\"color: #000000;\">(</span> nLen <span style=\"color: #000000;\">)</span> <br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"hbapi.h\"</span><br /><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"hbapiitm.h\"</span><br /><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">(</span> MYTEST <span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> PHB_ITEM myItem = hb_itemNew<span style=\"color: #000000;\">(</span><span style=\"color: #00C800;\">NULL</span><span style=\"color: #000000;\">)</span> ;<br /> ULONG nRet ;<br /> const char *pStr = hb_parc<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">)</span> ;<br /> <br /> hb_itemPutC<span style=\"color: #000000;\">(</span> myItem, pStr <span style=\"color: #000000;\">)</span> ;<br /> <br /> nRet = hb_itemGetCLen<span style=\"color: #000000;\">(</span> myItem <span style=\"color: #000000;\">)</span>;<br /> <br /> hb_itemRelease<span style=\"color: #000000;\">(</span> myItem <span style=\"color: #000000;\">)</span>;<br /> <br /> hb_retnl<span style=\"color: #000000;\">(</span> nRet <span style=\"color: #000000;\">)</span> ;<br /><span style=\"color: #000000;\">}</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br /> </div>[/code:24vmxx8z]\n\nRegards\nMassimo",
"time": "17:46",
"topic": "Access the structure HB_ITEM Harbour",
"username": "MaxP"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2013-11-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Gracias Massimo.\nRealmente lo que pasa es lo que dice Daniel.\n\nYo no quiero saber el ancho sino la dirección del elemento que guarda...\n\n////////////////////////\n\nThanks Massimo.\nActually what happens is what Daniel says.\n\nI do not want to know the width but the direction of the element that keeps ... <!-- s:cry: --><img src=\"{SMILIES_PATH}/icon_cry.gif\" alt=\":cry:\" title=\"Crying or Very sad\" /><!-- s:cry: -->",
"time": "20:39",
"topic": "Access the structure HB_ITEM Harbour",
"username": "xmanuel"
}
] |
Access the structure HB_ITEM Harbour
|
[
{
"date": "2007-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I need to access web services. From the documentation for the web service, I quote below:\n[quote:3sw2dme8]\nThis method lets providers list and download available files (reports and circular letters).\nThe method that lists available files for download is called getProvidersFiles. It expects\nthe following parameters:\n• username – string containing username.\n• password – string containing password.\nThis method returns an array of ProviderFile objects. Following is a description of the\nproperties of a ProviderFile object:\nProperty Name Type Description\ncreated String Date when file was created\nfileId Integer ID used to look for the file\nfileName String Name of file\nfileType String Type of File\nprovider String provider owner of file\nnpiNumber String Provider’s NPI\ntaxIDNumber String Provider’s Tax ID\n[/quote:3sw2dme8]\n\nNotice how web services has access to web methods that can recieve parameters and return data. In this case it returns an object.\n\nIs it possible with fw to gain access to web services?\n\n\n\nReinaldo.",
"time": "02:38",
"topic": "Access to Web Services",
"username": "reinaldocrespo"
}
] |
Access to Web Services
|
[
{
"date": "2008-08-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am starting a new thread due to a change in topic in another thread. Here is the original question:\r\n\r\n--------------\r\nSeem to have hit a wall. I have a main.rc file with many includes. Maybe 600. \r\nAbout 14 won't compile. I get and access violation. \r\nSo I added a main2.rc with the 14 includes included in main.rc. Same access violation. \r\n\r\nAny thoughts?\r\n\r\nThank you \r\nHarvey\r\n----------------\r\n\r\nYikes, 600! What are they all? How many are RC files? What eactly does the error say? Can you combine some of those includes into the same file? \r\n\r\nRegards,\r\nJames",
"time": "17:17",
"topic": "Access violation with many includes",
"username": "James Bott"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:3dpvcti1]Yes 600. Some may be due to my ineffieient programing over the years. The program is very complex. After I finish conversion to 32bits. I'll let you have a copy NC. \n\nall rc files. Just says \"access violation\" when compiling. If I comment out the items at the bottom of this list it compiles.[/quote:3dpvcti1]\r\n\r\nThen your only option may be to combine some of them into one file. There must be a maximum number of include files allowed and you have exceded it.\r\n\r\nIf you are using an include file for each dialog (as workshop wants to do) you can eliminate any of them by changing the ID reference to use the actual numeric ID rather than the manifest constant located in the include file.\r\n\r\nRegards,\r\nJames",
"time": "17:22",
"topic": "Access violation with many includes",
"username": "James Bott"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I think I understand. Can you send me an example.",
"time": "17:25",
"topic": "Access violation with many includes",
"username": "hag"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Harvey,\r\n\r\nWhen you create a dialog, Workshop will generate an include file something like this:\r\n\r\n#define ID_DATE 110\r\n#define ID_CLIENT 120\r\n#define ID_ARTICLE 130\r\n#define ID_AMOUNT 140\r\n#define ID_TOTAL 150\r\n#define ID_NOTES 160\r\n\r\nThen in your code you write something like this:\r\n\r\nredefine get var dData ID ID_DATE...\r\n\r\nYou can rewrite the line like this:\r\n\r\nredefine get var dData ID 120 ...\r\n\r\nYou will have to do the same for all the #defines in the include file. Then you can just eliminate the include file.\r\n\r\nRegards,\r\nJames",
"time": "17:40",
"topic": "Access violation with many includes",
"username": "James Bott"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Try it later today when I get back home.\r\n\r\nThanks for all your help.",
"time": "17:42",
"topic": "Access violation with many includes",
"username": "hag"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I created a small dll for the items the main.rc file will not compile. Everything is working fine even the manifest. You've been a great help.",
"time": "02:51",
"topic": "Access violation with many includes",
"username": "hag"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Glad to hear you got it working.\r\n\r\nJames",
"time": "06:15",
"topic": "Access violation with many includes",
"username": "James Bott"
}
] |
Access violation with many includes
|
[
{
"date": "2008-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Harvey,\r\n\r\nan access violation can also happen if you have an icon file with several included icons inside and with a color depth which is not supported by the resource compiler of borland.\r\nDelete the unsupported icons out of the icon file and it will work\r\n\r\nIf I remember right, 8bit and 24bit colors are supported. So all icons files from vista can´t be used in their original form.",
"time": "07:59",
"topic": "Access violation with many includes",
"username": "StefanHaupt"
}
] |
Access violation with many includes
|
[
{
"date": "2008-03-10",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Quisiera saber (con ADODB.Connection) cuantas tablas tiene (numero) cuales (los nombres) y los nombres de los campos de cada una de ellas, en una base de datos ACCESS.\nSi ademas puedo saber el tipo de dato de cada campo (texto, fecha, numero, etc...) pues mejor.\n\nGracias.",
"time": "21:09",
"topic": "Access, cuantas tablas y cual es y su estructura",
"username": "JmGarcia"
}
] |
Access, cuantas tablas y cual es y su estructura
|
[
{
"date": "2017-06-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hola.\n\nTengo una base de datos Access con dos tablas. Lo que quiero es conectar periódicamente con esa base de datos, recuperar con recordset lo que tenga cada tabla, copiar los recordsets a archivos DBF y a continuación borrar la información que he recuperado de Access.\nTengo claro lo de recuperar la información con los recordsets siguiendo el ejemplo del programa TESTXBR3.PRG. Es la copia a dbf y el borrado lo que no tengo claro.\nAgradecería cualquier ayuda al respecto.\nGracias.",
"time": "22:00",
"topic": "Access: copiar recordset a dbf y borrar el recordset",
"username": "fernandomoralesdr"
}
] |
Access: copiar recordset a dbf y borrar el recordset
|
[
{
"date": "2017-06-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "crear el recordset con \n FW_OpenRecordSet( oCn, cSql, nLockType, nCursorType, nMaxRecords, nOpt )\n\ncopiar el recorset a una tabla dbf\n FW_AdoExportToDBF( oRs, cDbf, lEditStruct )\n\nborra la data en tabla de access\nsi oConn enla conexion creada con Fw_OpenAdoConnection( cConnStr, lShowError )\n\noConn:execute( \"DELETE FROM mytabla\" )\n\nsalu2\ncarlos vargas",
"time": "22:30",
"topic": "Access: copiar recordset a dbf y borrar el recordset",
"username": "carlos vargas"
}
] |
Access: copiar recordset a dbf y borrar el recordset
|
[
{
"date": "2018-04-28",
"forum": "Utilities / Utilidades",
"text": "Thanks to Lailton for googling for it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[url:bgrgxdoe]https://blog.mattmags.com/2007/06/30/accessing-32-bit-dlls-from-64-bit-code/[/url:bgrgxdoe]\n\nBasically the technique is to use IPC (Interprocess communication) between a 64 bits app and a 32 bits app:\n\n[quote:bgrgxdoe]The following IPC mechanisms are supported by Windows:\n\nClipboard\nCOM\nData Copy\nDDE\nFile Mapping\nMailslots\nPipes\nRPC\nWindows Sockets[/quote:bgrgxdoe]\n\n[url:bgrgxdoe]https://msdn.microsoft.com/en-us/library/aa365574.aspx?f=255&MSPPError=-2147217396[/url:bgrgxdoe]\n\nFrom all of them, the WM_COPYDATA seems the simplest way to go <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nSendMessage( hWndToReceiveTheMessage, WM_COPYDATA, hWndSender, pPointerToACOPYDATASTRUCT structure ) --> value returned from hWndToReceiveTheMessage",
"time": "07:39",
"topic": "Accessing 32-bit DLLs from 64-bit code",
"username": "Antonio Linares"
}
] |
Accessing 32-bit DLLs from 64-bit code
|
[
{
"date": "2018-04-28",
"forum": "Utilities / Utilidades",
"text": "[url:12zim179]https://stackoverflow.com/questions/1128150/win32-api-to-enumerate-dll-export-functions[/url:12zim179]\n\n[url:12zim179]https://msdn.microsoft.com/en-us/library/windows/desktop/ms679318(v=vs.85).aspx[/url:12zim179]\n\n[code=fw:12zim179]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <windows.h><br /><span style=\"color: #00D7D7;\">#include</span> <stdio.h><br /><span style=\"color: #00D7D7;\">#include</span> <dbghelp.h><br /><br />BOOL CALLBACK EnumSymProc<span style=\"color: #000000;\">(</span> <br /> PSYMBOL_INFO pSymInfo, <br /> ULONG SymbolSize, <br /> PVOID UserContext<span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> UNREFERENCED_PARAMETER<span style=\"color: #000000;\">(</span>UserContext<span style=\"color: #000000;\">)</span>;<br /> <br /> printf<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"%08X %4u %s<span style=\"color: #000000;\">\\n</span>\"</span>, <br /> pSymInfo->Address, SymbolSize, pSymInfo->Name<span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #00C800;\">TRUE</span>;<br /><span style=\"color: #000000;\">}</span><br /><br />void main<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> HANDLE hProcess = GetCurrentProcess<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /> DWORD64 BaseOfDll;<br /> char *Mask = <span style=\"color: #ff0000;\">\"*\"</span>;<br /> BOOL status;<br /><br /> status = SymInitialize<span style=\"color: #000000;\">(</span>hProcess, <span style=\"color: #00C800;\">NULL</span>, <span style=\"color: #00C800;\">FALSE</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">(</span>status == <span style=\"color: #00C800;\">FALSE</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">return</span>;<br /> <span style=\"color: #000000;\">}</span><br /> <br /> BaseOfDll = SymLoadModuleEx<span style=\"color: #000000;\">(</span>hProcess,<br /> <span style=\"color: #00C800;\">NULL</span>,<br /> <span style=\"color: #ff0000;\">\"foo.dll\"</span>,<br /> <span style=\"color: #00C800;\">NULL</span>,<br /> <span style=\"color: #000000;\">0</span>,<br /> <span style=\"color: #000000;\">0</span>,<br /> <span style=\"color: #00C800;\">NULL</span>,<br /> <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span>;<br /> <br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">(</span>BaseOfDll == <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">{</span><br /> SymCleanup<span style=\"color: #000000;\">(</span>hProcess<span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #00C800;\">return</span>;<br /> <span style=\"color: #000000;\">}</span> <br /> <br /> <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">(</span>SymEnumSymbols<span style=\"color: #000000;\">(</span>hProcess, <span style=\"color: #B900B9;\">// Process handle from SymInitialize.</span><br /> BaseOfDll, <span style=\"color: #B900B9;\">// Base address of module.</span><br /> Mask, <span style=\"color: #B900B9;\">// Name of symbols to match.</span><br /> EnumSymProc, <span style=\"color: #B900B9;\">// Symbol handler procedure.</span><br /> <span style=\"color: #00C800;\">NULL</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> <span style=\"color: #B900B9;\">// User context.</span><br /> <span style=\"color: #000000;\">{</span><br /> <span style=\"color: #B900B9;\">// SymEnumSymbols succeeded</span><br /> <span style=\"color: #000000;\">}</span><br /> <span style=\"color: #00C800;\">else</span><br /> <span style=\"color: #000000;\">{</span><br /> <span style=\"color: #B900B9;\">// SymEnumSymbols failed</span><br /> printf<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"SymEnumSymbols failed: %d<span style=\"color: #000000;\">\\n</span>\"</span>, GetLastError<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #000000;\">}</span><br /> <br /> SymCleanup<span style=\"color: #000000;\">(</span>hProcess<span style=\"color: #000000;\">)</span>;<br /><span style=\"color: #000000;\">}</span></div>[/code:12zim179]",
"time": "09:44",
"topic": "Accessing 32-bit DLLs from 64-bit code",
"username": "Antonio Linares"
}
] |
Accessing 32-bit DLLs from 64-bit code
|
[
{
"date": "2018-05-23",
"forum": "Utilities / Utilidades",
"text": "Hi Antonio,\n\nThanks for it!\n\nI will to test <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "00:58",
"topic": "Accessing 32-bit DLLs from 64-bit code",
"username": "Lailton"
}
] |
Accessing 32-bit DLLs from 64-bit code
|
[
{
"date": "2015-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is there an ado driver for Microsoft SqlServer which allows the user to access SQL through the internet. So you could create a FiveWin application which access the SQL data through the internet.\n\nThanks, \n\nByron ...",
"time": "20:56",
"topic": "Accessing SQL Server via Internet",
"username": "byron.hopp"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2015-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Bayron\n\nI use SQLRDD for xHarbour\n\nregards.",
"time": "21:00",
"topic": "Accessing SQL Server via Internet",
"username": "devtuxtla"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2015-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I thought SQLRDD allowed the user to use the dBase DML to traverse through the data, how do you set it up for access through the internet?\n\nByron ...",
"time": "21:31",
"topic": "Accessing SQL Server via Internet",
"username": "byron.hopp"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2015-03-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- m --><a class=\"postlink\" href=\"https://www.youtube.com/watch?v=VOUDdUJ5BLY\">https://www.youtube.com/watch?v=VOUDdUJ5BLY</a><!-- m -->",
"time": "22:22",
"topic": "Accessing SQL Server via Internet",
"username": "nageswaragunupudi"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2015-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You don't need a special driver for accesing ADO via internet.\nYou only have to use the correct IP-adress (or noip) and forward the correct PORT to access the SQL-server if the SQL-server is behind a router",
"time": "12:33",
"topic": "Accessing SQL Server via Internet",
"username": "Marc Vanzegbroeck"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2015-03-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marc Vanzegbroeck\":161ixyvk]You don't need a special driver for accesing ADO via internet.\nYou only have to use the correct IP-adress (or noip) and forward the correct PORT to access the SQL-server if the SQL-server is behind a router[/quote:161ixyvk]\nTrue.\nBut a client can connect like this, if server-side is configured correctly. If we are managing the server-side, we need to know how to configure the server and the router for accessing the server over internet.",
"time": "14:24",
"topic": "Accessing SQL Server via Internet",
"username": "nageswaragunupudi"
}
] |
Accessing SQL Server via Internet
|
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Everybody,\n\nI have a Test DLL from a company that has a cost effective way of converting a standard USB Jump drive into a software protection device.\nThe software is called AntiDuplicate. It modifies a standard USB Jump drive so that it knows the difference between the original and a copy thus allowing you to use it as a hardware key (sells for $129.00 U.S.)\n\nI need to know if it is possible to read data form this file.\n\nThe test dll can be downloaded from my site:\n\n[url]\n<!-- w --><a class=\"postlink\" href=\"http://www.can-soft.net/dl/TestDLL.zip\">www.can-soft.net/dl/TestDLL.zip</a><!-- w -->\n[/url]\n\nThey also gave me this info:\n\n[quote:316pl7p2]\nIf Fivewin can call functions with the array as argument and use the result from the same array, we can use AntiDuplicate DLL.\n\nThis package contains the DLL and an example of the test function call (on Delphi Pascal). If you prefer example on other program language, please let me know.\nIf you'll call function correctly, after the function call you'll get A[99] = 8300.\n\n[/quote:316pl7p2]\n\nDoes anyone know if Fivewin can work with this?\nCan someone provide a sample of how to read it?\n\nThanks,\nJeff",
"time": "14:37",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nPlease review samples\\dlls\\delphi32\\*.prg to access a Delphi DLL from FW",
"time": "14:39",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nI have looked at the sample but how do you return an array from a Delphi DLL? \n\nThe samples seem to work fine for text but I get NIL returned with the array.\n\n\nThanks,\nJeff",
"time": "15:13",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\n> If you prefer example on other program language, please let me know\n\nCould you please ask them for a C language sample ? thanks",
"time": "15:23",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nPlease try this:\n[code:1lrjvjq1]\n#include \"FiveWin.ch\"\n#include \"Struct.ch\"\n\nfunction Main()\n\n local oStruct, cBuffer\n\n STRUCT oStruct\n MEMBER n1 AS LONG\n MEMBER n2 AS LONG\n ... // please repeat it up to 128\n MEMBER n128 AS LONG\n ENDSTRUCT\n\n cBuffer = oStruct:cBuffer\n TestFunc1( cBuffer )\n oStruct:cBuffer = cBuffer\n\n MsgInfo( oStruct:n1 )\n\nreturn nil\n\nDLL FUNCTION TESTFUNC1( pValues as LPSTR ) AS BOOL PASCAL LIB \"\nTestLib12.dll'\n[/code:1lrjvjq1]",
"time": "15:33",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nThe code you gave me will only return a 0 (zero).\n\nI asked for a C Language sample and this is what they sent me:\n\n[code:nyaj8k2k]\n\n=======================\n\ntypedef VOID (CALLBACK* LPFNDLLACC1)(LONG[127]);\n\n.....\n\nHINSTANCE hDLL; // Handle to DLL\nLPFNDLLACC1 lpfnDllFunc1; // Function pointer\nLONG a[128];\nINT i;\n\n.....\n\nhDLL = LoadLibrary(\"TestLib12.dll\");\nif (hDLL != NULL)\n{\n for (i = 0; i < 128; i++)\n a[i] = i;\n lpfnDllFunc1 = (LPFNDLLACC1)GetProcAddress(hDLL, \"TestFunc1\");\n if (!lpfnDllFunc1)\n {\n printf(\"Function not found!\\n\");\n }\n else\n {\n // call the function\n lpfnDllFunc1(a);\n printf(\"Result = %u\\n\", a[99]);\n }\n FreeLibrary(hDLL);\n}\n\n=======================\n\n[/code:nyaj8k2k]\n\n\n\nThanks,\nJeff",
"time": "02:38",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nPlease change this line:\n\nDLL FUNCTION TESTFUNC1( pValues AS LPSTR ) AS BOOL PASCAL FROM \"TestFunc1\" LIB \"TestLib12.dll\"",
"time": "08:26",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Same thing ... Always shows 0 (zero)",
"time": "18:12",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nCould you please ask the developers to place a MessageBox( 0, \"here\", \"inside the DLL\", 0 ); inside that DLL function just to check if we properly access it ? thanks",
"time": "20:07",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\n\nOk ... here is the latest DLL from the company:\n\n\n<!-- m --><a class=\"postlink\" href=\"http://www.antiduplicate.com/t/TestDLL.zip\">http://www.antiduplicate.com/t/TestDLL.zip</a><!-- m -->\n\n\n\nThanks,\nJeff",
"time": "15:46",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nThe function is getting called as the MessageBox() is shown.\n\nCould you provide me the PRG declaring the 128 members of the struct ? Thanks,",
"time": "16:14",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nPlease check your email.\n\nJeff",
"time": "16:40",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nI am testing it this way, so it can be simpler:\n[code:2ea4dl6v]\n#include \"FiveWin.ch\" \n#include \"Struct.ch\" \n\nfunction Main() \n\n local oStruct, cBuffer, n\n\n STRUCT oStruct \n MEMBER cData AS STRING LEN 4 * 128 \n ENDSTRUCT \n\n oStruct:cData = Replicate( \" \", 4 * 128 )\n MsgInfo( Empty( oStruct:cData ) )\n\n cBuffer = oStruct:cBuffer \n TestFunc1( cBuffer ) \n oStruct:cBuffer = cBuffer \n\n MsgInfo( Empty( oStruct:cData ) )\n \n for n = 1 to Len( oStruct:cData )\n if SubStr( oStruct:cData, n, 1 ) != \" \"\n MsgInfo( n )\n endif\n next \n\nreturn nil \n\nDLL FUNCTION TESTFUNC1( pValues as LPSTR ) AS BOOL PASCAL ;\nFROM \"TestFunc1\" LIB \"TestLib12.dll\" \n[/code:2ea4dl6v]",
"time": "16:41",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nThere you have the MessageBox() shown value:\n[code:3g2rt5ct]\n for n = 1 to Len( oStruct:cData ) \n if SubStr( oStruct:cData, n, 1 ) != \" \" \n MsgInfo( n ) \n endif \n next\n \n MsgInfo( Bin2L( SubStr( oStruct:cData, 1, 4 ) ) ) // <=====\n[/code:3g2rt5ct]\nDon't know why they show [99], when they are placing it at zero <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "16:47",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nAre you sure this is right? They told me that the value should be 8300 at a[99].\n\nWith this code we get a value of 808464534.\n\nIt looks like the input and output values are the same?\n\nJeff",
"time": "17:50",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nI am not showing a[99], my code shows a[0]. \n\nIn C language arrays are zero based, not 1 based, like in Clipper",
"time": "19:13",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Considering that a long value uses four bytes, then you could inspect a[99] using SubStr( oStruct:cData, 99 * 4, 4 ).\n\nPlease also try 98 * 4 and 100 * 4",
"time": "19:16",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nOk, I am lost. I really don't understand how we are connecting to this dll.\n\nI guess my main question is ... are we accessing the dll correctly and getting the correct response ? \n\nI don't want to spend $129.00 if it will not work with Fivewin <!-- s:? --><img src=\"{SMILIES_PATH}/icon_confused.gif\" alt=\":?\" title=\"Confused\" /><!-- s:? --> \n\nThanks,\nJeff",
"time": "13:54",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nThe DLL expects an array of 128 long numbers (a long number uses 4 bytes = 32 bits).\n\nInstead of using 128 struct members, we are using one single string that has 128 * 4 bytes. \n\nThe DLL is being accessed as the MessageBox() is shown, though they show a [99], and according to our test they are changing the first long (SubStr( oStruct:cData, 1, 4 ) ) of the array, not the 99. \n\nCould you please ask them about this ? Could they confirm you that they are modifying the 99 element of the array instead of the first one ?",
"time": "17:06",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\n\nHere is the reply:\n\n\nYes, in the DLL we change a[99] only, a[0] remains the same.\n\nWe've compiled a test application (using the code from our C.txt sample), and placed this to the TestDLL.zip at the same address, please download it.\nBy this application you can set a[0] value before the DLL function call ( = 0 by default), click the button to call DLL, and then see both a[0] and a[99] result values.\nIf a[0] is equal to 0, a[1] = 1 ... a[127] = 127 before the function call, after the function call a[99] would be equal to 8300.",
"time": "01:04",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nOk, here you having it working fine. I redesigned it in a total different way:\n[code:2u3wtsc5]\n#include \"FiveWin.ch\" \n\nfunction Main() \n\n local cArray := FillArray()\n\n MsgInfo( A99( cArray ) )\n\n TestFunc1( cArray ) \n\n MsgInfo( A99( cArray ) )\n \nreturn nil \n\nDLL FUNCTION TESTFUNC1( pValues AS LPSTR ) AS BOOL PASCAL ;\nFROM \"TestFunc1\" LIB \"TestLib12.dll\" \n\n#pragma BEGINDUMP\n\n#include <hbapi.h>\n#include <windows.h>\n\nHB_FUNC( FILLARRAY )\n{\n LONG a[ 128 ];\n int i;\n \n for( i = 0; i < 128; i++ )\n a[ i ] = i;\n \n hb_retclen( ( char * ) a, 128 * sizeof( LONG ) );\n} \n\nHB_FUNC( A99 )\n{\n LONG * a = ( LONG * ) hb_parc( 1 );\n \n hb_retnl( a[ 99 ] );\n} \n \n#pragma ENDDUMP \n[/code:2u3wtsc5]",
"time": "08:39",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks for all the help Antonio.\n\nI am going to buy the software today.\n\nI will let you know you well it works.\n\n\n\nJeff",
"time": "11:00",
"topic": "Accessing a Delphi DLL function.",
"username": "Jeff Barnes"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2007-10-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jeff,\n\nYou are welcome,\n\nIMO it will work fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "11:07",
"topic": "Accessing a Delphi DLL function.",
"username": "Antonio Linares"
}
] |
Accessing a Delphi DLL function.
|
[
{
"date": "2015-11-26",
"forum": "FiveTouch",
"text": "Thanks to Rafa Carmona here you have a working example of how to access a web service\nusing Harbour code and FiveTouch! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nThis opens the door to manage any remote database (MySQL, SQL, etc) using a web service \nwhich it is the advised way to do it <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nFinally we can use any database engine from FiveTouch! Many thanks Rafa!!!\n\n[code=fw:ptqrw9kn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">PROCEDURE test_htip<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">LOCAL</span> oHttp, hQuery, cResponse<br /><br /> hQUery := <span style=\"color: #000000;\">{</span> => <span style=\"color: #000000;\">}</span><br /> hb_HCaseMatch<span style=\"color: #000000;\">(</span> hQuery, .F. <span style=\"color: #000000;\">)</span><br /><br /> oHttp := TIPClientHTTP<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>:<span style=\"color: #00C800;\">New</span><span style=\"color: #000000;\">(</span> <span style=\"color: #ff0000;\">\"http://adaptaproyectoserp.com.ve/webservices/client.php\"</span>, .T. <span style=\"color: #000000;\">)</span><br /> hQuery<span style=\"color: #000000;\">[</span> <span style=\"color: #ff0000;\">\"nombre\"</span> <span style=\"color: #000000;\">]</span> := <span style=\"color: #ff0000;\">\"THefull The BEST!\"</span><br /> <br /> <span style=\"color: #00C800;\">IF</span> ! oHttp:<span style=\"color: #000000;\">open</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> ? <span style=\"color: #ff0000;\">\"Error: oHttp:open(): \"</span> + oHttp:<span style=\"color: #000000;\">lastErrorMessage</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">RETURN</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> <span style=\"color: #00C800;\">IF</span> ! oHttp:<span style=\"color: #000000;\">post</span><span style=\"color: #000000;\">(</span> hQuery <span style=\"color: #000000;\">)</span><br /> ? <span style=\"color: #ff0000;\">\"Error: oHttp:post(): \"</span> + oHttp:<span style=\"color: #000000;\">lastErrorMessage</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">ENDIF</span><br /><br /> cResponse := oHttp:<span style=\"color: #000000;\">readAll</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> oHttp:<span style=\"color: #000000;\">close</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /> Alert<span style=\"color: #000000;\">(</span> cResponse <span style=\"color: #000000;\">)</span><br /><br /> <span style=\"color: #00C800;\">RETURN</span></div>[/code:ptqrw9kn]\n\n[img:ptqrw9kn]https://bitbucket.org/fivetech/screenshots/downloads/webservice_fivetouch.JPG[/img:ptqrw9kn]",
"time": "12:45",
"topic": "Accessing a web service from FiveTouch !!!",
"username": "Antonio Linares"
}
] |
Accessing a web service from FiveTouch !!!
|
[
{
"date": "2015-11-26",
"forum": "FiveTouch",
"text": "Excellent, Good News",
"time": "14:30",
"topic": "Accessing a web service from FiveTouch !!!",
"username": "bpd2000"
}
] |
Accessing a web service from FiveTouch !!!
|
[
{
"date": "2015-11-26",
"forum": "FiveTouch",
"text": "Using it from FiveTouch for Android:\n\n[img:netzyvzj]https://bitbucket.org/fivetech/screenshots/downloads/fivetouch_web_service_android1.png[/img:netzyvzj]\n\n[img:netzyvzj]https://bitbucket.org/fivetech/screenshots/downloads/fivetouch_web_service_android2.png[/img:netzyvzj]",
"time": "22:57",
"topic": "Accessing a web service from FiveTouch !!!",
"username": "Antonio Linares"
}
] |
Accessing a web service from FiveTouch !!!
|
[
{
"date": "2018-10-16",
"forum": "FiveTouch",
"text": "Antônio,\nCould you build an small example of use MySql with FiveTouch ?",
"time": "22:34",
"topic": "Accessing a web service from FiveTouch !!!",
"username": "vilian"
}
] |
Accessing a web service from FiveTouch !!!
|
[
{
"date": "2018-10-31",
"forum": "FiveTouch",
"text": "Vilian,\n\nSimply call a remote PHP from FiveTouch, like in the above example, and use the MySQL returned value\n\nYou don't even need to build a web service in the server. Just simple PHP code to retrieve a MySQL field value and return it",
"time": "17:53",
"topic": "Accessing a web service from FiveTouch !!!",
"username": "Antonio Linares"
}
] |
Accessing a web service from FiveTouch !!!
|
[
{
"date": "2019-03-03",
"forum": "FiveTouch",
"text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=33&t=36840\">viewtopic.php?f=33&t=36840</a><!-- l -->",
"time": "09:43",
"topic": "Accessing to MySQL from FiveTouch",
"username": "Antonio Linares"
}
] |
Accessing to MySQL from FiveTouch
|
[
{
"date": "2021-08-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola.\n\nEstoy intentando ejecutar una acción cuando se pulsa una imagen de una celda del xBrowse pero no me reacciona, supongo que me dejo algo.\n\nEn base al ejemplo xbrimag2.prg de Fivewin, he incluido el data bBmpAction:\n[code=fw:jnh16dpj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />WITH OBJECT :<span style=\"color: #000000;\">aCols</span><span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">]</span><br /> :<span style=\"color: #000000;\">cDataType</span> := <span style=\"color: #ff0000;\">'F'</span><br /> :<span style=\"color: #000000;\">nWidth</span> := <span style=\"color: #000000;\">80</span><br /> :<span style=\"color: #000000;\">nDataBmpAlign</span> := AL_CENTER<br /> :<span style=\"color: #000000;\">aImgRect</span> := <span style=\"color: #ff0000;\">\"circle\"</span><br /> :<span style=\"color: #000000;\">bBmpAction</span> := <span style=\"color: #000000;\">{</span>||MsgInfo<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'hola'</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span><br />END</div>[/code:jnh16dpj]\n\n[url=https://ibb.co/8rkrKqP:jnh16dpj][img:jnh16dpj]https://i.ibb.co/8rkrKqP/2021-08-20-10h20-39.png[/img:jnh16dpj][/url:jnh16dpj]\n\nQue me estoy dejando?\n\nSalud!",
"time": "09:22",
"topic": "Acción al pulsar imagen en Browse",
"username": "VictorCasajuana"
}
] |
Acción al pulsar imagen en Browse
|
[
{
"date": "2021-08-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Victor, prueba con la data bLDClickData del objeto columna",
"time": "10:36",
"topic": "Acción al pulsar imagen en Browse",
"username": "cnavarro"
}
] |
Acción al pulsar imagen en Browse
|
[
{
"date": "2021-08-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Victor \n\nIntenta con:\n[code=fw:u28ilv3m]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oBrw:<span style=\"color: #000000;\">bLClicked</span>:= <span style=\"color: #000000;\">{</span>|r,c,f,oBrw| <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span>oBrw:<span style=\"color: #000000;\">MouseColPos</span><span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span>=<span style=\"color: #000000;\">1</span>,<span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'hola'</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <br /> </div>[/code:u28ilv3m]",
"time": "13:49",
"topic": "Acción al pulsar imagen en Browse",
"username": "acuellar"
}
] |
Acción al pulsar imagen en Browse
|
[
{
"date": "2021-08-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"acuellar\":1dlyncnt]Victor \n\nIntenta con:\n[code=fw:1dlyncnt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />oBrw:<span style=\"color: #000000;\">bLClicked</span>:= <span style=\"color: #000000;\">{</span>|r,c,f,oBrw| <span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span>oBrw:<span style=\"color: #000000;\">MouseColPos</span><span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span>=<span style=\"color: #000000;\">1</span>,<span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">'hola'</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span> <br /> </div>[/code:1dlyncnt][/quote:1dlyncnt]\nEsto no me funciona ya que es a nivel del browse y lo que necesito es que reacciones a la pulsación de la imagen en una columna\n\n[quote=\"cnavarro\":1dlyncnt]Victor, prueba con la data bLDClickData del objeto columna[/quote:1dlyncnt]\nMe ha funcionado, lo único que ha de ser con doble click\n[code=fw:1dlyncnt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">:<span style=\"color: #000000;\">bLDClickData</span> := <span style=\"color: #000000;\">{</span> || <span style=\"color: #0000ff;\">Msginfo</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Hola\"</span><span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">}</span></div>[/code:1dlyncnt]\nHe visto en la clase que existe la DATA [b:1dlyncnt]bRClickData [/b:1dlyncnt]pero no [b:1dlyncnt]bLClickData[/b:1dlyncnt], supongo que será una limitación del sistema ya que el click simple izquierdo del ratón es el que lleva el foco al objeto.\nCon el doble click izquierdo ya me apaño.\n\nGracias a los dos!!!",
"time": "10:03",
"topic": "Acción al pulsar imagen en Browse",
"username": "VictorCasajuana"
}
] |
Acción al pulsar imagen en Browse
|
[
{
"date": "2007-12-06",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Las siguientes instrucciones en los metodos KeyChar y KeyDown de tGet y tControl(), no sólo evitan un beep, sino que también impiden la ejecución de cualquier acción al pulsar la tecla ESC.\n\nif nKey == VK_ESCAPE // avoids a beep!\n ::oWnd:KeyChar( nKey, nFlags )\n return 1\nendif \n\nTuve que hacer override de esos métodos (quitando estas instrucciones) para que un diálogo con un get se cerrara al pulsar un ESC, es decir,\n @ 0,0 GET oGet VAR cVar OF oDlg ......\n oGet:bKeyDown:={|nK,nF| if(nK=VK_ESCAPE,oDlg:End(),nil)}\n\nPregunta: ¿Cuáles pueden ser las consecuencias negativas de estos override?\n\nGracias.\nCésar Lozada",
"time": "01:00",
"topic": "Acción con tecla ESCAPE en tGet",
"username": "César E. Lozada"
}
] |
Acción con tecla ESCAPE en tGet
|
[
{
"date": "2008-04-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenos dias Cesar, desculpe el incomodo...\n\nPor favor, tienes alguna nueva version de SETMENUBG()????\n\n//\n[code:gz4e1yjo]\n*******************************************************************************\n*\n* Function SetMenuBG(oWndMain, nClrBack, oBrush)\n*\n* ENGLISH : Changes menus backgrounds or paint them with a brush\n* ESPANHOL: Cambia el color de fondo de los menús o les agrega un brush\n* \n* TESTED / PROBADO: FWH23c, xHarbour0.81\n*\n* César E. Lozada (cesarlozada@hotmail.com)\n* Los Teques, Venezuela 2003-08-08\n*\n*******************************************************************************\n[/code:gz4e1yjo]\n\nBest regars, saludos.",
"time": "14:10",
"topic": "Acción con tecla ESCAPE en tGet",
"username": "karinha"
}
] |
Acción con tecla ESCAPE en tGet
|
[
{
"date": "2008-04-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "César,\n\nEn principio no tiene que haber problemas por ese cambio, salvo que el GET tenga un VALID y no quieras que el usuario salga del diálogo con ESC.\n\nAunque en tal caso el VALID del diálogo se ejecutaría.",
"time": "19:52",
"topic": "Acción con tecla ESCAPE en tGet",
"username": "Antonio Linares"
}
] |
Acción con tecla ESCAPE en tGet
|
[
{
"date": "2008-04-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Up! Donde está César??",
"time": "17:08",
"topic": "Acción con tecla ESCAPE en tGet",
"username": "karinha"
}
] |
Acción con tecla ESCAPE en tGet
|
[
{
"date": "2006-11-15",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Al seleccionar una Items en un TreeView se puede ejecutar una acción ?\n¿Como?\n\nSaludos,\nManuel",
"time": "22:46",
"topic": "Acción en Items TreeView",
"username": "Manuel Aranda"
}
] |
Acción en Items TreeView
|
[
{
"date": "2015-01-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Compañeros, tengo un bitmap en un dialogo, lo implementé de la siguiente manera,\n\n[code=fw:2hzz9hfd]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />hBitmap := LoadBitmap<span style=\"color: #000000;\">(</span> GetResources<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>, <span style=\"color: #ff0000;\">'cerrar'</span> <span style=\"color: #000000;\">)</span><br />DrawBitmap<span style=\"color: #000000;\">(</span> hDc, hBitmap, <span style=\"color: #000000;\">8</span>, aRect<span style=\"color: #000000;\">[</span> <span style=\"color: #000000;\">4</span> <span style=\"color: #000000;\">]</span> - <span style=\"color: #000000;\">45</span>, <span style=\"color: #000000;\">37</span>, <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:2hzz9hfd]\n\nMe gustaría que se pudiera ejecutar una acción al hacer click en él. Existe alguna manera ? Muchísimas gracias.\n\nSaludos",
"time": "17:00",
"topic": "Acción en un bitmap",
"username": "horacio"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Horacio,\n\nLo idóneo es que uses un control TBitmap. Si lo estás mostrando sobre una ventana puedes hacer:\n\n@ <nFila>, <nColumna> BITMAP oBmp OF oWnd RESOURCE \"cerrar\" ;\n ON CLICK MsgInfo( \"Mi acción\" )\n\nPara un diálogo definido desde recursos:\n\nREDEFINE BITMAP oBmp ID <nId> OF oDlg RESOURCE \"cerrar\" ;\n ON CLICK MsgInfo( \"Mi acción\" )\n\nY en el fichero RC lo defines como un control definido por el usuario de clase \"TBitmap\"",
"time": "18:07",
"topic": "Acción en un bitmap",
"username": "Antonio Linares"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio, esta rutina la utilizo en el método Paint del dialogo, si utilizo la clase me da errores cada tanto. Por eso decidí implementarlo de esta manera. Capaz que se pueda usar la clase pero no he podido dilucidar el porque de los gpf. Gracias\n\nSaludos",
"time": "18:24",
"topic": "Acción en un bitmap",
"username": "horacio"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Horacio, te estoy contestando desde una tableta, por lo que no tengo el FWH a mano, pero con oDlg:blButtonDown o como se llame, puedes llamar a una función pasándole nRow y nCol, para saber si has pinchado sobre el Bmp o no. Eso lo hago algunas veces y va muy bien.\n\nUn saludo.",
"time": "12:41",
"topic": "Acción en un bitmap",
"username": "antolin"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antolín, gracias por tu respuesta. Si pudieras postear un ejemplo te lo agradecería.\n\nSaludos",
"time": "18:03",
"topic": "Acción en un bitmap",
"username": "horacio"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Algo como esto::\n[code=fw:2o3mfwi6]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> ....<br /> <span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">GET</span> ....<br /> ...<br /> oDlg:<span style=\"color: #000000;\">bPainted</span> := <span style=\"color: #000000;\">{</span> |hDc| <span style=\"color: #000000;\">(</span> PalbmpLoad<span style=\"color: #000000;\">(</span>hDc,<span style=\"color: #000000;\">10</span>,<span style=\"color: #000000;\">10</span>,hBmp,hPal<span style=\"color: #000000;\">)</span>, .... <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /> oDlg:<span style=\"color: #000000;\">bLClicked</span> := <span style=\"color: #000000;\">{</span> |nRow,nCol| AccionBmp<span style=\"color: #000000;\">(</span>nRow,nCol,hBmp<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">}</span><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> ...<br /><br />Suoponiendo que el Bitmap esta en las coordenadas <span style=\"color: #000000;\">10</span>,<span style=\"color: #000000;\">10</span> y mide 200X300 <span style=\"color: #000000;\">(</span>AnchoXAlto<span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #00C800;\">FUNCTION</span> AccionBmp<span style=\"color: #000000;\">(</span>nRow,nCol,hBmp<span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">IF</span> nRow > <span style=\"color: #000000;\">9</span> .AND. nRow < <span style=\"color: #000000;\">311</span> .AND. nCol > <span style=\"color: #000000;\">9</span> .AND. nCol < <span style=\"color: #000000;\">211</span><br /> ...<br /> HE PINCHADO SOBRE EL BITMAP<br /> Y REALIZO LA ACCION PREVISTA<br /> ...<br /> <span style=\"color: #00C800;\">ENDIF</span><br /> ...<br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span></div>[/code:2o3mfwi6]",
"time": "18:45",
"topic": "Acción en un bitmap",
"username": "antolin"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Muchas gracias Antolín por tu sugerencia, pruebo y comento. \n\nSaludos",
"time": "22:20",
"topic": "Acción en un bitmap",
"username": "horacio"
}
] |
Acción en un bitmap
|
[
{
"date": "2015-01-14",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Funcionó perfectamente. Muchas gracias Antolín.\n\nSaludos",
"time": "15:02",
"topic": "Acción en un bitmap",
"username": "horacio"
}
] |
Acción en un bitmap
|
[
{
"date": "2011-08-12",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Hello everyone, a cool new control for our programs I think it could be a Accordion Menu... I think it could be done by modifying the OUTLOOK CLASS... \n\n[img:30842qzd]http://f-source.com/accordion-menu/iphone/images/iphone-menu-demo.png[/img:30842qzd]",
"time": "17:59",
"topic": "Accordion Menu",
"username": "Bayron"
}
] |
Accordion Menu
|
[
{
"date": "2010-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi All\n\nHas anyone interfaced their software with Sage Pastel or any of the other\nsmaller accounting packages ie MYOB , Quickbooks. \n\nRegards\n\nColin",
"time": "06:01",
"topic": "Accounting Software",
"username": "Colin Haig"
}
] |
Accounting Software
|
[
{
"date": "2010-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Colin,\n\nI've done some work with Quickbooks. What do you want to know?\n\nRandal",
"time": "15:22",
"topic": "Accounting Software",
"username": "Randal"
}
] |
Accounting Software
|
[
{
"date": "2010-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I import data from accounting software using CSV files. \n\nColin I'd like to see what your doing with quickBooks. Do you have a direct link to QB or use an intermiedate step such as a csv file?",
"time": "23:34",
"topic": "Accounting Software",
"username": "hag"
}
] |
Accounting Software
|
[
{
"date": "2010-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Randal and Harvey\n\nHarvey - Randal has the done the interface to Quickbooks.\n\nI am trying to interface my job costing software to an accounting package - my \nclient likes Sage Pastel - there is a SDK which uses activex but I cant find any \ncode samples and if I want to evaluate the product I would have to purchase the\nfull accounting product , SDK and the SQL database it uses and this is over $2000 AUD.\n\nSo this is why I am asking about other products and how the interface is achieved.\n\nCheers\n\nColin",
"time": "23:46",
"topic": "Accounting Software",
"username": "Colin Haig"
}
] |
Accounting Software
|
[
{
"date": "2010-01-07",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry Got you mixed up. Can you client upload data from a csv. I send my data to excel have it save in a CSV file which is then imported into their bookkeeping program. This any help?",
"time": "23:50",
"topic": "Accounting Software",
"username": "hag"
}
] |
Accounting Software
|
[
{
"date": "2010-01-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Harvey\n\nI am hoping to transfer data in realtime rather than in batches.\n\nCheers\n\nColin",
"time": "03:51",
"topic": "Accounting Software",
"username": "Colin Haig"
}
] |
Accounting Software
|
[
{
"date": "2010-01-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can also use an SDK ( free ) for Quickbooks, but you would have to buy that product. \n\nThere are samples available for working with QB.",
"time": "16:11",
"topic": "Accounting Software",
"username": "TimStone"
}
] |
Accounting Software
|
[
{
"date": "2010-01-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Harvey,\n\n[quote:mkosu07y]I send my data to excel have it save in a CSV file which is then imported into their bookkeeping program.[/quote:mkosu07y]\n\nYou do know that you can save data directly to a CSV file directly from within FW? You don't have to go through Excel.\n\nJames",
"time": "18:48",
"topic": "Accounting Software",
"username": "James Bott"
}
] |
Accounting Software
|
[
{
"date": "2010-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks james I do create a CSV directly from the porgram. Its on the import side when the file to import must be a csv file.",
"time": "01:47",
"topic": "Accounting Software",
"username": "hag"
}
] |
Accounting Software
|
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "saludos al foro:\n\nValla que surgen detalles durante las actualizaciones.\nComo puedo saber para que me sirve la ace32.dll tanto local como en red. He tenido ese detalle con pruebas en red de mis app.\nY asi como esa, las que necesite saber.\n\nEs suponer que algunas libs, requieren su dll, pero existe referencia de ello.\nMe esta marcando detalles de que mi app. no funciona por el ace32.dll\n\nPor ultimo, puedo sin problemas correr mi app. 32 bits en un sistema w7 a 64 bits?\n\nAyuda.",
"time": "03:54",
"topic": "Ace32.dll y mas dll, porque?",
"username": "noe aburto"
}
] |
Ace32.dll y mas dll, porque?
|
[
{
"date": "2013-09-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Noé,\n\nUsas Advantage RDD ? Si no lo usas, no tienes porque enlazar su libreria ni necesitar su DLL.\n\nLas aplicaciones en 32 bits (las que construyes con Harbour y FWH) funcionan perfectamente en Windows de 64 bits <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "08:25",
"topic": "Ace32.dll y mas dll, porque?",
"username": "Antonio Linares"
}
] |
Ace32.dll y mas dll, porque?
|
[
{
"date": "2009-04-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yesterday I changed xHarbour to newest , 1.1.0 version . All is working ok , except this lib . Sorry but in one place one program is using this .. <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( --> . Can any share with me a newest ace32.dll and adsloc32.dll ? \n\n My e-mail : <!-- e --><a href=\"mailto:rimantasu@gmail.com\">rimantasu@gmail.com</a><!-- e --> ... Many thanks in advance !\n\n Regards !",
"time": "18:11",
"topic": "Ace32.lib",
"username": "Rimantas"
}
] |
Ace32.lib
|
[
{
"date": "2009-04-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks to NageswaraRao ! All is working OK now ...\n\n Regards !",
"time": "19:51",
"topic": "Ace32.lib",
"username": "Rimantas"
}
] |
Ace32.lib
|
[
{
"date": "2009-05-06",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Seria muy bueno que los Aceleradores (hotkeys), funcionen correctamente con o sin el parametro 2007 en BTNBMP y BUTTONBMP.\nSe ha trabajado en la apariencia, lo cual esta muy bien y es la razon por la cual me actualice a la 9.04, pero ... siempre hay un pero...se descuido la funcionalidad, a mi me paso hoy, una actualizacion a una aplicacion que funcionaba bien, me dio lios.\n\nsaludos <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "00:11",
"topic": "Aceleradoes (Hotkeys)",
"username": "Blessed"
}
] |
Aceleradoes (Hotkeys)
|
[
{
"date": "2009-05-06",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Blessed,\n\nPuedes proporcionar un pequeño ejemplo de lo que antes funcionaba bien y ahora no va ? gracias <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "08:39",
"topic": "Aceleradoes (Hotkeys)",
"username": "Antonio Linares"
}
] |
Aceleradoes (Hotkeys)
|
[
{
"date": "2009-05-06",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Hello Antonio \n\nthis is my workaround :\n\n\nMaurizio \n\n DEFINE BUTTONBAR oBar SIZE 40,40 OF oDlg\n\n DEFINE BUTTON oBtn RESOURCE 'Add' OF oBar ACTION MsgInfo(\"Ciao\")\n oBtn:cargo := VK_F3\n oDlg:bKeyDown = { | nKey | CheckKey(nKey,oBar)}\n\n\n\nFunction CheckKey(nKey,oBar)\n Local nX,nY\n Local lControl := GetKeyState(VK_CONTROL ) // Ho premuto il tasto control\n IF nKey >= VK_F2 .AND. nKey <= VK_F12 \n IF oBar:lActive\n FOR ny := 1 TO len(oBar:aControls)\n IF oBar:aControls[ny]:cargo # nil .AND. oBar:aControls[ny]:lActive\n if oBar:aControls[nY]:cargo == nKey\n oBar:setfocus()\n oBar:aControls[nY]:Click()\n endif\n ENDIF\n NEXT\n ENDIF\n ENDIF\nReturn nil",
"time": "13:19",
"topic": "Aceleradoes (Hotkeys)",
"username": "Maurizio"
}
] |
Aceleradoes (Hotkeys)
|
[
{
"date": "2009-05-06",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "saludos Antonio:\n\n[quote:ahro8tqs]\nPostby Antonio Linares » Wed May 06, 2009 7:39 am\nBlessed,\n\nPuedes proporcionar un pequeño ejemplo de lo que antes funcionaba bien y ahora no va ? gracias <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\nregards, saludos\n[/quote:ahro8tqs]\n\nMi comentario es especificamente Acerca de los hotkeys, lo de mis clientes son lios en mi codigo, nada que ver con FiveWin <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Smile\" /><!-- s:) -->",
"time": "21:17",
"topic": "Aceleradoes (Hotkeys)",
"username": "Blessed"
}
] |
Aceleradoes (Hotkeys)
|
[
{
"date": "2009-05-07",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Blessed,\n\nme referia a los hotkeys <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nSon los hotkeys de los textos de los botones ?\n\nPuedes mostrar un ejemplo de como los defines ? gracias,",
"time": "01:52",
"topic": "Aceleradoes (Hotkeys)",
"username": "Antonio Linares"
}
] |
Aceleradoes (Hotkeys)
|
[
{
"date": "2009-05-08",
"forum": "To do - WishList / Por hacer - Peticiones",
"text": "Perdon,\n\nAqui el ejemplo:\n\n[code=fw:3ryh6y8q]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> oBtn<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">790</span> ;<br /> <span style=\"color: #0000ff;\">OF</span> oWndChilds<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">4</span><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"&Reporte\"</span> ;<br /> <span style=\"color: #0000ff;\">NAME</span> <span style=\"color: #ff0000;\">\"Data\"</span> <span style=\"color: #0000ff;\">LEFT</span> <span style=\"color: #000000;\">2007</span> ;<br /> <span style=\"color: #0000ff;\">ACTION</span> GOConsultaDoc<span style=\"color: #000000;\">(</span> cMovi_Tipo, cMovi_Razon, cMovi_Docum <span style=\"color: #000000;\">)</span><br /> </div>[/code:3ryh6y8q]\n\nAsumiento que con en el PROMPT la letra seguida de & sera el hotkey como me funciona en la clase BUTTON y claro esta haciendo uso de indicaciones del archivo \"Fivewin.ch\"\n\n[code=fw:3ryh6y8q]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">BTNBMP</span> <span style=\"color: #000000;\">[</span><oBtn><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">ID</span> <nId> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <bar: <span style=\"color: #0000ff;\">OF</span>, <span style=\"color: #0000ff;\">BUTTONBAR</span> > <oBar> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <resource: <span style=\"color: #0000ff;\">NAME</span>, <span style=\"color: #0000ff;\">RESNAME</span>, RESOURCE> <cResName1> ;<br /> <span style=\"color: #000000;\">[</span>,<cResName2><span style=\"color: #000000;\">[</span>,<cResName3><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">[</span>,<cResName4><span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <file: <span style=\"color: #000000;\">FILE</span>, FILENAME, DISK> <cBmpFile1> ;<br /> <span style=\"color: #000000;\">[</span>,<cBmpFile2><span style=\"color: #000000;\">[</span>,<cBmpFile3><span style=\"color: #000000;\">[</span>,<cBmpFile4><span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <action:<span style=\"color: #0000ff;\">ACTION</span>,EXEC,<span style=\"color: #0000ff;\">ON</span> CLICK> <uAction,...> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">MESSAGE</span> <cMsg> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <adjust: <span style=\"color: #0000ff;\">ADJUST</span> > <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">WHEN</span> <uWhen> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <lUpdate: <span style=\"color: #000000;\">UPDATE</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> TOOLTIP <cToolTip> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">PROMPT</span> <cPrompt> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">FONT</span> <oFont> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <lNoBorder: <span style=\"color: #000000;\">NOBORDER</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <layout: <span style=\"color: #0000ff;\">CENTER</span>, TOP, <span style=\"color: #0000ff;\">LEFT</span>, BOTTOM, RIGHT> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <l2007: <span style=\"color: #000000;\">2007</span>> <span style=\"color: #000000;\">]</span> ; <br /> <span style=\"color: #000000;\">[</span> <lTrans: <span style=\"color: #000000;\">TRANSPARENT</span>> <span style=\"color: #000000;\">]</span></div>[/code:3ryh6y8q]\n\nSaludos",
"time": "04:50",
"topic": "Aceleradoes (Hotkeys)",
"username": "Blessed"
}
] |
Aceleradoes (Hotkeys)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.