messages listlengths 1 1 | topic stringlengths 2 60 |
|---|---|
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roger \r\n\r\nI don't think there is a limit on a ( (x)harbour ) variable.. reason I say that is that I am doing fread's and frwites to variables appending them or extracting them from sql tables.. and the size of the binary docu... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roger,\r\n\r\nWhether there is a limit or not, I don't know.\r\n\r\nIn FiveWin or Clipper 16 Bit, the limit was indeed 64K.\r\n\r\nIn Fivewin for Harbour/xHarbour the limit exceeds for sure 1 MB (I already used a variable containi... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Memoread function in both Harbour and xHarbour can read text files larger than 64K. \r\n\r\nHowever functions like memoread and multiline Get seems have limitation of 32K",
"time": "14:49",
"topic": "Char string size limi... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Roger,\r\n\r\nHere you have a working sample that shows that there is no limit (up to 4GB or available memory) for MemoRead():\r\n[code:1b70hycr]\nfunction Main()\n\n local cText := Replicate( \"This is a test\",... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Roger,[quote=\"Roger Seiler\":1rnrbp43]I had previously understood that in 32 bits we don't have the 64k size limit for a char string that we had in 16 bits. However, I saw in the xHarbour documentation for Memoread() that ... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Patrick,\r\n\r\n4GB is the max amount of memory that can be addressed in 32 bits. Its not a Harbour limitation. Its a 32 bits architecture limitation.\r\n\r\nSuch limit does not exist in 64 bits, but again, it has another limit, t... | Char string size limit still 64k? |
[
{
"date": "2008-06-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks Antonio and others for your replies, which were reassuring.\r\n\r\nPatrick, here is a quote from the \\xhb\\cod\\xHarbour.chm functions section, the topic on Memoread()...\r\n\r\n\"• Return value:\r\nMEMOREAD() returns the ... | Char string size limit still 64k? |
[
{
"date": "2008-06-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mystery solved. I was inadvertently looking at an obsolete version of the xHb help file. I actually have the current version of it here, but because it had a different file name than the old, it didn't overwrite the old when I u... | Char string size limit still 64k? |
[
{
"date": "2008-06-30",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Roger Seiler\":2kz6tjrt]Mystery solved. I was inadvertently looking at an obsolete version of the xHb help file.[/quote:2kz6tjrt]Ok! Thanks for the feedback Roger!\r\n\r\n<!-- s;-) --><img src=\"{SMILIES_PATH}/icon_wink.... | Char string size limit still 64k? |
[
{
"date": "2008-11-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\r\n\r\nTeneis alguna rutina de conversion de caracter a numerico para este formato ?\r\n\r\n1.0000000000000000E+03NUM\r\n5.2050000000000000E+02NUM\r\n...\r\n\r\nGracias",
"time": "11:04",
"topic": "Char to numeric",... | Char to numeric |
[
{
"date": "2008-11-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola Carles,\r\n\r\nesa es, si no me equivoco, notacion científica.\r\n\r\n5.2050000000000000E+02NUM puede traducirse como \r\n5.205 x 10 ^ 2 = 5.205 x 100 = 520.5\r\n\r\nla E puede traducirse como x 10 ^\r\n\r\nentonces num = Va... | Char to numeric |
[
{
"date": "2008-11-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Carlos,\r\n\r\nGracias, lo voy a probar. \r\n\r\n[code:2askvw2o]PD: ¿Cuando hacemos la segunda reunión?[/code:2askvw2o]\r\n\r\nJejeje, yo ya la haria mañana mismo, peroooo ya ves q o lo hacemos con un recalenton o no va... <... | Char to numeric |
[
{
"date": "2008-11-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Carles\":3j3ptat5]\nJejeje, yo ya la haria mañana mismo, peroooo ya ves q o lo hacemos con un recalenton o no va... <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->... | Char to numeric |
[
{
"date": "2008-11-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Carlos,\r\n\r\nYa puestos... La operacion inversa como la harias, es decir:\r\n\r\n520.5 -> Pasarlo a 5.2050000000000000E+02NUM\r\n\r\nGracias",
"time": "07:56",
"topic": "Char to numeric",
"username": "Carles"
}
] | Char to numeric |
[
{
"date": "2008-11-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Ahí habría que ser más preciso con las especificaciones de la representación. Normalmente te viene dada la cantidad de dígitos tanto del exponente como de la mantisa. En ciencias la mantisa tiene 1 entero, pero en informática es... | Char to numeric |
[
{
"date": "2008-11-05",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Carlos,\r\n\r\nCarai colega. La explicacion vale una cervecita la próxima.\r\n\r\nSaludotes.\r\nC.",
"time": "08:59",
"topic": "Char to numeric",
"username": "Carles"
}
] | Char to numeric |
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\nIs there any function for xHarbour in order to transform all strings accordingly to a pre defined type ANSI or OEM ?\n\nAntonio",
"time": "17:25",
"topic": "Char type Ansi/Oem",
"username": "AHF"
}
] | Char type Ansi/Oem |
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Did you mean\n\n[code:3d5m33m0]HB_OEMTOANSI()\nHB_ANSITOOEM()[/code:3d5m33m0]\n\n?\n\nEMG",
"time": "19:26",
"topic": "Char type Ansi/Oem",
"username": "Enrico Maria Giordano"
}
] | Char type Ansi/Oem |
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I mean if there is one function to change automaticly the way strings are handled by all rotines in the application.\n\nAntonio",
"time": "20:00",
"topic": "Char type Ansi/Oem",
"username": "AHF"
}
] | Char type Ansi/Oem |
[
{
"date": "2008-01-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I don't know, sorry.\n\nEMG",
"time": "20:29",
"topic": "Char type Ansi/Oem",
"username": "Enrico Maria Giordano"
}
] | Char type Ansi/Oem |
[
{
"date": "2016-12-21",
"forum": "FiveWin for Harbour/xHarbour",
"text": "To All\n\nI have a Sql Primary key value that is char(18) .. When I generate a random key I sometimes get a value like this with leading and trailing spaces .. and that is fine.\n[code=fw:tdo05ny8]<div class=\"fw\" id=\"{CB}\" sty... | Char values automatically left justified building an array |
[
{
"date": "2016-12-22",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:78vclbu0]When I go to load the above character value cEid into an array the char value is truncated and loads as a left justified value[/quote:78vclbu0]\nNo. The value is not trimmed. Please check again.",
"time": "04:5... | Char values automatically left justified building an array |
[
{
"date": "2010-09-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I am using an old version of FWH (2.8 Sep 2006) and have just upgraded xHb to latest 1.2.1 (Rev 6726)\n\nGet the following;\nxLINK: error: Unresolved external symbol '_HB_FUN_CHARTOOEMA referenced from fivehmx.lib(database.obj)'.\... | CharToOemA / OemToCharA |
[
{
"date": "2012-03-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello, \n\nIs it possible to search for characrters within a ComboBox for example, if user types chacters CT it move to CTN instead of moving to TUB (first item that begins with T). I tried the following code with no luck.\n\nREDE... | Character Search within ComboBox |
[
{
"date": "2012-03-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "try this:\n\n\n@ 1 , 1 COMBOBOX oCombo VAR cCombo OF oDLG ITEMS aItems STYLE CBS_DROPDOWN SIZE 100 , 200\n@ 1 , 20 GET oGet VAR cGet OF oDlg\n\noCombo:lIncSearch := .T.\noCombo:oGet:bKeyChar = { | nKey | premi_combo( nKey, oCombo ... | Character Search within ComboBox |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Marco,\n\nI tried this and it did not work. I trying to peform the following within a combobox. For example if the items consists of the following: LOT, LBS, PCS, PKG, PLT, PND, PPL\n\nI want the user to be able press ke... | Character Search within ComboBox |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Darrell,\n\nYou just need to do:\n\noComboBox:lIncSearch = .T.\n\nWith more recent FWH version, it is not needed that the user types the whole word. It searches on each keystroke:\n\n<!-- l --><a class=\"postlink-local\" href=\"ht... | Character Search within ComboBox |
[
{
"date": "2012-08-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\n\nI am using FWHX 11.11; I will try now.\n\nThank you,",
"time": "16:07",
"topic": "Character Search within ComboBox",
"username": "cdmmaui"
}
] | Character Search within ComboBox |
[
{
"date": "2006-10-23",
"forum": "FiveWin for CA-Clipper",
"text": "How does one store and then display characters like ô in DBF files?????\n\nBy the Way, I am reading this in from a txt file on disk.",
"time": "04:29",
"topic": "Character Set",
"username": "grumpy"
}
] | Character Set |
[
{
"date": "2006-10-25",
"forum": "FiveWin for CA-Clipper",
"text": "You may use AnsiToOem() and OemToAnsi()",
"time": "23:36",
"topic": "Character Set",
"username": "Antonio Linares"
}
] | Character Set |
[
{
"date": "2006-10-27",
"forum": "FiveWin for CA-Clipper",
"text": "I use AnsitoOem on reading and OemtoAnsi on display and still get weird characters. Probably something simple but got me stumped.",
"time": "01:26",
"topic": "Character Set",
"username": "grumpy"
}
] | Character Set |
[
{
"date": "2005-12-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nMy application reads dialog controls from resource file (dll) and cannot display characters from Latin Extended A Block (c acute, c caron and z caron) under Windows 98. Only s caron is displayed fine. Application is built u... | Character display problem |
[
{
"date": "2005-12-20",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Aleksandar,\n\nOn those labels where the text is not properly shown, you may define them as \"aaaa\", \"bbbb\", etc. in the resource and then REDEFINE SAY ... PROMPT ... ID ... them to the right text.",
"time": "11:21",
"t... | Character display problem |
[
{
"date": "2015-10-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi Antonio,\nI have a big problem to convert a character field n5 char(20,0) to a dezimal field betrag(N,12,2)\nI get the characterfield with csv conversion from bank.\n-23,58 field n5\nor\n+11.931,76 field n5\nwith the code... | Character to convert in decimal |
[
{
"date": "2015-10-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[code=fw:1p21mcjx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> betrag = val<span style=\"color: #000000;\">(</span>strtran<span style=\"color: #000000;\">(</span>strtran<span style=\"color: #000000;\">... | Character to convert in decimal |
[
{
"date": "2015-10-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Vielen lieben Dank.\nEs funktioniert ausgezeichnet.\nBin auch Kärntner vom Gailtal Presseggersee.\nBin nächste Woche in Kärnten, darf ich Sie auf ein Dinner einladen?\n<!-- e --><a href=\"mailto:arminthurner@gmx.at\">arminthurner@... | Character to convert in decimal |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nIs it possible to show text in the xBrowse cell with characters inserted into it from another code table\n(for example, superscript characters of space or volume. As in Word/Excel) ?",
"time": "10:11",
"topic": "Cha... | Characters from different code tables |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I can tell you this much.\nIf the string appears correctly using \"?\" command, it will appear the same way in XBrowse also.\nFirst, test with\n[code=fw:106tzumk]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">? cT... | Characters from different code tables |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Good. \nIs it possible to use different fonts in the same row (not in different rows) of the cell ?",
"time": "13:48",
"topic": "Characters from different code tables",
"username": "Natter"
}
] | Characters from different code tables |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:31sbh8li] superscript characters of space or volume[/quote:31sbh8li]\nPlease give some examples and let us try now.\nAny character can also be expressed in utf8. Then we can concatenate all utf8 characters",
"time": "16... | Characters from different code tables |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Please first see the functioning of the function\n[code=fw:id5ja91m]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">FW_SayTextHilite<span style=\"color: #000000;\">(</span> hDC, cText, aRect, oFont, nClrText, n... | Characters from different code tables |
[
{
"date": "2023-08-29",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Thanks! This is what I need",
"time": "19:03",
"topic": "Characters from different code tables",
"username": "Natter"
}
] | Characters from different code tables |
[
{
"date": "2013-05-23",
"forum": "Off Topic / Otros temas",
"text": "Amigos, la semana que viene, daré una charla de Git en Barcelona.\nEl evento es gratuito, así que si quereis venir, sois bienvenidos.\n\n<!-- m --><a class=\"postlink\" href=\"http://2704537368061661486_e802e903258c2bed114982092536f75c... | Charla Git en Barcelona |
[
{
"date": "2013-05-23",
"forum": "Off Topic / Otros temas",
"text": "gracias Rafa <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nMe pilla lejos que sino ten por seguro que iria, aunque he de reconocer que ya estoy bastante enamorado de GIT como pre... | Charla Git en Barcelona |
[
{
"date": "2013-05-23",
"forum": "Off Topic / Otros temas",
"text": "Me encantaría poder asistir, pero a mi también me pilla un poco lejos.\n\nOjala se pudiera retransmitir por Internet. Que buenos son los sueños.",
"time": "19:45",
"topic": "Charla Git en Barcelona",
"username": "fgondi"
... | Charla Git en Barcelona |
[
{
"date": "2013-05-24",
"forum": "Off Topic / Otros temas",
"text": "Intentaremos grabar el evento, y ponerlo a disposición de todos.\n\nNo podemos transmitir por Internet, a depender de una Wifi, y no tenemos tampoco la certeza que tendremos acceso a ella, según la sala que nos toque.\n\nSaludos",
... | Charla Git en Barcelona |
[
{
"date": "2013-05-24",
"forum": "Off Topic / Otros temas",
"text": "Rafa\nEl link que has dejado escupe esto :\nInvalid securityToken.\nError 403\n\nQueria informarme del lugar y hora, ya sabes que si puedo, asistité encantado !",
"time": "11:34",
"topic": "Charla Git en Barcelona",
"userna... | Charla Git en Barcelona |
[
{
"date": "2013-05-24",
"forum": "Off Topic / Otros temas",
"text": "Parece que lo han cambiado.\n<!-- m --><a class=\"postlink\" href=\"http://www.barcelonajug.org/2013/05/control-de-versiones-con-git.html\">http://www.barcelonajug.org/2013/05/con ... n-git.html</a><!-- m -->",
"time": "12:42",
... | Charla Git en Barcelona |
[
{
"date": "2013-05-27",
"forum": "Off Topic / Otros temas",
"text": "Gracias Rafa,\n\nEsperaré, deseoso, a la posibilidad de ver el evento en video.",
"time": "13:29",
"topic": "Charla Git en Barcelona",
"username": "fgondi"
}
] | Charla Git en Barcelona |
[
{
"date": "2013-05-29",
"forum": "Off Topic / Otros temas",
"text": "Fantástica charla de git ayer en [url:3ee62s1q]https://foursquare.com/v/espai-jove-la-fontana/4c06d6110e0a2d7f4875ec0c[/url:3ee62s1q] con la gente de #bcnjug @BarcelonaJUG [url:3ee62s1q]http://www.barcelonajug.org/[... | Charla Git en Barcelona |
[
{
"date": "2013-05-29",
"forum": "Off Topic / Otros temas",
"text": "Solo con la presentación y ya estoy alucinando.\nComo he podido vivir sin git.\n\nDeseando poder ver el video.",
"time": "09:21",
"topic": "Charla Git en Barcelona",
"username": "fgondi"
}
] | Charla Git en Barcelona |
[
{
"date": "2013-05-29",
"forum": "Off Topic / Otros temas",
"text": "Una guia sencilla para empezar\n[url:amc2dse3]http://rogerdudler.github.io/git-guide/index.es.html[/url:amc2dse3]\n\nUna cheat sheet o chuleta para tener al lado de nuestra pantalla\n[url:amc2dse3]http://rogerdu... | Charla Git en Barcelona |
[
{
"date": "2013-05-29",
"forum": "Off Topic / Otros temas",
"text": "Juaquin,\n\nMuchas gracias por los enlaces.",
"time": "14:45",
"topic": "Charla Git en Barcelona",
"username": "fgondi"
}
] | Charla Git en Barcelona |
[
{
"date": "2013-05-29",
"forum": "Off Topic / Otros temas",
"text": "Buenas a todos\nTengo en placer de comunicaros que tenéis disponible mi charla sobre Git.\nQue lo disfrutéis\n<!-- m --><a class=\"postlink\" href=\"http://xthefull.blogspot.com.es/\">http://xthefull.blogspot.com.es/</a><!-- m -->",
... | Charla Git en Barcelona ( Video ) |
[
{
"date": "2013-05-30",
"forum": "Off Topic / Otros temas",
"text": "Gracias Rafa!!!",
"time": "12:11",
"topic": "Charla Git en Barcelona ( Video )",
"username": "Carlos Mora"
}
] | Charla Git en Barcelona ( Video ) |
[
{
"date": "2013-05-31",
"forum": "Off Topic / Otros temas",
"text": "Gracias Rafa.\n\nMuy interesante la charla. Lo que mas me ha gustado es el termino \"libertad de operar como quiera\"\nEn mi caso, no he trabajado tampoco con subversion, algunos conceptos no me han quedado claros.\nPero nada que no re... | Charla Git en Barcelona ( Video ) |
[
{
"date": "2013-05-31",
"forum": "Off Topic / Otros temas",
"text": "Por curiosidad ¿ Que control de versiones usas ?",
"time": "13:41",
"topic": "Charla Git en Barcelona ( Video )",
"username": "thefull"
}
] | Charla Git en Barcelona ( Video ) |
[
{
"date": "2013-05-31",
"forum": "Off Topic / Otros temas",
"text": "Buena pregunta.\n\nPrimero, quiero aclarar que en la empresa, programando estoy yo sólo.\n\nen cuanto a la pregunta:\nHago git a mano usando uestudio y uso ficheros de texto, y la agenda y las tareas de outlook/gmail donde voy anotando... | Charla Git en Barcelona ( Video ) |
[
{
"date": "2012-04-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:1clb10a1]http://www.winsupersite.com/blog/supersite-blog-39/windows8/charles-petzold-prepping-metrostyle-programming-windows-book-142903[/url:1clb10a1]",
"time": "08:01",
"topic": "Charles Petzold Prepping... | Charles Petzold Prepping Metro-Style Programming Book |
[
{
"date": "2012-04-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Wow! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nEMG",
"time": "09:54",
"topic": "Charles Petzold Prepping Metro-Style Programming Book",
"username": "Enrico ... | Charles Petzold Prepping Metro-Style Programming Book |
[
{
"date": "2012-04-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The advantage of FiveWin Touch is that we don't need to learn a new language, etc. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nWe simply keep using Harbour and FWH <!-- s:... | Charles Petzold Prepping Metro-Style Programming Book |
[
{
"date": "2012-04-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "The link is broken.",
"time": "17:43",
"topic": "Charles Petzold Prepping Metro-Style Programming Book",
"username": "TimStone"
}
] | Charles Petzold Prepping Metro-Style Programming Book |
[
{
"date": "2012-04-24",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Works fine from here.\n\nEMG",
"time": "18:20",
"topic": "Charles Petzold Prepping Metro-Style Programming Book",
"username": "Enrico Maria Giordano"
}
] | Charles Petzold Prepping Metro-Style Programming Book |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola José:\n\nSegún tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.\n\nAnteriormente este control era muy utilizado para crear graficas... | ChartFX 3.0 |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "José puedes enviarme dicha herramienta.",
"time": "03:24",
"topic": "ChartFX 3.0",
"username": "jnavas"
}
] | ChartFX 3.0 |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Alberto Juárez\":dl1v3ln9]Hola José:\n\nSegún tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.\n\nAnteriormente este control er... | ChartFX 3.0 |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Podrías enviárme esa herramienta a mí también? <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\n\na: <!-- e --><a href=\"mailto:jmurugosa@yahoo.com\">jmurugosa@yahoo.com<... | ChartFX 3.0 |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Alberto me uno al pedido, seria muy util poder utilizarlo desde (x)Harbour por favor dime de donde lo puedo descargar o si no es molestia me puedes pasar la Clase a este correo :\n\n<!-- e --><a href=\"mailto:evertiz@consorcioinf... | ChartFX 3.0 |
[
{
"date": "2006-04-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Lo mismo que todos...\n\nmi correo es\n\n<!-- e --><a href=\"mailto:leandroalfonso111@hotmail.com\">leandroalfonso111@hotmail.com</a><!-- e -->",
"time": "19:28",
"topic": "ChartFX 3.0",
"username": "leandro"
}
] | ChartFX 3.0 |
[
{
"date": "2006-04-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"Alberto Juárez\":2we6cu7l]Hola José:\n\nSegún tengo entendido la versión 3.0 del Chartfx es libre debido a que ya es un producto descontinuado, con gusto puedo enviarla a tu mail privado.\n\nSaludos.[/quote:2we6cu7l]\n\n... | ChartFX 3.0 |
[
{
"date": "2006-04-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Correcto Rene, gracias por la aclaración\n\nSaludos",
"time": "08:02",
"topic": "ChartFX 3.0",
"username": "Alberto Juárez"
}
] | ChartFX 3.0 |
[
{
"date": "2007-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos a todos los colegas de foro:\n\nAhi les va otra de mis \" <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) --> Marcianadas <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" al... | Chat con Fivewin |
[
{
"date": "2007-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"cuatecatl82\":lanaj0cm]Saludos a todos los colegas de foro:\n\nAhi les va otra de mis \" <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\" /><!-- s8) --> Marcianadas <!-- s8) --><img src=\"{... | Chat con Fivewin |
[
{
"date": "2007-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "si mal no recuerdo... el buen amigo Alfredo Arteaga\ntiene implementado algo en sus sistemas....",
"time": "17:35",
"topic": "Chat con Fivewin",
"username": "VeRCE"
}
] | Chat con Fivewin |
[
{
"date": "2007-09-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Es realmente muy muy muy simple de hacer un chat con FW, como digo yo, idiotamente simple.\n\nNecesitamos:\n\nUna tabla dbf compatida con un solo campo tipo caracter, longitud la que consideren\n\nHacen un dialogo que tenga un br... | Chat con Fivewin |
[
{
"date": "2020-04-05",
"forum": "mod_harbour",
"text": "Hello,\nthis first part of the video series shows how to easily integrate an HTML program \ninto a mod harbor program.\nTarget group of these instructions are harbor programmers who take the first steps towards internet programming.\n\nBest regard... | Chat software |
[
{
"date": "2020-04-06",
"forum": "mod_harbour",
"text": "New!\nPart 3 - video chat software directory/hash\n\n [url:12f9370z]https://mybergland.com/fwforum/managerchat3.mp4[/url:12f9370z]",
"time": "22:08",
"topic": "Chat software",
"username": "Otto"
}
] | Chat software |
[
{
"date": "2020-06-10",
"forum": "mod_harbour",
"text": "Chat Manager now updates the input of the various chat clients with AJAX\n\n[img:66ku9crn]https://mybergland.com/fwforum/chatmanager.gif[/img:66ku9crn]",
"time": "23:38",
"topic": "Chat software",
"username": "Otto"
}
] | Chat software |
[
{
"date": "2020-04-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Awesome Mr. Otto.\n\nHow is it possible with so few lines to have an operational chat.\n\nmod_harbour is fantastic but Bottstrap Studio is too <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Sho... | Chat software - mod harbour |
[
{
"date": "2020-04-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello, \nthe first videos are ready:\nTarget group of these instructions are harbor programmers who take the first steps towards internet programming.\n\nIntro Chat Software\n[url:1qzd6dnj]https://mybergland.com/fwforum/ch... | Chat software - mod harbour |
[
{
"date": "2020-04-07",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hello,\nthe first videos are ready:\nTarget group of these instructions are harbor programmers who take the first steps towards internet programming.\n\nIntro Chat Software\n<!-- m --><a class=\"postlink\" href=\"https://mybergla... | Chat software - mod harbour |
[
{
"date": "2020-04-11",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Online food ordering\n\nHello,\nAt the moment, it looks that you must place orders in restaurants with your smartphone after coronavirus restart.Therefore we have to develop an APP to take orders quickly.\nWe start with the searc... | Chat software - mod harbour |
[
{
"date": "2021-06-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Good evening forum,\n\nI am trying to generate an internal chat in a company, and I would need the visual of the messages to be shown in this way:\n\n[img] <!-- m --><a class=\"postlink\" href=\"https://i.ibb.co/2jbyHmn/image.png\... | Chat style, how to make chat bubbles as WhatsApp |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear friends,\nHow can we provide multi-user access to the staff members of a company?\n\nI think a plan like the one I have ($20/month) is not suitable from a privacy standpoint. First, I don't know if it's allowed to share the k... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear friends,\nI am working on a tool to request standardized questions to ChatGPT.\nBest regards,\nOtto\n\n[img:1d0bxe8a]https://mybergland.com/fwforum/fragen.jpg[/img:1d0bxe8a]\n\n\n\n\n[quote:1d0bxe8a]Can you please... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nQuestion out of context, how can you put the logo in the toolbar on the right.\"WinHotel\"\n\n <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "13:37... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nA question about ChatCPT is it possible to educate him to answer questions from my customers in technical support? with a single license?\n\nor even here in the forum Antonio ! him looking for things here, and it would g... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Ari,\n\nYou simply go to chatGPT, make your question and copy here its answer <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "19:41",
"topic": "ChatGPT",
... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ari, this is the code:\nBest regards,\nOtto\n\n[code=fw:32io9dgt]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> oBar:<span style=\"color: #000000;\">bPainted</span> := <span style=\"color: #000000;\">{... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Otto,\n\nThank you very much",
"time": "20:57",
"topic": "ChatGPT",
"username": "Ari"
}
] | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Otto;\n\nI don't think you need to ask for number of tokens used. Responses contain that information already. Here is a typical Json response I get:\n[quote:1zhjkydy]{\n\t\"id\": \"cmpl-XxXXXXXXXXXXXXXXXXX\",\n\t\"object\... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Reinaldo,\n\nThank you. I do not use API; I use copy & paste. My ChatGPT plan costs $20 per month, and I think the requests are not limited. I want to find out how much the API key costs.\n\nWhat are your experiences? It see... | ChatGPT |
[
{
"date": "2023-05-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Yes, Otto. You are right. $0.989 to be exact. I'm still testing and don't really know how much will it cost. \n\nIn real life my customers could make over 100 such fetches per day. I would have to pass on the cost. But, f... | ChatGPT |
[
{
"date": "2023-05-10",
"forum": "FiveWin for Harbour/xHarbour",
"text": "+1 <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "14:48",
"topic": "ChatGPT",
"username": "Antonio Linares"
}
] | ChatGPT |
[
{
"date": "2023-05-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Ari, \n\n [quote:1yrpj7o3]A question about ChatCPT is it possible to educate him to answer questions from my customers in technical support? [/quote:1yrpj7o3]\n\nBut it is already possible now for you to include information in you... | ChatGPT |
[
{
"date": "2023-05-17",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello friends,\n\nBy the way, I found a great plugin for ChatGPT.\nIt creates a button that allows you to select a file and upload it as a knowledge base.\nIt uses async to read the file as text and split it into chunks of size 15... | ChatGPT |
[
{
"date": "2023-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":3cb47qvp]Ari, this is the code:\nBest regards,\nOtto\n\n[code=fw:3cb47qvp]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> oBar:<span style=\"color: #000000;\">bPainted</span> := <span style=\"colo... | ChatGPT |
[
{
"date": "2023-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi, today Openai release, ( im in waitlist), chatgpt4 with web browsing and plugins, with webbrowsing and some hacks with pyton, chatgpt is very usefull. <!-- s:) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":)\" title=\"Sm... | ChatGPT |
[
{
"date": "2023-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello,\n\n[img:33basdc8]https://mybergland.com/fwforum/chatbrowse.jpg[/img:33basdc8]\n\nBest regards,\nOtto",
"time": "14:13",
"topic": "ChatGPT",
"username": "Otto"
}
] | ChatGPT |
[
{
"date": "2023-05-18",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Otto,\n\nAre you using a pluggin ?",
"time": "14:36",
"topic": "ChatGPT",
"username": "Antonio Linares"
}
] | ChatGPT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.