messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2008-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\r\n\r\nIt depends on how Word is calculating this number. In your example you are using a string of \"B\" characters to estimate the width of a string consisting of an string of the same number of characters, but not the sa... | About font. Differences beetween FWH font and Windows font |
[
{
"date": "2008-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi James,\r\nthanks for your reply.\r\n\r\nThis difference is not Word-related but windows-related,\r\n if I use WordPad the problem is the same.\r\n\r\nSee this sample image where I put 107 chars in a A4 row.\r\n<!-- w --><a clas... | About font. Differences beetween FWH font and Windows font |
[
{
"date": "2008-10-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\r\n\r\n>This difference is not Word-related but windows-related, \r\n>if I use WordPad the problem is the same. \r\n\r\n>See this sample image where I put 107 chars in a A4 row. \r\n>www.softwarexp.co.uk/beta/wordpad.png \r... | About font. Differences beetween FWH font and Windows font |
[
{
"date": "2008-02-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\nI am trying to browse an array but I have syntax problems using the oBrw:AddColumn method because I always receive an array access error.\n\nThis is a sample code that show the problem.\nAny ideas about the correct syntax ?\n... | About oBrw:AddColumn |
[
{
"date": "2008-02-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "First line should be: aBrwArray:={}",
"time": "15:11",
"topic": "About oBrw:AddColumn",
"username": "byte-one"
}
] | About oBrw:AddColumn |
[
{
"date": "2008-02-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Oops, I made this error writing on the forum.\n\nThe problem still remain with aBrwArray:={}",
"time": "15:32",
"topic": "About oBrw:AddColumn",
"username": "Marco Turco"
}
] | About oBrw:AddColumn |
[
{
"date": "2008-02-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Change nAt with nArrayAt!?",
"time": "16:04",
"topic": "About oBrw:AddColumn",
"username": "byte-one"
}
] | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "nArrayAt is only available on xbrowse and not on the standard FWH browse.\n\nI made this self contained sample that show the problem\n<!-- w --><a class=\"postlink\" href=\"http://www.softwarexp.co.uk/beta/test.zip\">www.softwarex... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\nWhy don't you just create the columns using commands? I think it'd be easier to read and code. If you still want to do it this way, then why don't you use browse commands but compile with [b:1d238j6d]/p[/b:1d238j6d] switch... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Marco:\n\nYou have several errors in your posted sample, here you are the corrected code[code:nvyvie0b]//----------------------------------------------------------------------------//\n\nfunction Child()\n\n\n local o... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, Manuel,\nit runs fine. Thanks.\n\nThe only problem is that I try to assign the columns through a for cicle I receive an array access error message. \n\nMy code: \n\nfor i:=1 to 2\n\naObjects[6]:AddColumn(TCColumn():New(\"Num\"... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marco Turco\":v0aqbqps]The only problem is that I try to assign the columns through a for cicle I receive an array access error message. \n[/quote:v0aqbqps]\nThen, what you need is something like this:[code:v0aqbqps]funct... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Great !!! Thanks a lot !! \n <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> I never loved the codeblocks..\n\nCould you suggest me what is the correct codeblock code... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marco Turco\":3kqhyoco]Could you suggest me what is the correct codeblock code to make also\na column with the progressive number ?\nLike the command:\nADD TO oBrw DATA oBrw:nAt()[/quote:3kqhyoco]\nFollowing your same exa... | About oBrw:AddColumn |
[
{
"date": "2008-02-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Tried but a Bound Error:Array access appairs.\n\nAny ideas ?\n\nfunction Child() \n\n\n local oWndChild, nI, bData, aObjects[ 10], ; \n aTitles := { \"Num\", \"Title\" } \n\n DEFINE WINDOW oWndChild MDICHILD OF oWnd ; ... | About oBrw:AddColumn |
[
{
"date": "2008-03-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marco Turco\":ferwd3a8]** column with progressive number **\n Objects[6]:AddColumn(TCColumn():New( \"\", {||aObjects[6]:nAt},,,,, 25 ) )[/quote:ferwd3a8]\nShould be:\n [color=red:ferwd3a8]aObjects[/color:ferwd3a8][6... | About oBrw:AddColumn |
[
{
"date": "2008-03-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes. You are right. \n\nI need a glasses !!\n\nMany thanks for your support.",
"time": "09:24",
"topic": "About oBrw:AddColumn",
"username": "Marco Turco"
}
] | About oBrw:AddColumn |
[
{
"date": "2008-03-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\nI have a small problem with bitmaps in the TcBrowse.\n\nDo you know how can I translate: \n\nADD TO oBrw BITMAP DATA aArray[oBrw:nAt(),1]\n\nin code ?",
"time": "21:50",
"topic": "About oBrw:AddColumn",
"username... | About oBrw:AddColumn |
[
{
"date": "2008-03-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\n\n>ADD TO oBrw BITMAP DATA aArray[oBrw:nAt(),1] \n\nTry looking at the PPO file.\n\nJames",
"time": "01:04",
"topic": "About oBrw:AddColumn",
"username": "James Bott"
}
] | About oBrw:AddColumn |
[
{
"date": "2008-03-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "While we need to write this kind of code for twbrowse or tcbrowse, xbrowse made browing arrays very simple.\n\nThe command :\n[code:xvzt2scl]\n@ 0,0 XBROWSE oBrw OF oWnd ARRAY aData AUTOCOLS\n[/code:xvzt2scl]\nis all that is neede... | About oBrw:AddColumn |
[
{
"date": "2008-03-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. NageswaraRao,\nThank very much you for your work continues work for xBrowser.\n \nIn our language exists a proverb:\n“A picture says more than a thousand words”.\nTherefore I would like to ask you if you would be so kind to po... | About oBrw:AddColumn |
[
{
"date": "2008-03-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Solved. Thank you.\n\nI already use the standard tcbrowse at this moment but I am waiting the next FWH stable release to migrate to xBrowse.\n\nThank to your excellent work NageswaraRao.",
"time": "16:30",
"topic": "About ... | About oBrw:AddColumn |
[
{
"date": "2008-03-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\n\nThe current FWH 8.03 build is totally stable <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "10:03",
"topic": "About oBrw:AddColumn",
"username":... | About oBrw:AddColumn |
[
{
"date": "2008-03-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "<!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> Well, I will order you the update on the next days",
"time": "13:44",
"topic": "About oBrw:AddColumn",
"username":... | About oBrw:AddColumn |
[
{
"date": "2013-06-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nI work with native tdatabase fivewin, i want to put all value fields from on record in another like this:\n\noArqCli:GoTop()\nDo While ! oArqCli:Eof()\n oArqCli:Load()\n oCliCli:Blank()\n oCliCli:(All fields) := oA... | About tdatabase |
[
{
"date": "2013-06-01",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Wanderson,\n\nNote that all the field data is stored in a buffer array in database objects. Also, of course, both files must have exactly the same structure. Below is an example of how to copy all the field data.\n\nIt depends on ... | About tdatabase |
[
{
"date": "2013-06-02",
"forum": "FiveWin for Harbour/xHarbour",
"text": "You can also use this code:\n[code=fw:uyd8eb77]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> <br /> oArqCli:<span style=\"color: #000000;\">lBuffer</span> := .t. <span style=\"color: #B9... | About tdatabase |
[
{
"date": "2013-06-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, acopy() would be faster. If you set oArqCli:lBuffer I also suggest saving and restoring its state so as to prevent any possible problems elsewhere.\n\nJames\n\n[code=fw:2bvdrp1m]<div class=\"fw\" id=\"{CB}\" style=\"font-fami... | About tdatabase |
[
{
"date": "2013-06-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "For TDatabase, lBuffer is .t. by default.",
"time": "14:37",
"topic": "About tdatabase",
"username": "nageswaragunupudi"
}
] | About tdatabase |
[
{
"date": "2013-06-03",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rao,\n\n[quote:29twrz70]For TDatabase, lBuffer is .t. by default.[/quote:29twrz70]\n\nYes, I understand that. But if you change something like that it is wise to save and restore it's state. It is wise to do as you suggested, set ... | About tdatabase |
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Is it possible to have the controll tdatapick always displayed on the dialog ? (that is the calendar always visible )\n\nRegards Maurizio",
"time": "14:27",
"topic": "About tdatapick Class",
"username": "Maurizio"
}
... | About tdatapick Class |
[
{
"date": "2006-02-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Maurizio\":hcwgmega]Is it possible to have the controll tdatapick always displayed on the dialog ? (that is the calendar always visible )\nRegards Maurizio[/quote:hcwgmega]\n\nmmmmmmm i dont know, but you can use TCalenda... | About tdatapick Class |
[
{
"date": "2006-02-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Maurizio, can you give me another email adress???\n\ni'm getting this message:\n\n **********************************************\n ** THIS IS A WARNING MESSAGE ONLY **\n ** YOU DO NOT NEED TO RESEND YOUR MESSA... | About tdatapick Class |
[
{
"date": "2008-11-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\r\n\r\nHow I can use tscanner with multi file scanner like hp\r\nscanjet 8460 ?\r\n\r\nI´m using EZTWAIN 2.70 from dosadi but I can get only one page at a\r\ntime, but HP8460 can digitalize 10 pages at a time.\r\n\r\nThanks fo... | About tscanner and multipage scanner |
[
{
"date": "2008-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\r\nMaybe TwainControlX from <!-- m --><a class=\"postlink\" href=\"http://www.ciansoft.com/\">http://www.ciansoft.com/</a><!-- m --> can do the job.\r\nThey have a fully functional trial version.\r\n\r\nRegards,\r\n\r\nGeorge"... | About tscanner and multipage scanner |
[
{
"date": "2008-11-11",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\r\nDosadi supports the multipage acquiring without problem. \r\n\r\nYou only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class.\r\n\r\nObviusly you have to use a multipage format ... | About tscanner and multipage scanner |
[
{
"date": "2008-11-14",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marco Turco\":1mepfvpx]Hi,\nDosadi supports the multipage acquiring without problem. \n\nYou only need to update the Dosadi dll and use the TW_AcquireMultiPageFile method of Rafa Carmona's class.\n\nObviusly you have to u... | About tscanner and multipage scanner |
[
{
"date": "2008-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"George\":1mqpoj4x]Hi,\nMaybe TwainControlX from <!-- m --><a class=\"postlink\" href=\"http://www.ciansoft.com/\">http://www.ciansoft.com/</a><!-- m --> can do the job.\nThey have a fully functional trial version.\n\nRega... | About tscanner and multipage scanner |
[
{
"date": "2008-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi\r\n\r\nI may have a need for multi page scanning extending the customers current application.\r\n\r\nToninhofwi and George can I ask for the code you used please.\r\n\r\nThanks\r\n\r\nJonathan Hodder",
"time": "06:19",
... | About tscanner and multipage scanner |
[
{
"date": "2008-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Jonathan,\r\nI am not using the Multi-pages scanning features, but the manual explain how to use it. \r\nIt seems that Harbour does not support the licensing mechanism of ActiveX controls therefore when ordering TwainControlX send... | About tscanner and multipage scanner |
[
{
"date": "2008-11-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "George\r\n\r\nOK Thanks\r\n\r\nJonathan",
"time": "22:06",
"topic": "About tscanner and multipage scanner",
"username": "Jonathan Hodder"
}
] | About tscanner and multipage scanner |
[
{
"date": "2008-11-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"toninhofwi\":i02v519a]Hi,\n\nHow I can use tscanner with multi file scanner like hp\nscanjet 8460 ?\n\nI´m using EZTWAIN 2.70 from dosadi but I can get only one page at a\ntime, but HP8460 can digitalize 10 pages at a tim... | About tscanner and multipage scanner |
[
{
"date": "2008-11-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Giovany\r\n\r\nUsando eztw32.dll puede ser el más fácil.\r\n\r\nGracias Giovany.\r\n\r\nLo intentaré.\r\n\r\nJonathan",
"time": "05:10",
"topic": "About tscanner and multipage scanner",
"username": "Jonathan Hodder"... | About tscanner and multipage scanner |
[
{
"date": "2006-02-17",
"forum": "FiveWin for CA-Clipper",
"text": "Hi\nLook at the reference\n<!-- m --><a class=\"postlink\" href=\"http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/shlwapi/path/path.asp\">http://msdn.microsoft.com/library/defau ... h/pa... | About very useful path functions (for information) |
[
{
"date": "2006-02-20",
"forum": "FiveWin for CA-Clipper",
"text": "Vlamidir,\n\nThis is the msdn entry:\n<!-- m --><a class=\"postlink\" href=\"http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/shlwapi/path/pathcanonicalize.asp\">http://msdn.microsoft.com... | About very useful path functions (for information) |
[
{
"date": "2006-02-20",
"forum": "FiveWin for CA-Clipper",
"text": "Here you have it working for FWH and Harbour/xharbour:\n(its required to link echo lib\\psdk\\shlwapi.lib)\n[code:m0rul416]\n#include \"Fivewin.ch\" \n\nfunction Main() \n\n local oDlg, cResult \n\n DEFINE DIALOG oDlg \n... | About very useful path functions (for information) |
[
{
"date": "2009-08-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all,\nDo we already need to link it ?\nI checked that using the manifest file there are some problems using transparent images.",
"time": "14:54",
"topic": "About windows xp manifest file",
"username": "Marco Turco"... | About windows xp manifest file |
[
{
"date": "2009-08-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marco,\n\nYou need it if you want XP themed look",
"time": "20:08",
"topic": "About windows xp manifest file",
"username": "Antonio Linares"
}
] | About windows xp manifest file |
[
{
"date": "2009-08-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok, but there is a problem using the transparent clause in a mdi context. The transparent doesn't runs.\n\nThis is a self-contained that show the problem linking the manifest file.\n\nExecutable, bitmap and code at <!-- w --><a cl... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marco\n\nI'm not sure with this change, i didn't test all combinations\n\nOpen \\source\\Bitmap.prg \n\nfind and replace (end of file):\n\n[code=fw:mk4c0uj4]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><sp... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Marco/Daniel:\n\n[quote=\"Daniel Garcia-Gil\":3jg8uumf]I'm not sure with this change, i didn't test all combinations[/quote:3jg8uumf]\nWithout a deep analisys (don't know what DrawPBack function does), I think that can be resol... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi all,\nthank your your reply.\n\nDaniel,\nyour solution is the same as removing the manifest file, the themes doesn't runs anymore in the app.\n\nManuel,\nI tried your solution also but now the problem appairs on all bitmaps whe... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marco...\n\n[quote=\"Marco Turco\":358dk72w]Daniel,\nyour solution is the same as removing the manifest file, the themes doesn't runs anymore in the app.[/quote:358dk72w]\n\nAre you sure???\n\ndo you write \"STATIC\" before ... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Marco:\n[quote=\"Marco Turco\":2y8fx2am]Manuel,\nI tried your solution also but now the problem appairs on all bitmaps where I use the transparent clause.[/quote:2y8fx2am]\n\nYou're right, try this way:[code=fw:2y8fx2am]<div cl... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Manuel,\nit runs fine. Thank you very much.",
"time": "12:42",
"topic": "About windows xp manifest file",
"username": "Marco Turco"
}
] | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Daniel,\nI haven't tested it \nbut as I can see with your turn-around the class tbitmap doesn't know anymore if a theme is running (isapptheme always return .f.)\nso any image is painted without theme style. \n\n[quote=\"Daniel... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marco...\n\nmy change work fine (for now)\n\nplease test it... \n\nsee and download\n\n<!-- m --><a class=\"postlink\" href=\"http://www.sitasoft.com/fivewin/test/thembmp.zip\">http://www.sitasoft.com/fivewin/test/thembmp.zi... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Sorry Daniel, you are right.\n\nHowever with your turn-around and also with the Manual solution there are problems using bitmap on folder because they are now not transparent.\n\nSee <!-- w --><a class=\"postlink\" href=\"http://w... | About windows xp manifest file |
[
{
"date": "2009-08-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marco..\n\n[quote=\"Marco Turco\":2rs63edt]However with your turn-around and also with the Manual solution there are problems using bitmap on folder because they are now not transparent.[/quote:2rs63edt]\nis was for my solut... | About windows xp manifest file |
[
{
"date": "2009-08-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Daniel,\nthank for your reply.\n\nIt is a bit difficult for me to make the change you proposed me due to the fact that I have a lot o folder in my app.\n\nDo you know if there is a way to change the background of this image I d... | About windows xp manifest file |
[
{
"date": "2007-05-05",
"forum": "All products support",
"text": "Salve,\nsto facendo alcune prove con xBrowse e mi sembra decisamente valido,\nho però il problema che avendo un array tipo:\n\naArray:=array(0,3)\n\naadd(aArray,{\"01,\"Pippo\",\"03\"})\naadd(aArray,{\"02\",\"Pluto\",04\"})\n\nanche se ri... | About xBrowse |
[
{
"date": "2007-05-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\nI have a small problem with the xbrowse class managing arrays.\n\nWith an array like this:\n\naArray:=array(0,3) \naadd(aArray,{\"01,\"Pippo\",\"03\"}) \naadd(aArray,{\"02\",\"Pluto\",04\"}) \n\nI need to display only the Fir... | About xBrowse |
[
{
"date": "2007-05-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ok.\nSolved with oBrw:nFreeze:=2\n\n\nRegards,\n\nMarco",
"time": "20:07",
"topic": "About xBrowse",
"username": "Marco Turco"
}
] | About xBrowse |
[
{
"date": "2013-06-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Which version of FWH are you using?",
"time": "08:27",
"topic": "About xbrowse paint",
"username": "nageswaragunupudi"
}
] | About xbrowse paint |
[
{
"date": "2013-06-25",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, someone knows why my xbrowse display a black square in top left?\n\n[img:39gar6e6]http://img849.imageshack.us/img849/7373/ne6e.jpg[/img:39gar6e6]\n\nThanks.",
"time": "20:25",
"topic": "About xbrowse pa... | About xbrowse paint |
[
{
"date": "2013-06-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"nageswaragunupudi\":284ge7wv]Which version of FWH are you using?[/quote:284ge7wv]\n\nfwh1105\n\nthanks",
"time": "01:16",
"topic": "About xbrowse paint",
"username": "Wanderson"
}
] | About xbrowse paint |
[
{
"date": "2021-04-26",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\nhere is tool I created to draw xbrowse-cellborders and any kind of boxes.\nAll results are directly visible\n\nThe download-link \n<!-- m --><a class=\"postlink\" href=\"http://www.service-fivewin.de/DOWNLOADS/Borders.zip\... | About xbrowse-cellborders and boxdrawings |
[
{
"date": "2021-04-28",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I added some more options\nnow it is possible to select a brush and a logo on top\nthe logo can be tested with a transparent-level\n\n[img:g04hyfz7]http://www.service-fivewin.de/IMAGES/Brd1.jpg[/img:g04hyfz7]\n\nth... | About xbrowse-cellborders and boxdrawings |
[
{
"date": "2018-01-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "If Iuse Abpaint to draw a bitmap \n\n ABPaint( ::hDC, y, x, v[1], 255)\n\nthe bitmap wich color must have on the background ?\n\nI ask this because the bitmap is not transparent ( also with manifest) and I not understood why \n\... | Abpaint |
[
{
"date": "2018-01-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Normal,\n\n[code=fw:373omktd]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// AlphaBlending transparencies support in FiveWin! \\SAMPLES\\TESTAB.PRG</span><br /><br /><span s... | Abpaint |
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "Es posible tener la aplicacion instalada en Archivosd de Programa y las dbf en Mis documentos del PPC ?\n\nCOmo tendria que poner el camino para poder abrir esos ficheros ?\n\nUn saludo\nJuan Jose",
"time": "11:19",
"topic": "Ab... | Abriendo ficheros |
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "\"\\My Documents\\Mi.dbf\"",
"time": "11:38",
"topic": "Abriendo ficheros",
"username": "Antonio Linares"
}
] | Abriendo ficheros |
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "[code:3bq5bhs4] SET( _SET_DEFAULT, '\\My Documents\\')[/code:3bq5bhs4]",
"time": "11:45",
"topic": "Abriendo ficheros",
"username": "Biel EA6DD"
}
] | Abriendo ficheros |
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "Antonio, me refiero a que los ficheros se encuentran en Mis Documentos del ppc.\n\nSaludos\nJuan Jose",
"time": "11:48",
"topic": "Abriendo ficheros",
"username": "juanjogascem"
}
] | Abriendo ficheros |
[
{
"date": "2007-05-09",
"forum": "FiveWin para Pocket PC",
"text": "Vale, gracias\n\nUn saludo",
"time": "11:52",
"topic": "Abriendo ficheros",
"username": "juanjogascem"
}
] | Abriendo ficheros |
[
{
"date": "2017-03-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estimados\n\nComo puedo abrir correos guardados como archivos .MSG\n\nHe intentado asi\n[code=fw:3ib3se4y]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /> ShellExecute<span style=\"color: #000000;\">(<... | Abrir .MSG de Outlook |
[
{
"date": "2017-03-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Prueba,\n\nShellExecute(, \"open\", \"D:\\Sistemas\\AcrSoft\\correo.msg\",\"D:\\Sistemas\\AcrSoft\", \"\", 1 )\n\nEn mi sistema, funciona bien",
"time": "12:06",
"topic": "Abrir .MSG de Outlook",
"username": "fgondi"
... | Abrir .MSG de Outlook |
[
{
"date": "2017-03-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Fernando.\n\nFunciona perfecto.",
"time": "16:33",
"topic": "Abrir .MSG de Outlook",
"username": "acuellar"
}
] | Abrir .MSG de Outlook |
[
{
"date": "2010-01-19",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola amigos no se como abrir un archivo PDF en la version 9.03\n\n#include \"FiveWin.ch\"\nlocal oWnda, oActiveX\nDEFINE WINDOW oWnda title \"Contratos La Quinta\" mdichild\n oActiveX = TActiveX():New( oWnda, \"AcroPDF.PDF.1\" ... | Abrir Archivos PDF VER 9.03 |
[
{
"date": "2010-01-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Dioni:\n[quote=\"Dioni\":6k6bulme]Hola amigos no se como abrir un archivo PDF en la version 9.03[/quote:6k6bulme]\nEl siguiente ejemplo (el tuyo con pequeños cambios) funciona perfectamente con FWH 9.03\n[code=fw:6k6bulme]<d... | Abrir Archivos PDF VER 9.03 |
[
{
"date": "2010-01-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola\n\nAlguna sugerencia como hacerlo con [b:2lwbtvrn]FoxIt Reader[/b:2lwbtvrn] y active X",
"time": "13:33",
"topic": "Abrir Archivos PDF VER 9.03",
"username": "Patricio Avalos Aguirre"
}
] | Abrir Archivos PDF VER 9.03 |
[
{
"date": "2010-01-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ya sé que no es exactamente lo que se pregunta, pero por si acaso te es útil, yo hace tiempo que no utilizo activeX para abrir ficheros pdf,\n\nme pasé a ShellExecute( ,\"open\", cFicheroPdf,,,1 )\n\ny desde entonces no ten... | Abrir Archivos PDF VER 9.03 |
[
{
"date": "2007-04-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Olá...\n\nÉ possível abrir esses arquivos com a Classe TActiveX ?\n\nSaludos",
"time": "20:37",
"topic": "Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX",
"username": "Valdir"
}
] | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2007-04-17",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola.\n¿Por qué no usas Freeimage?\n\nRevisa Testimg.prg en los ejemplos de FWH",
"time": "21:46",
"topic": "Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX",
"username": "fleal"
}
] | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2007-04-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Olá FLeal...\n\nObrigado pela resposta...\n\nJá havia usado o Freeimage, porém na verdade, gostaria de abrir qualquer tipo de Imagem (BMP,JPG,TIF,GIF), usando os recursos do \"image.preview\" do Windows, através da Classe TActive... | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2007-04-18",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Olá...\n\nSeria esse o Imaging Preview que gostaria de usar com a TActiveX. \nSó não sei se será possível...\n\n[img:10wlk44g]http://br.geocities.com/valdirbrd/img001.jpg[/img:10wlk44g]\n\nSaludos",
"time": "2... | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2007-05-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos Cordiales Colegas!!!\n\n\nBueno realmente por lo que mas o menos te entiendo creo que te refieres a algo como esto!!\n\n[code:31j59rzx]\n#INCLUDE \"FIVEWIN.CH\"\n\nPROCE MAIN()\n LOCAL oDlg,oAdj,cAdj:=SP... | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2007-05-30",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Olá Daniel\n\nÉ exatamente oque estava precisando...\n\nFuncionou perfeitamente.\n\nGracias.\n\nSaludos",
"time": "13:24",
"topic": "Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX",
"username": "Valdir"
}
] | Abrir Arquivos (*.TIF, *.BMP e *.JPG) com TActiveX |
[
{
"date": "2011-06-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola foro,\n\nEstoy programando por 1ra vez con ventanas en lugar de dialogos y lo que hago cada vez que el usuario abre la misma ventana que contiene un browse, abre los mismos 10 DBFs con diferente alias para cada ventana.\n\nM... | Abrir DBFs al abrir ventanas |
[
{
"date": "2011-06-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola...\nYo uso una funicón que me retorna un número de alias disponible.\nDe ese modo, sin importarme el nombre de alias, armo el nombre dentro de una variable.\nLuego hago SELECT (cMiAlias) y listo.\n\nSaludos, Esteban.",
"... | Abrir DBFs al abrir ventanas |
[
{
"date": "2011-06-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Me parece que lo más sano es abrir las BBDD al comienzo de la ejecución del aplicativo y cerrarlas cuando salgo del programa. Así he trabajado siempre sin ningún problema.\nSalu2",
"time": "18:29",
"topic": "Abrir DBFs al... | Abrir DBFs al abrir ventanas |
[
{
"date": "2011-06-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Rodolfo,\n\nNo sólo es sano, sino imprescindible.\n\nCada browse es necesario que tenga su propio area de trabajo porque de lo contrario sobre cualquier refresco del browse, por ejemplo movimiento de ventanas superpuestas, \"dest... | Abrir DBFs al abrir ventanas |
[
{
"date": "2011-06-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Esteban, Horacio: Gracias, asi lo hago pero no iba por ahi la pregunta.\n\nhmPaquito: Esa era exactamente mi duda y en efecto llevo un control de los DBFs que se abren para cada ventana para cerrarlos al cerrar la ventana y dejar... | Abrir DBFs al abrir ventanas |
[
{
"date": "2014-02-21",
"forum": "FiveWin para CA-Clipper",
"text": "Hola amigos:\n\nTengo la necesidad de abrir una DLL hecha con Workshop de 16bits y ninguna PC a 16 bits, alguna alma\ncaritativa que pueda abrir la DLL y exportarla a 32 ya sea en formato RC o RES o ambos si es posible?\n\nSi me dan su... | Abrir DLL de 16 bits |
[
{
"date": "2014-02-21",
"forum": "FiveWin para CA-Clipper",
"text": "Mandamela, creo que en este fin de semana podré\nnavarro.cristobal at gmail.com\nAvisame cuando me la envies",
"time": "21:50",
"topic": "Abrir DLL de 16 bits",
"username": "cnavarro"
}
] | Abrir DLL de 16 bits |
[
{
"date": "2014-02-21",
"forum": "FiveWin para CA-Clipper",
"text": "Cristóbal:\n\nEnviada, muchas gracias\n\nSaludos",
"time": "22:40",
"topic": "Abrir DLL de 16 bits",
"username": "Armando"
}
] | Abrir DLL de 16 bits |
[
{
"date": "2014-02-22",
"forum": "FiveWin para CA-Clipper",
"text": "Maese... a los años...\nEchale un ojo a este enlace\n<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14830&hilit=convertir+a+dll+de+32+bits\">viewtopic.php?f=6&t=14830&hilit=convertir+... | Abrir DLL de 16 bits |
[
{
"date": "2014-02-22",
"forum": "FiveWin para CA-Clipper",
"text": "Armando, mira tu correo",
"time": "12:16",
"topic": "Abrir DLL de 16 bits",
"username": "cnavarro"
}
] | Abrir DLL de 16 bits |
[
{
"date": "2014-02-22",
"forum": "FiveWin para CA-Clipper",
"text": "Willi, el problema puede estar en que cada vez menos contamos con SO de 16/32 bits, y no se puede ejecutar Workshop en 64",
"time": "12:34",
"topic": "Abrir DLL de 16 bits",
"username": "cnavarro"
}
] | Abrir DLL de 16 bits |
[
{
"date": "2014-02-22",
"forum": "FiveWin para CA-Clipper",
"text": "Cristóbal:\n\nDescargado y funcionando al 100%, muy agradecido con tu apoyo,\nte debo unas tapas <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nSaludos\n\nWilli:\n\nEfectiva... | Abrir DLL de 16 bits |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.