messages
listlengths 1
1
| topic
stringlengths 2
60
|
|---|---|
[
{
"date": "2018-07-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buen día,\n\nEsto es interesante \n\n<!-- m --><a class=\"postlink\" href=\"https://www.embarcadero.com/products/cbuilder/starter?utm_source=article&utm_medium=email&utm_campaign=article-180719-DelphiC++BuilderCE\">https://www.embarcadero.com/products/cb ... +BuilderCE</a><!-- m -->\n\nSlds",
"time": "15:50",
"topic": "C++Builder® - Community Edition",
"username": "nnicanor"
}
] |
C++Builder® - Community Edition
|
[
{
"date": "2018-07-23",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nGood news \n\n<!-- m --><a class=\"postlink\" href=\"https://www.embarcadero.com/products/cbuilder/starter?utm_source=article&utm_medium=email&utm_campaign=article-180719-DelphiC++BuilderCE\">https://www.embarcadero.com/products/cb ... +BuilderCE</a><!-- m -->\n\nRegards,",
"time": "15:51",
"topic": "C++Builder® - Community Edition",
"username": "nnicanor"
}
] |
C++Builder® - Community Edition
|
[
{
"date": "2016-07-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Embarcadero ha liberado la version mas reciente de su compilador c++, en reposicion de la anterior version, que era la antigua y muy querida borland c++5.5,\nesta nueva version es la la que esta incluida en el rad 10.1 con código \n\n[url:21nwen6i]https://www.embarcadero.com/free-tools/ccompiler[/url:21nwen6i]\n\nya muchos tenemos la version de bcc 5.8, 6.00, 7.00, 7.10, 7.20 pero esta es en cierta forma ilegal ya que la extraemos de una version demo del ide de embarcadero, pero \nen esta ocacion ellos liberan esa parte de su producto para que personas como nosotros que trabajamos en modo consola la usemos sin ninguna traba.\n\nsalu2\ncarlos vargas\n--------------------------------------------------------------------\n[quote:21nwen6i]Installing and Using the Embarcadero C++ 10.1 ‘Berlin’ Compiler and\nCommand-line Tools\n==================\n\nHow do I install the Embarcadero 10.1 Berlin Compiler and command-\nline tools? This document takes a look at what's contained in the free\ndownload and shows how you can start building programs.\n\nContents:\n# Introduction and basic information\n# Detailed information about the compiler, including a list of all included\n tools \n# Resources\n# Putting it all together - using the compiler \n# Detailed installation instructions (check this if you’re having trouble) \n# Final words\n# Acknowledgements\n\nIntroduction\n============\n\nThe Embarcadero 10.1 Berlin C++ compiler is a free, Clang-based compiler for\n32-bit Windows. The download includes a number of other tools, as well as the\nDinkumware STL and headers and import libraries required to build both\ncommand-line and GUI Windows applications.\n\nYou are welcome and encouraged to use the tools, including for learning C++ or\nensuring C++ code you maintain is compatible with this compiler.\n\n\nBasic Information\n-----------------\nTo install the Embarcadero C++ 10.1 Berlin Free Command-line Tools, simply\nright-click on the downloaded zip file, click ‘Extract All…’ in the popup\nmenu, and choose all of the default options. You need to add the ‘bin’ folder\nto your system path, and then the compiler can be used immediately. If you are\nnot sure how to do that, instructions are included at the end of this\ndocument.\n\nUse of the C++ 10.1 Berlin compiler assumes the user is comfortable working\nwithin a console interface.\n\nTypically, the user will run an application such as Notepad or Sublime Text to\nactually write their program (an editor is not supplied with the compiler).\nWhen the user wishes to compile source code, they save the file out as\n\"filename.cpp\" and then use the command-line tools from the command prompt to\ncompile and create an executable. Like so:\n\tbcc32c filename.cpp\n\nThe first argument is name of the compiler tool, and the second argument\ncontains the C++ source file. This application will attempt to compile the\nsource code and will notify the user of any errors in the code. If no errors\nare found it will create an executable. To display information regarding the\nvarious switches, type\n\tbcc32c -h\n\nThere are a wide variety of switches. To get further information on any\nswitch, add that switch after the “-h”. For example, to get more information\non “-a” (set data alignment boundary), type\n\tbcc32c -h -a\n\nTesting the compiler\n--------------------\nOpen a console window:\n\tStart | Run... (or click the search box in Windows 10)\n\tType \"cmd\" into the field [Enter]\n\nCreate a directory or navigate to where you want to store your source, for\nexample:\n\tType \"cd\"\n\tType \"mkdir MySource\"\n\tcd Mysource\n(Now in “c:\\users\\You\\MySource” or similar depending on your version of\nWindows.)\n \nCreate a new source file, for example:\n\tType 'notepad hello.cpp' to edit in Windows Notepad. It will ask if you\n\twant to create a new file; click Yes.\t\n\tPaste or type the following code in the editor:\n\t\t#include <iostream>\n\t\tint main(void)\n\t\t{\n\t\t\tstd::cout << \"Hello world!\" << std::endl;\n\t\t\treturn 0;\n\t\t}\n\tSave the changes (File menu, Save, in Notepad).\n\nCompile the program to create an executable:\n\tIn the console window, type\n\t\tbcc32c hello.cpp\n\nFinally, you can run the application you created. In the console window, type\n\thello\n(The output will appear below your last command line.)\n\nDetailed information about the compiler and command-line tools\n--------------------------------------------------------------\n\nFirst, let's look at the directory structure. The root by default is called\nBCC101. Under this directory you will find:\n\tBin\n\tInclude\n\tLib \n\tBin\n\nBin is short for binaries. Under this directory you will find all of the\ncommand-line tools (as well as RTL dynamic libraries). There are a wide\nvariety of tools, many more than just the compiler and linker.\n\nAll tools are command-line; that is, they must be run from a command prompt.\n\nComplete list of tools in \\bin\n------------------------------\n\nbcc32c\nThis is the compiler itself. Use the -h option to see all options. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/BCC32C\">http://docwiki.embarcadero.com/RADStudi ... /en/BCC32C</a><!-- m --> Compiler\n\tConfiguration file\n\tThe compiler also uses a configuration file, bcc32c.cfg. The files contain\n\toptions that would otherwise be passed on the command line. The download\n\tcontains a configuration file with default values that should work on your\n\tsystem.\n\ncpp32c\nThis is a C++ preprocessor. It allows you to see\nthe initial operations performed on C or C++ files before they are compiled,\nie expansion of #includes and processing of #defines. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/CPP32.EXE,_the_C_Compiler_P\">http://docwiki.embarcadero.com/RADStudi ... Compiler_P</a><!-- m -->\nreprocessor\n\ngrep\nA tool for searching text files (such as source code) for matching strings.\nSee\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/GREP.EXE,_the_text_search_u\">http://docwiki.embarcadero.com/RADStudi ... t_search_u</a><!-- m -->\ntility\n\nilink32\nThe linker, which combines compiler-output object files into an\nexecutable file. It is normally invoked by the compiler. See <!-- m --><a class=\"postlink\" href=\"http://docwiki.em\">http://docwiki.em</a><!-- m -->\nbarcadero.com/RADStudio/Berlin/en/ILINK32.EXE,_the_32-bit_Incremental_Linker\n\nimplib\nThis takes either a DLL or a module definition file as input, and creates an\nimport library (.lib). For more information, see\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/IMPLIB.EXE,_the_Import_Libr\">http://docwiki.embarcadero.com/RADStudi ... mport_Libr</a><!-- m -->\nary_Tool_for_Win32\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/Linking_DLLs_(C++\">http://docwiki.embarcadero.com/RADStudi ... _DLLs_(C++</a><!-- m -->)\n\nmake\nA tool used to run commands based on file dependencies, usually used to help\ncompile a project of many source files. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/MAKE.EXE\">http://docwiki.embarcadero.com/RADStudi ... n/MAKE.EXE</a><!-- m --> \n\ntdump\nDisplays a large amount of information about the structure of a .exe, .lib or\n.obj file, including debug information, exports, and more. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/TDUMP.EXE,_the_File_Dumping_Utility\">http://docwiki.embarcadero.com/RADStudi ... ng_Utility</a><!-- m -->\n\ntlib\nManages libraries (.lib files) created from several object files (.obj.) You\ncan create a library from several .obj files, add or remove .obj files,\nreplace .obj files, etc. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/TLIB.E\">http://docwiki.embarcadero.com/RADStudi ... /en/TLIB.E</a><!-- m -->\nXE,_the_Library_Manager\n\ntouch\nSets the last-modified date and time of one or more files to the current time\nor a specified time. See\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/TOUCH.EXE\">http://docwiki.embarcadero.com/RADStudi ... /TOUCH.EXE</a><!-- m -->\n\nFor general information about all command-line utilities, see\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/Command-\">http://docwiki.embarcadero.com/RADStudi ... n/Command-</a><!-- m -->\nLine_Utilities_Index\n\nInclude\n-------\nThis directory contains all of the header files for the RTL, the STL\n(Dinkumware) and the Windows SDK.\n\nlib\\win32c\nThere are two subfolders, debug and release. These contain all of the static\nand import library files and startup code modules for debug or release builds.\n\nResources\n=========\n\nEmbarcadero has extensive help online in the ‘docwiki’ for the tools,\nlibraries, C++ itself, and the larger product this compiler is a small part\nof, C++Builder. You can find it at\n<!-- m --><a class=\"postlink\" href=\"http://docwiki.embarcadero.com/RADStudio/Berlin/en/Main_Page\">http://docwiki.embarcadero.com/RADStudi ... /Main_Page</a><!-- m -->\n\nThere is also a Google Plus community at\n<!-- m --><a class=\"postlink\" href=\"https://plus.google.com/communities/118315259185736124693\">https://plus.google.com/communities/118 ... 5736124693</a><!-- m -->\n\nEmbarcadero has regular blogs and articles on the Community site:\n<!-- m --><a class=\"postlink\" href=\"http://community.embarcadero.com/blogs\">http://community.embarcadero.com/blogs</a><!-- m --> and <!-- m --><a class=\"postlink\" href=\"http://community.embarcadero.com/\">http://community.embarcadero.com/</a><!-- m --> \n\nA very wide range of blogs on the general RAD Studio family (including\nC++Builder’s sister product, Delphi) can be found at <!-- m --><a class=\"postlink\" href=\"https://www.beginend.net/\">https://www.beginend.net/</a><!-- m -->\n\nWe also recommend <!-- m --><a class=\"postlink\" href=\"http://www.cplusplus.com/\">http://www.cplusplus.com/</a><!-- m --> and <!-- m --><a class=\"postlink\" href=\"http://cppreference.com/\">http://cppreference.com/</a><!-- m --> as\nexcellent resources for learning C++.\n\nThis compiler is for Windows 32-bit only. If you would like to compile, debug\netc for Windows 64-bit, iOS, Android, or OSX in addition to Win32 (and\npossibly even more platforms by the time you read this), you can find the full\ncompiler and IDE suite as part of C++Builder:\n<!-- m --><a class=\"postlink\" href=\"https://www.embarcadero.com/products/cbuilder\">https://www.embarcadero.com/products/cbuilder</a><!-- m -->\n\nWe specialise in cross-platform C++, where you can compile, debug and deploy\nfor many platforms using one IDE and one compiler framework. This includes UI\ndesign - there is no need to create separate UIs in platform-specific\nsoftware; create it once (with per-platform tweaks using the multi-device\ndesigner, including platform-native controls) and save yourself a lot of time.\nWe also have world-class database and enterprise services frameworks, and all\nthis can be used with the same source on all platforms. This greatly\naccelerates your app development, and we’re very proud of it. We encourage you\nto check it out at <!-- m --><a class=\"postlink\" href=\"https://www.embarcadero.com/products/cbuilder\">https://www.embarcadero.com/products/cbuilder</a><!-- m -->\n\nOkay, advertising over now. (But seriously, go have a look.)\n\nPutting it all together\n=======================\n\nSo, now that you are armed with all this information you are probably\nwondering \"How do I turn my source code into a program?\" We will start with\nthe simplest case of a single source file, console program. Here is the source\ncode of a file called simple.cpp that I wrote in the text editor, Notepad:\n\n\t#include <stdio.h> \n\tint main(void)\n\t{\n\t\tprintf(\"Output from running program\");\n\t\treturn 0;\n\t}\n\nTo build this into a program we only need to call the compiler and tell it the\nfilename of the C++ file to compile:\n\tbcc32c simple.cpp\n\nThe resulting program is called simple.exe and can be run by typing “simple”\nat the command-line. You can change the output name by using the “-o” switch\nand specifying a different filename.\n\nNow, let's look at the case of a console program with two source modules.\nsimple.cpp will contain our entry point main and will call a function defined\nin the other module, funcs.cpp. The first example was very simple, barely\nworth calling C++, so this example includes a couple of C++11 features.\n\nsimple.cpp:\n\t#include \"funcs.h\" \n\tint main(void) \n\t{\n\t\tconst std::string str = GetMessage(); \n\t\tstd::cout << str << std::endl;\n\n\t\tconst int a = 4;\n\t\tPrintResult([=]() { return a + str.length(); }); \n\t}\n\nfuncs.h:\n\t#include <string> \n\t#include <iostream>\n\n\ttemplate <typename F> \n\tvoid PrintResult(F f) { std::cout << f() << std::endl; }\n\tstd::string GetMessage();\n\nand funcs.cpp:\n\t#include \"funcs.h\"\n\n\tstd::string GetMessage()\n\t{\n\t\treturn \"Hello world.\";\n\t}\n\nTo build this, simply add funcs.cpp to the previous compiler command-line as\nsuch:\n\tbcc32c simple.cpp funcs.cpp\n\nThe output simple.exe file will be generated and you can run it from the\ncommand line, where it will print a message.\n\nSo what happens if you have a bunch of different include and library\ndirectories, or hundreds of source files? As you can imagine the command-line\nfor this would be huge. You have two choices: wrap up all of these commands\ninto a batch file, or write a makefile to use with the ‘make’ utility, which\nis included in the bin folder.\n\nYou can also use CMake specifying the Borland makefile generator. Here is an\nexample batch script (.bat file):\n\tREM Make sure cmake.exe, bcc32c.exe and borland make.exe are in the Path\n\t@echo off\n\tmkdir build\n\tcd build \n\tcmake -G\"Borland Makefiles\" -DCMAKE_CXX_COMPILER=\"bcc32c.exe\"\n\t\t-DCMAKE_C_COMPILER=\"bcc32c.exe\" -DCMAKE_VERBOSE_MAKEFILE=1 ..\n\tmake\n\tcd ..\n\techo CMakeBCC: Results available in 'build' folder\nWhen copy/pasting, make sure the “cmake -G…” line (with several -DCMAKE_ flags)\nis all on one line.\n\nDetailed Installation\n=====================\n\nIf you’re having trouble installing, follow the instructions in this section.\n\nExtracting the zip file\n-----------------------\n\nUnzip the downloaded file to any location. For example, it could be unzipped\nto c:\\BCC101\\. Do this by right-clicking on the file in Explorer, selecting\n“Extract To…” on the popup menu, and clicking Ok until it’s complete.\nConfiguring the system path The location of the compiler must be in your\nsystem path.\n\nFind the location where you unzipped the downloaded file. This should be a\nfolder with three subfolders (\\bin, \\include and \\lib.) For example, if you\nextracted to the c:\\ drive you may have a folder ‘c:\\BCC101\\bin’. You can\nextract the downloaded file to any location, and you can copy/paste the\nlocation from Explorer by clicking in the path edit box and selecting the\ntext, then pressing Ctrl+C or right-clicking and choosing Copy.\n\nAdd a path reference to the Environment variables\n-------------------------------------------------\n\nOpen the system properties:\n\tIn Windows 7: Using the mouse, right-click on the \"My Computer\" icon (on\nyour desktop), and choose \"Properties\". In Windows 10: Open an Explorer\nwindow. Using the mouse, right-click on “This PC” and choose “Properties”.\n\tThen, click on “Advanced system settings” in the left-side pane.\n\tClick on the \"Advanced\" tab.\n\tClick on the \"Environment Variables...\" button.\n\tHighlight the \"Path\" System variable (bottom). Click on the \"Edit...\"\n\tbutton.\n\tAdd the path to the \\bin folder:\n\t\tIn Windows 7: Append the line with \";c:\\BCC101\\BIN;\" (or your\n\t\tinstallation folder)\n\t\tIn Windows 10: Click the “New” button, and enter “c:\\BCC101\\bin” in\n\t\tthe text box that appears below the other items in the list. Press\n\t\tEnter.\n\tClick OK (in the \"Edit System Variables\" (Windows 7) or “Edit environment\n\tvariables” (Windows 10) dialog)\n\tClick OK (in the \"Environment Variables\" window) and click OK (in the\n\t\"System Properties\" window)\n\nTesting the compiler is in the system path\n------------------------------------------\n\nOpen a console window:\n\tStart | Run... (or click the search box in Windows 10)\n\tType \"cmd\" into the field [Enter] (or 'command', if 'cmd' is not found)\n\nNow, in the console window, type the following:\n\tbcc32c \nYou should see text in the console,\n\tEmbarcadero C++ 7.20 for Win32 Copyright (c) 2012-2016 Embarcadero\n\tTechnologies, Inc.\n\nIf you do not, double-check that the system path settings point to the “bin”\nfolder where you extracted the download zip file.\n\nFinal words\n===========\n\nWe hope you find these tools useful. Go forth and code!\n\nAcknowledgements\n================\n\nThis was based on a previous community article on the older Embarcadero\nDeveloper Network (EDN) web site written by John Thomas, further modified by\nMarco Cantù, further modified by David Millington.\n[/quote:21nwen6i]",
"time": "17:07",
"topic": "C++Compiler - FREE TOOL",
"username": "carlos vargas"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-22",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias\n\nCarlos.\n\nLo probaré.\n\nSaludos,\n\nAdhemar",
"time": "20:55",
"topic": "C++Compiler - FREE TOOL",
"username": "acuellar"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Comenzaremos a usarlo después de publicar FWH 16.06",
"time": "07:35",
"topic": "C++Compiler - FREE TOOL",
"username": "Antonio Linares"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Excelente Maestro.\n\nSaludos\n\nRuben Dario Fernandez",
"time": "15:51",
"topic": "C++Compiler - FREE TOOL",
"username": "D.Fernandez"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "He conseguido compilar un programa sin demasiados problemas. El ejecutable en bcc7 salia de 6265kb. con bcc101 sale de 6197kb. Casi igual ..\nEn velocidad , aparentemente la misma a pesar de ser distinto compilador .\nHe usado xmate para compilar y la linea de compilacion por si alguien la quiere es :\n\n%C_BIN_INSTALL%\\Bcc32c.Exe -cc1 -triple i686-pc-win32-omf -w\n -emit-obj\n -disable-llvm-verifier \n -mrelocation-model static \n -fno-merge-all-constants \n -fmath-errno \n -masm-verbose -v -ffunction-sections -nobuiltininc\n -I%HB_INC_INSTALL%\n -I%C_INC_INSTALL%\n -I%C_INC_INSTALL%\\windows\\crtl\n -I%C_INC_INSTALL%\\dinkumware64\n -I%C_INC_INSTALL%\\windows\\crtl\n -I%C_INC_INSTALL%\\windows\\sdk\n -O2\n -ferror-limit 50 -fmessage-length 126 -fno-use-cxa-atexit\n -fborland-extensions -std=c++11 -fcxx-exceptions -fexceptions -fseh \n -fdiagnostics-show-option\n -fcolor-diagnostics \n -backend-option -vectorize-loops \n -cxx-abi borland \n-o%OBJ% -x c++ %C% \n\n\n\nSaludos.",
"time": "17:50",
"topic": "C++Compiler - FREE TOOL",
"username": "mastintin"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "eso es un ejecutable en modo consola, no es asi?\npudieras compartir el archivo env de xmate por favor.\n\nsalu2\ncarlos vargas",
"time": "18:14",
"topic": "C++Compiler - FREE TOOL",
"username": "carlos vargas"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Como indica Manuel el .EXE es un poco mas pequeño.\n\nCompila perfecto con UEstudio.\n\nSaludos,\n\nAdhemar",
"time": "19:07",
"topic": "C++Compiler - FREE TOOL",
"username": "acuellar"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-25",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"carlos vargas\":2wygpmkf]eso es un ejecutable en modo consola, no es asi?\npudieras compartir el archivo env de xmate por favor.\n\nsalu2\ncarlos vargas[/quote:2wygpmkf]\n\nNo es un ejecutable fivewin . Mañana cuando llegue a la tienda te comparto el archivo env sin problema ....\nPor cierto he detectado un problema con activeX que no he solucionado aún ( a ver si lo consigo mañana ) , lo demás bien de momento .",
"time": "20:38",
"topic": "C++Compiler - FREE TOOL",
"username": "mastintin"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-26",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"carlos vargas\":82v8mznk]eso es un ejecutable en modo consola, no es asi?\npudieras compartir el archivo env de xmate por favor.\n\nsalu2\ncarlos vargas[/quote:82v8mznk]\nAqui dejo el archivo env utilizado . Tendras que cambiar a tus paths y quitar un par de librerias que uso ...\n\nOjo tambien con el problema de activex ... esto no se solucionará hasta que se recompilen las librerias de fwh ,\nEn concreto el problema es este :\n Error description: Error TOleAuto/-1 Invalid argument to contructor!: TOLEAUTO:NEW\n Args:\n [ 1] = U \n\nStack Calls\n===========\n Called from: => THROW( 0 )\n Called from: xhb\\xhbole.prg => TOLEAUTO:NEW( 0 )\n Called from: activex.prg => TACTIVEX:INITIATE( 131 )\n\n\n------------------------------------ \nel archivo env .\n\n\n\n[Environment]\nDescription 1=harbour + fwh16.6 para Bcc101\nDescription 2=\nDescription 3=\nPRG Compiler ver=\nC compiler ver=7.2\nSubsystem=\nAuthor=manuel\nLast update=07/25/2016\n\n[Advanced]\nCommand types=1,1,1,1,1,1,1,1,1\n\n[Harbour]\nHB_INSTALL=C:\\Harbour\nHB_COMMAND=%HB_BIN_INSTALL%\\Harbour.Exe %PRG% /m /n0 /es2 /a /v /i%HB_INC_INSTALL% /ic:\\fwh\\include;%C_INSTALL%\\include\nOption prefix=/\n\n[C]\nC_INSTALL=C:\\BCC101\nC_COMP_COMMAND=%C_BIN_INSTALL%\\Bcc32c.Exe -cc1 -triple i686-pc-win32-omf -w%CRLF% -emit-obj%CRLF% -disable-llvm-verifier %CRLF% -mrelocation-model static %CRLF% -fno-merge-all-constants %CRLF% -fmath-errno %CRLF% -masm-verbose -v -ffunction-sections -nobuiltininc%CRLF% -I%HB_INC_INSTALL%%CRLF% -I%C_INC_INSTALL%%CRLF% -I%C_INC_INSTALL%\\windows\\crtl%CRLF% -I%C_INC_INSTALL%\\dinkumware64%CRLF% -I%C_INC_INSTALL%\\windows\\crtl%CRLF% -I%C_INC_INSTALL%\\windows\\sdk%CRLF% -O2%CRLF% -ferror-limit 50 -fmessage-length 126 -fno-use-cxa-atexit%CRLF% -fborland-extensions -std=c++11 -fcxx-exceptions -fexceptions -fseh %CRLF% -fdiagnostics-show-option%CRLF% -fcolor-diagnostics %CRLF% -backend-option -vectorize-loops %CRLF% -cxx-abi borland %CRLF%-o%OBJ% -x c++ %C% %CRLF%-DHB_FM_STATISTICS_OFF %CRLF%-DHB_NO_DEFAULT_API_MACROS %CRLF%-DHB_NO_DEFAULT_STACK_MACROS %CRLF%-DHB_OS_WIN_32 %CRLF%\nC_LIB_COMMAND=%C_BIN_INSTALL%\\TLib.Exe %LIB% /P512 @%RSP% , %LST%\nC_LINK_COMMAND=%C_BIN_INSTALL%\\iLink32.Exe -Gn -aa -Tpe -s @%LNK%\nC_RC_COMMAND=%C_BIN_INSTALL%\\rc.EXE /I%C_INSTALL%\\include /i%C_INC_INSTALL%\\windows\\sdk /i%C_INC_INSTALL%\\windows\\crtl %RC%\nC_DLL_COMMAND=//%C_BIN_INSTALL%\\BRC32.EXE /r %RC%\nOption prefix=-\n\n[User]\nPOSTEXE_COMMAND=\nPOSTLIB_COMMAND=\nPOSTDLL_COMMAND=\n\n[Files]\n%C_LIB_INSTALL%\\win32c\\release\\c0w32.obj=1\nC:\\fwh\\lib\\barlib32x.lib=2\nC:\\fwh\\lib\\graficas.lib=3\nC:\\fwh\\lib\\FiveH.lib=4\nC:\\fwh\\lib\\FiveHC.lib=5\n%HB_LIB_INSTALL%\\rddfpt.lib=6\n%HB_LIB_INSTALL%\\hbsix.lib=7\n%HB_LIB_INSTALL%\\hbrtl.lib=8\n%HB_LIB_INSTALL%\\hbvm.lib=9\n%HB_LIB_INSTALL%\\rddcdx.lib=10\n%HB_LIB_INSTALL%\\hbrdd.lib=11\n%HB_LIB_INSTALL%\\rddntx.lib=12\n%HB_LIB_INSTALL%\\hblang.lib=13\n%HB_LIB_INSTALL%\\hbmacro.lib=14\n%HB_LIB_INSTALL%\\hbdebug.lib=15\n%HB_LIB_INSTALL%\\hbcommon.lib=16\n%HB_LIB_INSTALL%\\hbpp.lib=17\n%HB_LIB_INSTALL%\\gtgui.lib=18\n%HB_LIB_INSTALL%\\hbpcre.lib=19\n%HB_LIB_INSTALL%\\hbcpage.lib=20\n%HB_LIB_INSTALL%\\hbwin.lib=21\n%HB_LIB_INSTALL%\\hbcplr.lib=22\n%C_LIB_INSTALL%\\win32c\\release\\CW32.LIB=23\n%C_LIB_INSTALL%\\win32c\\release\\IMPORT32.LIB=24\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\odbc32.LIB=25\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\rasapi32.LIB=26\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\nddeapi.lib=27\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\msimg32.lib=28\n%C_LIB_INSTALL%\\win32c\\release\\PSDK\\psapi.lib=29\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\iphlpapi.lib=30\nc:\\fwh\\lib\\ace32.lib=31\n%HB_LIB_INSTALL%\\rddads.lib=32\n%HB_LIB_INSTALL%\\hbct.lib=33\n%HB_LIB_INSTALL%\\xhb.lib=34\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\UUID.lib=35\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\ws2_32.lib=36\n%HB_LIB_INSTALL%\\hbziparc.lib=37\n%HB_LIB_INSTALL%\\hbmzip.lib=38\n%HB_LIB_INSTALL%\\hbzlib.lib=39\n%HB_LIB_INSTALL%\\minizip.lib=40\n%HB_LIB_INSTALL%\\png.lib=41\n%HB_LIB_INSTALL%\\hbmxml.lib=42\n%HB_LIB_INSTALL%\\mxml.lib=43\n%C_LIB_INSTALL%\\win32c\\release\\PSDK\\shell32.lib=44\n%C_LIB_INSTALL%\\win32c\\release\\psdk\\GdiPlus.lib=45",
"time": "07:47",
"topic": "C++Compiler - FREE TOOL",
"username": "mastintin"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-27",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mil gracias. <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->",
"time": "17:15",
"topic": "C++Compiler - FREE TOOL",
"username": "carlos vargas"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-29",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos,\n\nTengo problemas con el nuevo Bcc 7.20, cuando instalo la aplicacion en un equipo windows XP con service pack 2 o 3, me da el siguiente error :\n\n\"No se encuentra el punto de entrada del procedimiento InterlockedCompareExchange64 en la biblioteca de vinculos dinamicos KERNEL32.DLL\"",
"time": "15:23",
"topic": "C++Compiler - FREE TOOL",
"username": "albeiroval"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-29",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Albeiro,\n\nPuedes probarlo con bcc 7.0 ?\n\ngracias",
"time": "22:03",
"topic": "C++Compiler - FREE TOOL",
"username": "Antonio Linares"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-29",
"forum": "FiveWin para Harbour/xHarbour",
"text": "<!-- l --><a class=\"postlink-local\" href=\"http://forums.fivetechsupport.com/viewtopic.php?p=192662#p192662\">viewtopic.php?p=192662#p192662</a><!-- l -->",
"time": "22:29",
"topic": "C++Compiler - FREE TOOL",
"username": "Antonio Linares"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-29",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nCon bcc 7.0 funciona bien.",
"time": "23:27",
"topic": "C++Compiler - FREE TOOL",
"username": "albeiroval"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Antonio,\n\nProbe haciendo los cambios en winbase.h y presenta el mismo error :\n\n\"No se encuentra el punto de entrada del procedimiento InterlockedCompareExchange64 en la biblioteca de vinculos dinamicos KERNEL32.DLL\"\n\nEstoy usando UEstudio",
"time": "17:31",
"topic": "C++Compiler - FREE TOOL",
"username": "albeiroval"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-07-31",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Albeiro,\n\nEn unos dias publicaremos FWH 16.06 y una vez publicado empezaremos a probar bcc 7.20",
"time": "18:32",
"topic": "C++Compiler - FREE TOOL",
"username": "Antonio Linares"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2016-08-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Gracias Antonio",
"time": "02:36",
"topic": "C++Compiler - FREE TOOL",
"username": "albeiroval"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2018-10-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola,\n\nExiste un .bat de compilacion para BCC 10.1 ?",
"time": "02:10",
"topic": "C++Compiler - FREE TOOL",
"username": "Compuin"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2018-10-28",
"forum": "FiveWin para Harbour/xHarbour",
"text": "BCC 10.2.3 (the lastest) can't be used with current FWH build, as far as I know.\n\nEMG",
"time": "11:12",
"topic": "C++Compiler - FREE TOOL",
"username": "Enrico Maria Giordano"
}
] |
C++Compiler - FREE TOOL
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Question to the C-programmers:\n The following C-code-snippet is included in a harbour-function (HB_FUNC( TEST ). Now i must give the \"Mc5Message81C\" a value. But with hb_parc( 1 ) or so a compiler-error occurs. Whats the right parameter-conversion?\n\n[code=fw:3os4mcy1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">struct Mc5Message81D <span style=\"color: #000000;\">{</span><br /> Mc5MsgHead h; <span style=\"color: #B900B9;\">// Kopf</span><br /> union <span style=\"color: #000000;\">{</span><br /> Mc5TargetDataD targetL; <span style=\"color: #B900B9;\">// Daten</span><br /> <span style=\"color: #000000;\">}</span>;<br /><span style=\"color: #000000;\">}</span>;<br /><br /><span style=\"color: #00C800;\">class</span> Mc5Message81C: <span style=\"color: #00C800;\">public</span> Mc5Message81D <span style=\"color: #000000;\">{</span><br /> <span style=\"color: #00C800;\">public</span>:<br /> Mc5Message81C<span style=\"color: #000000;\">(</span> void <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">{</span><br /> clear<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #000000;\">}</span><br /> ~Mc5Message81C<span style=\"color: #000000;\">(</span> void <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #000000;\">{</span><br /> <span style=\"color: #000000;\">}</span></div>[/code:3os4mcy1]",
"time": "14:41",
"topic": "C-Problem",
"username": "byte-one"
}
] |
C-Problem
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\n[code=fw:3sxxf596]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />Mc5Message81C mc5 = <span style=\"color: #00C800;\">new</span> Mc5Message81C<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /><br />Mc5Message81D mc5m;<br /><br />mc5m.h = <span style=\"color: #000000;\">(</span> Mc5MsgHead <span style=\"color: #000000;\">)</span> hb_parnl<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">)</span>;<br />memcpy<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span> unsigned char * <span style=\"color: #000000;\">)</span> mc5m.targetL, <span style=\"color: #000000;\">(</span> unsigned char * <span style=\"color: #000000;\">)</span> hb_parnd<span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">2</span> <span style=\"color: #000000;\">)</span>, sizeof<span style=\"color: #000000;\">(</span> Mc5TargetDataD <span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">)</span>;<br /> </div>[/code:3sxxf596]\n\nNot sure if that is what you are looking for. Is targetL a string or a number ? I have assumed that it is a string",
"time": "14:48",
"topic": "C-Problem",
"username": "Antonio Linares"
}
] |
C-Problem
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, thanks! The above code is from the headerfile.\nThis is code from my function. The first parameter is a string and should assigned to mtlg. But I cannot convert the string-parameter to mtlg\n\n[code=fw:240hh3uv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #00C800;\">HB_FUNC</span> <span style=\"color: #000000;\">(</span>TEST<span style=\"color: #000000;\">)</span> <br />Mc5Message81C mtlg;<br /> </div>[/code:240hh3uv]",
"time": "15:16",
"topic": "C-Problem",
"username": "byte-one"
}
] |
C-Problem
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nBut Mc5Message81C is a Class name, why do you want to fill an object with a string ?\n\nDo you want to replace the contents of the object ?\n\nDo you have some example code ?",
"time": "17:54",
"topic": "C-Problem",
"username": "Antonio Linares"
}
] |
C-Problem
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, this is the original code from the example. I mean, if in the recvfrom() the \"&mtlg\" is filled with the data from network, this must be a string!?\n \n[code=fw:2nh10m5o]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">. <br />Mc5Message81C mtlg;<br />.<br />.<br /> <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">(</span>laengeMtlg = recvfrom<span style=\"color: #000000;\">(</span> sock, &mtlg, sizeof<span style=\"color: #000000;\">(</span>mtlg<span style=\"color: #000000;\">)</span>, MSG_OOB, <span style=\"color: #000000;\">(</span>struct sockaddr *<span style=\"color: #000000;\">)</span> &cltIpAdr, &cltIpAdrLaenge <span style=\"color: #000000;\">)</span><span style=\"color: #000000;\">)</span> > <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">)</span><br />.<br />.</div>[/code:2nh10m5o]",
"time": "21:26",
"topic": "C-Problem",
"username": "byte-one"
}
] |
C-Problem
|
[
{
"date": "2011-12-15",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Günther,\n\nUse memcpy( unsigned char * destination, unsiged char * source, int size )",
"time": "21:51",
"topic": "C-Problem",
"username": "Antonio Linares"
}
] |
C-Problem
|
[
{
"date": "2011-12-16",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio, thanks very much!",
"time": "09:42",
"topic": "C-Problem",
"username": "byte-one"
}
] |
C-Problem
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi,\n\nIn a SQL-database is a field with time and date, and I want to read it in FWH.\nYou can read it in C with the FromFileTime() function.\nCan I convert it to FWH?\n\nThis is an example in C that convert the value.\n\n[code=fw:28c7zbrm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#include</span> <span style=\"color: #ff0000;\">\"stdafx.h\"</span><br />using namespace System;<br />using namespace System::<span style=\"color: #000000;\">Globalization</span>;<br /><br />int _tmain<span style=\"color: #000000;\">(</span>int argc, _TCHAR* argv<span style=\"color: #000000;\">[</span><span style=\"color: #000000;\">]</span><span style=\"color: #000000;\">)</span><br /><span style=\"color: #000000;\">{</span><br /> System::<span style=\"color: #000000;\">DateTime</span> fEventTime = System::<span style=\"color: #000000;\">DateTime</span>::<span style=\"color: #000000;\">FromFileTime</span><span style=\"color: #000000;\">(</span> <span style=\"color: #000000;\">131032008000002432</span> <span style=\"color: #000000;\">)</span>;<br /> Console::<span style=\"color: #000000;\">Write</span><span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Date & Time = {0:MM/dd/yyyy hh:mm:ss tt}<span style=\"color: #000000;\">\\n</span>\"</span>,fEventTime <span style=\"color: #000000;\">)</span>;<br /> getchar<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span>;<br /> <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span>;<br /><span style=\"color: #000000;\">}</span><br /> </div>[/code:28c7zbrm]",
"time": "12:48",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nDo you mean that you want to execute that C++ code from Harbour ?\n\nDo you want to retrieve the date and time of a file ?\n\nCan't you use a SQL query to retrieve those values from that field ?\n\nNot sure what you mean",
"time": "15:37",
"topic": "C-function in FWH",
"username": "Antonio Linares"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nNow if I show that field in the SQL-table, I see the value '131032008000002432'\nI want to convert thqt value to a readable time/date format.\nThe C-function FromFileTime() should do that.",
"time": "17:25",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nWhat C compiler are you using ?\n\nWe may try it using a C++ file",
"time": "17:33",
"topic": "C-function in FWH",
"username": "Antonio Linares"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nI use BCC as compiler.\nA programmer that use that database,gave me that function after I asked him how I can convert it. \nHe also gave me an VB example\n[code=fw:1njh2eq5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">Dim arHSCTIME As Long<br />Dim cstZone As TimeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById<span style=\"color: #000000;\">(</span><span style=\"color: #ff0000;\">\"Central Standard Time\"</span><span style=\"color: #000000;\">)</span><br />Dim dtArchiveDate As DateTime<br />arHSCTIME = <span style=\"color: #000000;\">131032008000002432</span><br />dtArchiveDate = DateTime.FromFileTime<span style=\"color: #000000;\">(</span>arHSCTIME<span style=\"color: #000000;\">)</span><br />MsgBox<span style=\"color: #000000;\">(</span>dtArchiveDate<span style=\"color: #000000;\">)</span><br /> </div>[/code:1njh2eq5]\n\nThen he gave me also that C++ example, after I told him that my program is compiled with a C-compiler....",
"time": "17:43",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-08",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nWe need Mr. Rao's advise\n\nsurely he knows the best way to solve this without having to use C++",
"time": "18:02",
"topic": "C-function in FWH",
"username": "Antonio Linares"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Antonio,\n\nIs it not possible to use that function with\n[code=fw:7loq1wxm]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP</div>[/code:7loq1wxm]\nlike you do with onther C-functions?",
"time": "10:16",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Marc,\n\nAs such code uses C++ we need to create a .cpp file or use VSC2015 as we use C++ mode with it\n\nUsing Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode",
"time": "10:33",
"topic": "C-function in FWH",
"username": "Antonio Linares"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote:bfnsau9o]Using Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode[/quote:bfnsau9o]\nAntonio, i only tested with FWH64 and Borland and #pragma BEGINDUMP ... ENDDUMP. It is functioning when i make with Harbour a file with extension \"CPP\". I have a PRG similar as your gdiplus.cpp and use #pragma BEGINDUMP ... ENDDUMP. Compiling without errors and warnings! The compiler switches automatically to C++-mode if extension is \"CPP\".\nIn 32bit we have to use compiler-switch -P",
"time": "12:50",
"topic": "C-function in FWH",
"username": "byte-one"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "We need to use BEGINDUMP and ENDDUMP only in PRG files.\n\nWhen we compile *.cpp any compiler automatically switches to c++ mode and there is no point using BEGINDUP,ENDDUMP inside a cpp or c file.\n\nSo I am not clear of what you are saying",
"time": "12:57",
"topic": "C-function in FWH",
"username": "nageswaragunupudi"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Here I found the working of fromfiletime.\n[url:209uffq1]https://msdn.microsoft.com/nl-be/library/system.datetimeoffset.fromfiletime(v=vs.110).aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-2[/url:209uffq1]\nThere is a C#,C++,F# and VB example.\nMaybe it's easyer to convert it to FWH since its:\n[code=fw:209uffq1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">A Windows file time is a <span style=\"color: #000000;\">64</span>-bit value that represents the number <span style=\"color: #0000ff;\">of</span> <span style=\"color: #000000;\">100</span>-nanosecond intervals that have elapsed since <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">00</span> midnight, January <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1601</span> A.D. <span style=\"color: #000000;\">(</span>C.E.<span style=\"color: #000000;\">)</span> Coordinated Universal Time <span style=\"color: #000000;\">(</span>UTC<span style=\"color: #000000;\">)</span>. Windows uses a file time <span style=\"color: #0000ff;\">to</span> record <span style=\"color: #0000ff;\">when</span> an application creates, accesses, or writes <span style=\"color: #0000ff;\">to</span> a file.</div>[/code:209uffq1]",
"time": "13:42",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr. Rao, from Antonio above:\n[quote:2xte0x0t]Using Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode[/quote:2xte0x0t]",
"time": "14:06",
"topic": "C-function in FWH",
"username": "byte-one"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marc Vanzegbroeck\":3mjb7cms]Here I found the working of fromfiletime.\n[url:3mjb7cms]https://msdn.microsoft.com/nl-be/library/system.datetimeoffset.fromfiletime(v=vs.110).aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-2[/url:3mjb7cms]\nThere is a C#,C++,F# and VB example.\nMaybe it's easyer to convert it to FWH since its:\n[code=fw:3mjb7cms]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">A Windows file time is a <span style=\"color: #000000;\">64</span>-bit value that represents the number <span style=\"color: #0000ff;\">of</span> <span style=\"color: #000000;\">100</span>-nanosecond intervals that have elapsed since <span style=\"color: #000000;\">12</span>:<span style=\"color: #000000;\">00</span> midnight, January <span style=\"color: #000000;\">1</span>, <span style=\"color: #000000;\">1601</span> A.D. <span style=\"color: #000000;\">(</span>C.E.<span style=\"color: #000000;\">)</span> Coordinated Universal Time <span style=\"color: #000000;\">(</span>UTC<span style=\"color: #000000;\">)</span>. Windows uses a file time <span style=\"color: #0000ff;\">to</span> record <span style=\"color: #0000ff;\">when</span> an application creates, accesses, or writes <span style=\"color: #0000ff;\">to</span> a file.</div>[/code:3mjb7cms][/quote:3mjb7cms]\n\nThank you very much.\nOnce we have this information, it is now extremely simple.\nHere is the function for you:\n[code=fw:3mjb7cms]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">function</span> DateTimeFromFileTime<span style=\"color: #000000;\">(</span> nTicks <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">{</span>^ <span style=\"color: #000000;\">1601</span>/<span style=\"color: #000000;\">01</span>/<span style=\"color: #000000;\">01</span> <span style=\"color: #000000;\">00</span>:<span style=\"color: #000000;\">00</span>:<span style=\"color: #000000;\">00</span> <span style=\"color: #000000;\">}</span> + <span style=\"color: #000000;\">(</span> nTicks / <span style=\"color: #000000;\">10000000.0</span> / <span style=\"color: #000000;\">86400.0</span> <span style=\"color: #000000;\">)</span><br /> </div>[/code:3mjb7cms]\n\ntest:\n? DateTimeFromFileTime( 131032008000002432 ) --> 23-03-2016 10:00:00\n\nUnlike those VB and C# programmers we don't depend on external libraries for simple things like this.",
"time": "14:49",
"topic": "C-function in FWH",
"username": "nageswaragunupudi"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Rao,\n\nThank you very much.\nI will try it.",
"time": "17:11",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Mr Rao,\n\nIt's working fine. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \nJust one question. The result is valtype T.\nHow can I convert it into a stringtype?\nI want to write it into a database with a field of type char.",
"time": "17:36",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2016-04-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Marc Vanzegbroeck\":3t0ugz6x]Mr Rao,\n\nIt's working fine. <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \nJust one question. The result is valtype T.\nHow can I convert it into a stringtype?\nI want to write it into a database with a field of type char.[/quote:3t0ugz6x]\nNever mind... I found it.\nTTOS() is the answer <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D -->",
"time": "19:01",
"topic": "C-function in FWH",
"username": "Marc Vanzegbroeck"
}
] |
C-function in FWH
|
[
{
"date": "2017-09-27",
"forum": "FiveWin for Harbour/xHarbour",
"text": "es ejecutar un archivo DLL en C # FiveWin, alguien podría ayudar, necesito hacer un método de firma XML sha256, pero con CAPICOM no puede firmar esta norma, por lo sha1 consegueir, pero esocial necesitan la norma sha256",
"time": "18:24",
"topic": "C-function in FWH",
"username": "jair"
}
] |
C-function in FWH
|
[
{
"date": "2012-10-19",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Dear Friends,\nI have problem to compile C5Ide with the last modifications\n\n[b:37aefopn]First File [/b:37aefopn]\n<!-- m --><a class=\"postlink\" href=\"http://code.google.com/p/fivewin-contributions/downloads/detail?name=C5ide.zop&can=2&q=\">http://code.google.com/p/fivewin-contri ... p&can=2&q=</a><!-- m -->\n\nI wrote on forun there was problems because When the form designer created a source of a dialog it not was on right coordinates\n\nand Paco pubblished other files \n\n[b:37aefopn]Modifies[/b:37aefopn]\n\n<!-- m --><a class=\"postlink\" href=\"http://code.google.com/p/fivewin-contributions/downloads/detail?name=c5ide_fixes_1.zip&can=2&q=\">http://code.google.com/p/fivewin-contri ... p&can=2&q=</a><!-- m -->\n\n\nAt Init I tried to compile with Harbour and xHarbour with no success\n\n\nWith Harbou I found these problems :\n\nError: Unresolved external '_pcre_config' referenced from C:\\WORK\\HARBOUR\\LIB\\HBRTL.LIB|hbregex\nError: Unresolved external '_pcre_stack_malloc' referenced from C:\\WORK\\HARBOUR\\LIB\\HBRTL.LIB|hbregex\nError: Unresolved external '_pcre_stack_free' referenced from C:\\WORK\\HARBOUR\\LIB\\HBRTL.LIB|hbregex\n\nAnd I resolve it Link the library hbpcre.lib\n\nWith xHarbour after I corrected the function _ISARRAY and _ISCHAR in the app.prg and wndscint.prg changing with HB_ISCHAR and HB_ISARRAY, I have allready problems to compile the application :\n\nI asked on 15.October also to Paco.\n\nThis the last make.log (xharbour) \n\n\n[code=fw:37aefopn]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />MAKE Version <span style=\"color: #000000;\">5.2</span> Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1987</span>, <span style=\"color: #000000;\">2000</span> Borland<br /> c:\\work\\xharbour\\bin\\harbour.exe -iinclude;c:\\work\\fwh\\include;c:\\work\\xharbour\\include; -n -m -w0 -es2 -gc0 -p source\\app.prg -oobj\\app.hrb<br />xHarbour Compiler build <span style=\"color: #000000;\">1.2</span><span style=\"color: #000000;\">.1</span> <span style=\"color: #000000;\">(</span>SimpLex<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">(</span>Rev. <span style=\"color: #000000;\">6717</span><span style=\"color: #000000;\">)</span><br />Copyright <span style=\"color: #000000;\">1999</span><span style=\"color: #000000;\">-2010</span>, http:<span style=\"color: #B900B9;\">//www.xharbour.org <!-- m --><a class=\"postlink\" href=\"http://www.harbour-project.org/\">http://www.harbour-project.org/</a><!-- m --></span><br />Compiling <span style=\"color: #ff0000;\">'source<span style=\"color: #000000;\">\\a</span>pp.prg'</span> and generating preprocessed output <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'source<span style=\"color: #000000;\">\\a</span>pp.ppo'</span>...<br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">300</span><br /><br /><span style=\"color: #000000;\">400</span><br /><br /><span style=\"color: #000000;\">500</span><br /><br /><span style=\"color: #000000;\">600</span><br /><br /><span style=\"color: #000000;\">700</span><br /><br /><span style=\"color: #000000;\">800</span><br /><br /><span style=\"color: #000000;\">900</span><br /><br /><span style=\"color: #000000;\">1000</span><br /><br /><span style=\"color: #000000;\">1100</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">300</span><br /><br /><span style=\"color: #000000;\">400</span><br /><br /><span style=\"color: #000000;\">500</span><br /><br /><span style=\"color: #000000;\">600</span><br /><br /><span style=\"color: #000000;\">700</span><br /><br /><span style=\"color: #000000;\">800</span><br /><br /><span style=\"color: #000000;\">900</span><br /><br /><span style=\"color: #000000;\">1000</span><br /><br /><span style=\"color: #000000;\">1100</span><br /><br /><span style=\"color: #000000;\">1200</span><br /><br /><span style=\"color: #000000;\">1300</span><br /><br /><span style=\"color: #000000;\">1400</span><br /><br /><span style=\"color: #000000;\">1500</span><br /><br /><span style=\"color: #000000;\">1600</span><br /><br /><span style=\"color: #000000;\">1700</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">100</span><br /><br /><span style=\"color: #000000;\">200</span><br /><br /><span style=\"color: #000000;\">300</span><br /><br /><span style=\"color: #000000;\">400</span><br /><br /><span style=\"color: #000000;\">500</span><br /><br /><span style=\"color: #000000;\">600</span><br /><br /><span style=\"color: #000000;\">700</span><br /><br /><span style=\"color: #000000;\">800</span><br /><br /><span style=\"color: #000000;\">900</span><br /><br /><span style=\"color: #000000;\">1000</span><br /><br /><span style=\"color: #000000;\">1100</span><br /><br /><span style=\"color: #000000;\">1200</span><br /><br /><span style=\"color: #000000;\">1300</span><br /><br /><span style=\"color: #000000;\">1400</span><br /><br /><span style=\"color: #000000;\">1500</span><br /><br /><span style=\"color: #000000;\">1600</span><br /><br /><span style=\"color: #000000;\">1700</span><br /><br /><span style=\"color: #000000;\">1800</span><br /><br /><span style=\"color: #000000;\">1900</span><br /><br /><span style=\"color: #000000;\">2000</span><br /><br /><span style=\"color: #000000;\">2100</span><br /><br /><span style=\"color: #000000;\">2200</span><br /><br /><span style=\"color: #000000;\">2300</span><br /><br /><span style=\"color: #000000;\">2400</span><br /><br /><span style=\"color: #000000;\">2500</span><br /><br /><span style=\"color: #000000;\">2600</span><br /><br /><span style=\"color: #000000;\">2700</span><br /><br /><span style=\"color: #000000;\">2800</span><br /><br /><span style=\"color: #000000;\">2900</span><br /><br /><span style=\"color: #000000;\">3000</span><br /><br />Lines <span style=\"color: #000000;\">3038</span>, Functions/Procedures <span style=\"color: #000000;\">53</span><br />Generating C source output <span style=\"color: #0000ff;\">to</span> <span style=\"color: #ff0000;\">'obj<span style=\"color: #000000;\">\\a</span>pp.hrb'</span>...<br />Done.<br /> c:\\work\\bcc582\\bin\\bcc32.exe -c -O2 -Ic:\\work\\xharbour\\include;;c:\\work\\bcc582\\include -oobj\\app.obj obj\\app.hrb<br />Borland C++ <span style=\"color: #000000;\">5.82</span> <span style=\"color: #00C800;\">for</span> Win32 Copyright <span style=\"color: #000000;\">(</span>c<span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">1993</span>, <span style=\"color: #000000;\">2005</span> Borland<br />obj\\app.hrb:<br /><span style=\"color: #000000;\">Warning</span> W8065 source\\\\app.prg <span style=\"color: #000000;\">1196</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATERECTRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1197</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATERECTRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1198</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATERECTRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1199</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATERECTRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1215</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEELLIPTICRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1216</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEELLIPTICRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1217</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEELLIPTICRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1218</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEELLIPTICRGNINDIRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1255</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'HB_ISARRAY'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEPOLYGONRGN<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1295</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'HB_ISARRAY'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEPOLYPOLYGONRGN<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1302</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_CREATEPOLYPOLYGONRGN<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1383</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETRGNBOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1384</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETRGNBOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1385</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETRGNBOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1386</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETRGNBOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1399</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'HB_ISARRAY'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_RECTINREGION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1424</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1425</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1426</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1427</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1429</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_FILLSOLIDRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1456</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1457</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1458</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1459</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_PTINRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1470</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1471</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1472</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1473</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1475</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1476</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1477</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1478</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_INTERSECTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1498</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1499</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1500</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1501</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1503</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1504</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1505</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1506</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1511</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1512</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1513</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1514</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_UNIONRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1523</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1524</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1525</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1526</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1575</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1576</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1577</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1578</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1579</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1580</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1581</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_METRICSCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1587</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1588</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1589</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1590</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_DRAWCAPTION<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1610</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1611</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1612</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOX<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1613</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_BOX<br />Warning W8064 source\\\\app.prg <span style=\"color: #000000;\">1729</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_ISAPPTHEMED<br />Warning W8064 source\\\\app.prg <span style=\"color: #000000;\">1747</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_ISTHEMEACTIVE<br />Warning W8075 source\\\\app.prg <span style=\"color: #000000;\">1756</span>: <span style=\"color: #000000;\">Suspicious</span> pointer conversion in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_OPENTHEMEDATA<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1814</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEBACKGROUND<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1815</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEBACKGROUND<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1816</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEBACKGROUND<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1817</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEBACKGROUND<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1851</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEICON<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1852</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEICON<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1853</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEICON<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1854</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEICON<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1897</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1898</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1899</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1900</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1902</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1903</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1904</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1905</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMEEDGE<br />Warning W8075 source\\\\app.prg <span style=\"color: #000000;\">1948</span>: <span style=\"color: #000000;\">Suspicious</span> pointer conversion in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1953</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1954</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1955</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">1956</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8075 source\\\\app.prg <span style=\"color: #000000;\">1975</span>: <span style=\"color: #000000;\">Suspicious</span> pointer conversion in <span style=\"color: #00C800;\">function</span> HB_FUN_C5_DRAWTHEMETEXT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2192</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2193</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2194</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2195</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2197</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2198</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2199</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2200</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_parvnl'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2220</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2221</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Warning W8065 source\\\\app.prg <span style=\"color: #000000;\">2222</span>: <span style=\"color: #000000;\">Call</span> <span style=\"color: #0000ff;\">to</span> <span style=\"color: #00C800;\">function</span> <span style=\"color: #ff0000;\">'hb_storvni'</span> with no prototype in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />Error E2228 source\\\\app.prg <span style=\"color: #000000;\">2222</span>: <span style=\"color: #000000;\">Too</span> many error or warning messages in <span style=\"color: #00C800;\">function</span> HB_FUN_GETTHEMEBACKGROUNDCONTENTRECT<br />*** <span style=\"color: #000000;\">1</span> errors in Compile ***<br /><br />** error <span style=\"color: #000000;\">1</span> ** deleting obj\\app.obj<br /> </div>[/code:37aefopn]",
"time": "08:59",
"topic": "C5Ide problem on compilation",
"username": "Silvio.Falconi"
}
] |
C5Ide problem on compilation
|
[
{
"date": "2015-06-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Master, me gusta C5MENU y C5TOOLTIP. Donde puedo bajar completo?\n\n[code=fw:2pkfewyx]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br /><span style=\"color: #B900B9;\">// +---------------------------------------+</span><br /><span style=\"color: #B900B9;\">// | C5MENU 32bits v1.2 MENU.PRG |</span><br /><span style=\"color: #B900B9;\">// | |</span><br /><span style=\"color: #B900B9;\">// | AUTOR: Francisco García [España] |</span><br /><span style=\"color: #B900B9;\">// | ADAPTACION A 32BITS: |</span><br /><span style=\"color: #B900B9;\">// | Juan Carlos Salinas Ojeda |</span><br /><span style=\"color: #B900B9;\">// | jcso@esm.com.mx |</span><br /><span style=\"color: #B900B9;\">// | jcso@hotmail.com (solo msn) |</span><br /><span style=\"color: #B900B9;\">// | |</span><br /><span style=\"color: #B900B9;\">// | AGRADECIMIENTO ESPECIAL: Gracias mil |</span><br /><span style=\"color: #B900B9;\">// | a Paco García por cederme su código y |</span><br /><span style=\"color: #B900B9;\">// | tenerme la confianza de poder hacer |</span><br /><span style=\"color: #B900B9;\">// | algo productivo para la comunidad. |</span><br /><span style=\"color: #B900B9;\">// | |</span><br /><span style=\"color: #B900B9;\">// | 05 de Julio de 2005, México DF |</span><br /><span style=\"color: #B900B9;\">// | |</span><br /><span style=\"color: #B900B9;\">// +---------------------------------------+</span><br /><br /><br /><span style=\"color: #B900B9;\">// #ifndef _MENU_CH</span><br /><span style=\"color: #B900B9;\">// #define _MENU_CH</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><span style=\"color: #B900B9;\">// Creating PullDown Menus from source code</span><br /><br />#xcommand C5MENU <span style=\"color: #000000;\">[</span> <oObjMenu> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <popup: <span style=\"color: #000000;\">POPUP</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> BITMAP <cBitmap> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> LOGO <cBmpLogo> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> LOGOCOLOR <nLogoClr> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">COLOR</span> <nClrText>, <nClrPane> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> COLORSEL <nClrTxtSel>, <nClrSelect> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> COLORDISA <nClrDisa> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> COLORBOX <nClrBox> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> WIDTH <nWidth> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> HEIGHT <nHItem> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> CHECK <cBmpChk> <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> <l3dSel:<span style=\"color: #0000ff;\">SELECT</span> 3D><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <lNoChks:<span style=\"color: #000000;\">NO</span> CHECKS> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> SOUND <cSound1> <span style=\"color: #000000;\">]</span> ;<br /> => ;<br /> <span style=\"color: #000000;\">[</span> <oObjMenu> := <span style=\"color: #000000;\">]</span> C5MenuBegin<span style=\"color: #000000;\">(</span> <.<span style=\"color: #0000ff;\">popup</span>.>, .f., , <cBitmap>,;<br /> <cBmpLogo>, <nClrPane>, <nHItem>, <cBmpChk>, <oFont>, <nClrText>,;<br /> <.l3dSel.>, <nWidth>, <.lNoChks.>, <nClrSelect>, <nClrTxtSel>,;<br /> <nClrDisa>, <cSound1>, <nClrBox>, <nLogoClr> <span style=\"color: #000000;\">)</span><br /><br />#xcommand C5MENUITEM <span style=\"color: #000000;\">[</span> <oMenuItem> <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #000000;\">]</span> <span style=\"color: #000000;\">[</span><cPrompt><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> <checked: <span style=\"color: #000000;\">CHECK</span>, CHECKED, MARK> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <enable: <span style=\"color: #000000;\">ENABLED</span>, DISABLED> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <file: <span style=\"color: #000000;\">FILE</span>, FILENAME, DISK> <cBmpFile> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <resource: <span style=\"color: #0000ff;\">RESOURCE</span>, <span style=\"color: #0000ff;\">RESNAME</span>, NAME> <cResName> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">ACTION</span> <uAction,...> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> BLOCK <bAction> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <of: <span style=\"color: #0000ff;\">OF</span>, <span style=\"color: #0000ff;\">MENU</span>, SYSMENU> <oMenu> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> ACCELERATOR <nState>, <nVirtKey> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <help: <span style=\"color: #000000;\">HELP</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <HelpId: <span style=\"color: #0000ff;\">HELP</span> <span style=\"color: #0000ff;\">ID</span>, HELPID> <nHelpId> <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> <break: <span style=\"color: #000000;\">BREAK</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">COLOR</span> <nClrText> <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> <align: <span style=\"color: #0000ff;\">LEFT</span>, <span style=\"color: #0000ff;\">CENTER</span>, RIGHT> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> DISAFILE <cDisaBmp> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> DISARES <cDisaRes> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">ICON</span> <cIcon> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">CURSOR</span> <oCursor> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <lLink: <span style=\"color: #000000;\">LINK</span>> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> HEIGHT <nHeight> <span style=\"color: #000000;\">]</span> ;<br /> => ;<br /> <span style=\"color: #000000;\">[</span> <oMenuItem> := <span style=\"color: #000000;\">]</span> C5MenuAddItem<span style=\"color: #000000;\">(</span> <cPrompt>, <cMsg>,;<br /> <.checked.>, <span style=\"color: #000000;\">[</span> Upper<span style=\"color: #000000;\">(</span><<span style=\"color: #000000;\">(</span>enable<span style=\"color: #000000;\">)</span>><span style=\"color: #000000;\">)</span> == <span style=\"color: #ff0000;\">\"ENABLED\"</span> <span style=\"color: #000000;\">]</span>,;<br /> <span style=\"color: #000000;\">[</span>\\<span style=\"color: #000000;\">{</span>|oMenuItem|<uAction>\\<span style=\"color: #000000;\">}</span><span style=\"color: #000000;\">]</span>,;<br /> <cBmpFile>, <cResName>, <oMenu>, <bAction>, <nState>, <nVirtKey>,;<br /> <.<span style=\"color: #0000ff;\">help</span>.>, <nHelpId>, <span style=\"color: #000000;\">[</span><<span style=\"color: #000000;\">{</span>uWhen<span style=\"color: #000000;\">}</span>><span style=\"color: #000000;\">]</span>, <.<span style=\"color: #00C800;\">break</span>.>, <nClrText>,;<br /> <oFont>, <span style=\"color: #000000;\">[</span> Upper<span style=\"color: #000000;\">(</span><<span style=\"color: #000000;\">(</span>align<span style=\"color: #000000;\">)</span>><span style=\"color: #000000;\">)</span> <span style=\"color: #000000;\">]</span>, <cDisaBmp>, <cDisaRes>, ;<br /> <cIcon>, <oCursor>, <.lLink.>, <nHeight> <span style=\"color: #000000;\">)</span><br /><br />#xcommand C5SEPARATOR <span style=\"color: #000000;\">[</span><oMenuItem><span style=\"color: #000000;\">]</span> => <span style=\"color: #000000;\">[</span><oMenuItem>:=<span style=\"color: #000000;\">]</span> C5MenuAddItem<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br />#xcommand c5ENDMENU => C5MenuEnd<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><span style=\"color: #B900B9;\">// Using Window System Menu</span><br /><br />#xcommand <span style=\"color: #0000ff;\">REDEFINE</span> C5SYSMENU <span style=\"color: #000000;\">[</span><oMenu><span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <of: <span style=\"color: #0000ff;\">OF</span>, <span style=\"color: #0000ff;\">WINDOW</span>, DIALOG> <oWnd> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> BITMAP <cBitmap> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> LOGO <cBmpLogo> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">COLOR</span> <nClrText>, <nClrPane> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> HEIGHT <nHItem> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> CHECK <cBmpChk> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #0000ff;\">FONT</span> <oFont> <span style=\"color: #000000;\">]</span> ;<br /> => ;<br /> <span style=\"color: #000000;\">[</span><oMenu> :=<span style=\"color: #000000;\">]</span> C5MenuBegin<span style=\"color: #000000;\">(</span> .f., .t., <oWnd>, <cBitmap>,;<br /> <cBmpLogo>, <nClrPane>, <nHItem>, <cBmpChk>, <oFont>, <nClrText> <span style=\"color: #000000;\">)</span><br /><br />#xcommand ENDSYSC5MENU => C5MenuEnd<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /><br /><span style=\"color: #B900B9;\">// PopUps Management</span><br /><br />#xcommand <span style=\"color: #0000ff;\">ACTIVATE</span> C5MENU <oMenu> ;<br /> <span style=\"color: #000000;\">[</span> <span style=\"color: #00C800;\">AT</span> <nRow>, <nCol> <span style=\"color: #000000;\">]</span> ;<br /> <span style=\"color: #000000;\">[</span> <of: <span style=\"color: #0000ff;\">OF</span>, <span style=\"color: #0000ff;\">WINDOW</span>, DIALOG> <oWnd> <span style=\"color: #000000;\">]</span> ;<br /> => ;<br /> <oMenu>:<span style=\"color: #0000ff;\">Activate</span><span style=\"color: #000000;\">(</span> <nRow>, <nCol>, <oWnd> <span style=\"color: #000000;\">)</span><br /><br /><br /><span style=\"color: #B900B9;\">//----------------------------------------------------------------------------//</span><br /><br /><span style=\"color: #B900B9;\">// #endif</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> MF_ENABLED <span style=\"color: #000000;\">0</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_GRAYED <span style=\"color: #000000;\">1</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_DISABLED <span style=\"color: #000000;\">2</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_BITMAP <span style=\"color: #000000;\">4</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_CHECKED <span style=\"color: #000000;\">8</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_POPUP <span style=\"color: #000000;\">16</span> <span style=\"color: #B900B9;\">// 0x0010</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_BREAK <span style=\"color: #000000;\">64</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_BYPOSITION <span style=\"color: #000000;\">1024</span> <span style=\"color: #B900B9;\">// 0x0400</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_SEPARATOR <span style=\"color: #000000;\">2048</span> <span style=\"color: #B900B9;\">// 0x0800</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_HELP <span style=\"color: #000000;\">16384</span> <span style=\"color: #B900B9;\">// 0x4000</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_HILITE <span style=\"color: #000000;\">128</span> <span style=\"color: #B900B9;\">// 0x0080</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_UNHILITE <span style=\"color: #000000;\">0</span><br /><span style=\"color: #00D7D7;\">#define</span> MF_OWNERDRAW <span style=\"color: #000000;\">256</span> <span style=\"color: #B900B9;\">// 0x0100</span><br /><br /><br /><span style=\"color: #00D7D7;\">#define</span> ODA_DRAWENTIRE <span style=\"color: #000000;\">1</span><br /><span style=\"color: #00D7D7;\">#define</span> ODA_SELECT <span style=\"color: #000000;\">2</span><br /><span style=\"color: #00D7D7;\">#define</span> ODA_FOCUS <span style=\"color: #000000;\">4</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> ODS_SELECTED <span style=\"color: #000000;\">1</span><br /><span style=\"color: #00D7D7;\">#define</span> ODS_GRAYED <span style=\"color: #000000;\">2</span><br /><span style=\"color: #00D7D7;\">#define</span> ODS_DISABLED <span style=\"color: #000000;\">4</span><br /><span style=\"color: #00D7D7;\">#define</span> ODS_CHECKED <span style=\"color: #000000;\">8</span><br /><span style=\"color: #00D7D7;\">#define</span> ODS_FOCUS <span style=\"color: #000000;\">16</span><br /><br />#ifndef COLOR_ACTIVECAPTION<br /><span style=\"color: #00D7D7;\">#define</span> COLOR_ACTIVECAPTION <span style=\"color: #000000;\">2</span><br />#endif<br /><br />#ifndef COLOR_MENU<br /><span style=\"color: #00D7D7;\">#define</span> COLOR_MENU <span style=\"color: #000000;\">4</span><br />#endif<br /><br />#ifndef COLOR_MENUTEXT<br /><span style=\"color: #00D7D7;\">#define</span> COLOR_MENUTEXT <span style=\"color: #000000;\">7</span><br />#endif<br /><br />#ifndef COLOR_HIGHLIGHT<br /><span style=\"color: #00D7D7;\">#define</span> COLOR_HIGHLIGHT <span style=\"color: #000000;\">13</span><br />#endif<br /><br />#ifndef COLOR_HIGHLIGHTTEXT<br /><span style=\"color: #00D7D7;\">#define</span> COLOR_HIGHLIGHTTEXT <span style=\"color: #000000;\">14</span><br />#endif<br /><br /><br /><span style=\"color: #B900B9;\">// #define DT_LEFT 37</span><br /><span style=\"color: #00D7D7;\">#define</span> DT_LEFT <span style=\"color: #000000;\">0</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> MENUX <span style=\"color: #000000;\">1</span><br /><span style=\"color: #00D7D7;\">#define</span> ITEMSX <span style=\"color: #000000;\">2</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> SRCCOPY <span style=\"color: #000000;\">13369376</span><br /><br /><span style=\"color: #00D7D7;\">#define</span> OBM_CHECK <span style=\"color: #000000;\">32760</span><br /> </div>[/code:2pkfewyx]\n\u001a\nGracias.",
"time": "14:47",
"topic": "C5MENU y C5TOOLTIP",
"username": "karinha"
}
] |
C5MENU y C5TOOLTIP
|
[
{
"date": "2015-06-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Joao,\n\n[url:2xogls0d]https://bitbucket.org/fivetech/fivewin-contributions/downloads/c5menu12.zip[/url:2xogls0d]",
"time": "18:19",
"topic": "C5MENU y C5TOOLTIP",
"username": "Antonio Linares"
}
] |
C5MENU y C5TOOLTIP
|
[
{
"date": "2015-06-09",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Good! Gracias master!",
"time": "20:38",
"topic": "C5MENU y C5TOOLTIP",
"username": "karinha"
}
] |
C5MENU y C5TOOLTIP
|
[
{
"date": "2006-04-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Buenassss, vengo usando esta clase que queda muy bonita pero tengo un pequeño problema que no se como solucionar.\nCuando abro una ventana en entorno MDI maximizada, se me pone el icono de la ventana justo a la izquierda del menu y todas las teclas de acceso directo a los menus quedan como \"desplazadas\".\nMe explico\nPor ejemplo :\n\n&Fichas &Ventas &Cartera &Utilidades.\n\nPulsado Alt+F, Alt+V, pues se despliegan los menús correspondientes.\nAhora abro una ventana maximizada y aparece\n\n[] &Fichas &Ventas &Cartera &Utilidades\n\nDonde [] es el menú de manejo de la ventana que se ha abierto.\nPulsando Alt+F, se abre ese Menú, Alt+V se abre Fichas, Alt+C Se abre ventas ... etc, etc.\n\nEs solucionable?\nMe explico?\n\nGracias.\n\nAngel Salom\n<!-- e --><a href=\"mailto:angel@sigev.com\">angel@sigev.com</a><!-- e -->",
"time": "14:33",
"topic": "C5Menu adaptado por Juan Carlos Salinas",
"username": "AngelSalom"
}
] |
C5Menu adaptado por Juan Carlos Salinas
|
[
{
"date": "2006-04-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Bueh! ya está claro\nAl definir la ventana principal le pongo un NOSYSMENU y así ya no me crea el icono al lado del menu.\n\n\nValeeee.",
"time": "14:57",
"topic": "C5Menu adaptado por Juan Carlos Salinas",
"username": "AngelSalom"
}
] |
C5Menu adaptado por Juan Carlos Salinas
|
[
{
"date": "2006-04-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"AngelSalom\":3o8uu00p]Bueh! ya está claro\nAl definir la ventana principal le pongo un NOSYSMENU y así ya no me crea el icono al lado del menu.\nValeeee.[/quote:3o8uu00p]\n\nJustamente !!!\n\nJEJE, hemos sido varios que a veces contestamos nuestros propios posts.\nSaludos",
"time": "15:22",
"topic": "C5Menu adaptado por Juan Carlos Salinas",
"username": "VeRCE"
}
] |
C5Menu adaptado por Juan Carlos Salinas
|
[
{
"date": "2006-03-01",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Estoy usando la clase C5Menu y en el preview nomas no la he podido echar a volar, alguien ya pudo o que hay que corregir? opte por deshabilitar el menu del preview, pero si me gustaria que funcionara el C5MENU o como hacer para que tome la clase menu original y no la C5Menu? porque el C5MENU en la window principal si funciona y en la del preview no?\ngracias",
"time": "16:34",
"topic": "C5Menu en Preview",
"username": "Francisco Horta"
}
] |
C5Menu en Preview
|
[
{
"date": "2007-02-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Algo nuevo sobre este asunto?\n¿Como deshabilitaste el menu del preview?\n\n[quote=\"Francisco Horta\":19364o5q]Estoy usando la clase C5Menu y en el preview nomas no la he podido echar a volar, alguien ya pudo o que hay que corregir? opte por deshabilitar el menu del preview, pero si me gustaria que funcionara el C5MENU o como hacer para que tome la clase menu original y no la C5Menu? porque el C5MENU en la window principal si funciona y en la del preview no?\ngracias[/quote:19364o5q]",
"time": "22:42",
"topic": "C5Menu en Preview",
"username": "Manuel Aranda"
}
] |
C5Menu en Preview
|
[
{
"date": "2007-02-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola, si mal no recuerdo, habria que modificar la clase TWindow\njusto donde hace referencia el MENU para poder usar el C5Menu.\n\nO bien, comentar las lineas de codigo en el Rpreview.prg donde\nse hace referencia al menu con la finalidad de desactivarlo. Despues\nde eso tal vez tengan que pelearse con la asignacion de algunas\nvariables pero nada complicado.\n\nSaludos cordiales",
"time": "16:25",
"topic": "C5Menu en Preview",
"username": "VeRCE"
}
] |
C5Menu en Preview
|
[
{
"date": "2007-02-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Yo no he necesitado modificar nada en mis programas para utilizar c5menu.\n\nSimplemente una línea en el programa:\n\noMenu:SetStyle( 14 ) //porque es el estilo que me gusta a mí (podría ser cualquier otro)\n\ny compilar mi aplicación con las dos libs correspondientes\n\nMe aparecen todos los menúes de mis aplicaciones en ese estilo incluyendo el del preview de la case treport.",
"time": "18:34",
"topic": "C5Menu en Preview",
"username": "jose_murugosa"
}
] |
C5Menu en Preview
|
[
{
"date": "2007-02-21",
"forum": "FiveWin para Harbour/xHarbour",
"text": "JAJAJAJAJAJAJA !!!\nPor eso se dice que:\nNo existen problemas complejos, tan solo simples soluciones...\n\nGracias por el dato\nSaludos",
"time": "19:33",
"topic": "C5Menu en Preview",
"username": "VeRCE"
}
] |
C5Menu en Preview
|
[
{
"date": "2008-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Disculpa el setstyle(14), me da un error de funcions a lcompilar, me puedesexplicar que hace esta funcion\r\n\r\ngracias",
"time": "16:46",
"topic": "C5Menu en Preview",
"username": "elmoiquique"
}
] |
C5Menu en Preview
|
[
{
"date": "2008-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "A mi me funciona perfectamente, añadiendo la opción Setstyle. No hay que hacer ningún cambio en Window ni nada más, salvo linkar c5menu y c5lib antes de las libs de fivewin.",
"time": "20:00",
"topic": "C5Menu en Preview",
"username": "MOISES"
}
] |
C5Menu en Preview
|
[
{
"date": "2008-06-12",
"forum": "FiveWin para Harbour/xHarbour",
"text": "gracias moises, por tu respuesta pero a mi me da error, que version del c5menu tienes, porque la libreria que tu mencionas no la tengo en ningun lado, y si no es mucha molestia si me la pudieras enviar a mi correo, yaque me un poco complicado eso\r\n\r\ngracias",
"time": "21:33",
"topic": "C5Menu en Preview",
"username": "elmoiquique"
}
] |
C5Menu en Preview
|
[
{
"date": "2008-06-13",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola:\r\n\r\nDeberías contactar con Paco García. Su soporte también es muy bueno.\r\n\r\nUn saludo",
"time": "12:40",
"topic": "C5Menu en Preview",
"username": "MOISES"
}
] |
C5Menu en Preview
|
[
{
"date": "2012-12-20",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Hola a todos,\npues eso, se puede usar c5Tooltip con un menu de fwh ?, de poderse como seria ? no hay ejemplos....\nGracias.\nSalu2, Ariel.",
"time": "01:53",
"topic": "C5TOOLTIP con MENU de fwh ?",
"username": "Ariel"
}
] |
C5TOOLTIP con MENU de fwh ?
|
[
{
"date": "2020-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n\ni have change in go.bat and account.mak to C:\\BCC7 and c:\\harbour\\lib\\win\\bcc\n\n[quote:1ku36mo4]\nC:\\fwh\\samples\\account>go\nC:\\fwh\\samples\\account>if not exist obj md obj\nC:\\fwh\\samples\\account>c:\\bcc7\\bin\\make -faccount.mak\nMAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc.\n echo off\n echo c:\\bcc7\\lib\\c0w32.obj + > b32.bc\n echo obj\\ejemcont.obj obj\\contabil.obj obj\\mntotel.obj, + >> b32.bc\n echo ejemcont.exe, + >> b32.bc\n echo ejemcont.map, + >> b32.bc\n echo .\\..\\..\\lib\\FiveH.lib .\\..\\..\\lib\\FiveHC.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbrtl.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbvm.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\gtgui.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hblang.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbmacro.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbrdd.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\rddntx.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\rddcdx.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\rddfpt.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbsix.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbdebug.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbcommon.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbpp.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbwin.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbcpage.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbct.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbpcre.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\hbcplr.lib + >> b32.bc\n echo c:\\harbour\\lib\\win\\bcc\\xhb.lib + >> b32.bc\n echo c:\\bcc7\\lib\\cw32.lib + >> b32.bc\n echo c:\\bcc7\\lib\\import32.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\odbc32.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\nddeapi.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\iphlpapi.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\msimg32.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\psapi.lib + >> b32.bc\n echo c:\\bcc7\\lib\\psdk\\rasapi32.lib, >> b32.bc\n IF EXIST account.res echo account.res >> b32.bc\n c:\\bcc7\\bin\\ilink32 -Gn -aa -Tpe -s @b32.bc\nTurbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.\nError: Unresolved external 'SHGetImageList' referenced from C:\\FWH\\LIB\\FIVEHC.LIB|ICONS\nError: Unresolved external '_HB_FUN_OCCURS' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VALTOSTR\nError: Unresolved external '_hb_strAtI' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VSTRFUN1\nError: Unresolved external '_HB_FUN_HB_GETFILESINZIP' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPOPEN' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILEFIRST' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILEINFO' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILEOPEN' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILEREAD' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_BLEN' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILECLOSE' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPFILENEXT' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external '_HB_FUN_HB_UNZIPCLOSE' referenced from C:\\FWH\\LIB\\FIVEH.LIB|OLEFUNCS\nError: Unresolved external 'SHCreateDirectoryExA' referenced from C:\\FWH\\LIB\\FIVEHC.LIB|MKDIR\nError: Unresolved external 'SHCreateDirectoryExW' referenced from C:\\FWH\\LIB\\FIVEHC.LIB|MKDIR\nError: Unresolved external '_HB_FUN___OLEVARIANTNEW' referenced from C:\\FWH\\LIB\\FIVEH.LIB|ADOFUNCS\nError: Unresolved external '_hb_extIsNil' referenced from C:\\FWH\\LIB\\FIVEHC.LIB|RICHEDIT\nError: Unresolved external '_HB_FUN_HB_TSTOUTC' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VALTOSTR\nError: Unable to perform link\n\n** error 2 ** deleting account.exe\n\nC:\\fwh\\samples\\account>[/quote:1ku36mo4]\nso there is a lot \"new\" in FIVEH.LIB / FIVEHC.LIB which the Sample don't know.\nis this Sample now \"unusable\" <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "07:15",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Jimmy"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hallo Jimmy,\nich glaube, dass ist ein sehr altes Programm.\nEs ist schade, dass alle Dateien beim Update ein neues Datum bekommen.\nLG\nOtto\n\n\n\n** * PROGRAMA: CONTAB.PRG FECHA INICIO: 02/11/95 ****\n** * FECHA FIN: 03/11/95 ****\n** * ANALISTA: Francis Morales Rivas ****\n** * ****\n*",
"time": "09:44",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Otto"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hi.\nAs Otto says, it's a very old source code.\n\nOn the other hand, try with this make:\n\n[code=fw:l16y84qj]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">HBDIR=c:\\harbour_3.2_32bits_Borland582_20150205 <span style=\"color: #B900B9;\">//change this for your harbour ver.</span><br />BCDIR=c:\\bcc7<br />FWDIR=.\\..\\..<br /><br /><br />#change these paths as needed<br />.path.OBJ = .\\obj<br />.path.PRG = .\\<br />.path.CH = $<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\include;$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include<br />.path.C = .\\<br />.path.rc = .\\<br /><br />#important: <span style=\"color: #000000;\">Use</span> Uppercase <span style=\"color: #00C800;\">for</span> filenames extensions, in the <span style=\"color: #00C800;\">next</span> two rules!<br /><br />PRG = \\<br />ejemcont.PRG \\<br />contabil.PRG \\<br />mntotel.PRG<br /><br />PROJECT : <span style=\"color: #000000;\">account</span>.exe<br /><br />account.exe : $<span style=\"color: #000000;\">(</span>PRG:.PRG=.OBJ<span style=\"color: #000000;\">)</span> account.res<br /> echo off<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\c0w32.obj + > b32.bc<br /> echo obj\\ejemcont.obj obj\\contabil.obj obj\\mntotel.obj, + >> b32.bc<br /> echo ejemcont.exe, + >> b32.bc<br /> echo ejemcont.map, + >> b32.bc<br /> <br /> echo $<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\lib\\FiveH.lib $<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\lib\\FiveHC.lib + >> b32.bc<br /> <br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbrtl.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbvm.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\gtgui.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hblang.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbmacro.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbrdd.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddntx.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddcdx.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\rddfpt.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbsix.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbdebug.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcommon.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbpp.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbwin.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcpage.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbct.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbpcre.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbcplr.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\xhb.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbziparc.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbmzip.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbzlib.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\minizip.lib + >> b32.bc<br /><br /><br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\cw32.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\import32.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\odbc32.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\nddeapi.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\iphlpapi.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\msimg32.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\gdiplus.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\psapi.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\rasapi32.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\lib\\psdk\\shell32.lib, >> b32.bc<br /> <br /> <span style=\"color: #00C800;\">IF</span> EXIST account.res echo account.res >> b32.bc<br /> $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\bin\\ilink32 -Gn -aa -Tpe -s @b32.bc<br /> del b32.bc<br /><br />.PRG.OBJ:<br /> $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\bin\\harbour $< /L /N /W /Oobj\\ /I$<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\include;$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include<br /> $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\bin\\bcc32 -c -tWM -I$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include -oobj\\$& obj\\$&.c<br /><br />.C.OBJ:<br /> echo -c -tWM -D__HARBOUR__ -DHB_API_MACROS > tmp<br /> echo -I$<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\include;$<span style=\"color: #000000;\">(</span>FWDIR<span style=\"color: #000000;\">)</span>\\include >> tmp<br /> $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\bin\\bcc32 -oobj\\$& @tmp $&.c<br /> del tmp<br /><br />account.res : <span style=\"color: #000000;\">account</span>.rc<br /> $<span style=\"color: #000000;\">(</span>BCDIR<span style=\"color: #000000;\">)</span>\\bin\\brc32.exe -r account.rc</div>[/code:l16y84qj]\n\nRegards.",
"time": "17:36",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "FranciscoA"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-04",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n\nthx for Answer, now it compile / link without Error <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nbut i wonder how as i have a different harbour\\LIB Path <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\nyou working *.MAK\n[code=fw:rlt79h9c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> HBDIR=c:\\harbour<br /><br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbziparc.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbmzip.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\hbzlib.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\minizip.lib + >> b32.bc<br /> </div>[/code:rlt79h9c]\ni change it to\n[code=fw:rlt79h9c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"> HBDIR=c:\\harbour<br /><br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\win\\bcc\\hbziparc.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\win\\bcc\\hbmzip.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\win\\bcc\\hbzlib.lib + >> b32.bc<br /> echo $<span style=\"color: #000000;\">(</span>HBDIR<span style=\"color: #000000;\">)</span>\\lib\\win\\bcc\\minizip.lib + >> b32.bc<br /> </div>[/code:rlt79h9c]\nwhen change to \"real\" Path i got these Error\n[quote:rlt79h9c]Error: Unresolved external '_HB_FUN_OCCURS' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VALTOSTR\nError: Unresolved external '_hb_strAtI' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VSTRFUN1\nError: Unresolved external '_HB_FUN_HB_DEFAULTVALUE' referenced from C:\\BCC7\\LIB\\HBZIPARC.LIB|ziparc\nError: Unresolved external '_HB_FUN_HB_DEFAULT' referenced from C:\\BCC7\\LIB\\HBZIPARC.LIB|ziparc\nError: Unresolved external '_HB_FUN_HB_LEFTEQ' referenced from C:\\BCC7\\LIB\\HBZIPARC.LIB|ziparc\nError: Unresolved external '_HB_FUN_HB_ISEVALITEM' referenced from C:\\BCC7\\LIB\\HBZIPARC.LIB|ziparc\nError: Unresolved external '_HB_FUN_HB_BLEN' referenced from C:\\BCC7\\LIB\\HBZIPARC.LIB|ziparc\nError: Unresolved external '_HB_FUN___OLEVARIANTNEW' referenced from C:\\FWH\\LIB\\FIVEH.LIB|ADOFUNCS\nError: Unresolved external '_hb_extIsNil' referenced from C:\\FWH\\LIB\\FIVEHC.LIB|RICHEDIT\nError: Unresolved external '_HB_FUN_HB_TSTOUTC' referenced from C:\\FWH\\LIB\\FIVEH.LIB|VALTOSTR\nError: Unable to perform link\n\n** error 2 ** deleting account.exe[/quote:rlt79h9c]\nit seem me it use \\BCC7\\LIB and not harbour\\lib\\win\\bcc \nbut where does Error of C:\\FWH\\LIB\\FIVEH.LIB / FIVEHC.LIB come from <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->\n\nwhich LIB Path is to load first <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: --> harbour or BCC Directory <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->",
"time": "20:59",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Jimmy"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Jimmy,\nI am about to convert my DOS accounting to mod harbour.\n\n[img:310jd3xv]https://mybergland.com/fwforum/fibu.jpg[/img:310jd3xv]\n\nCan you start the exe from the samples now? It would be interesting to me. Maybe I can learn from this program.\nBest regards\nOtto",
"time": "01:08",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Otto"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":3bgeopz8]Can you start the exe from the samples now? It would be interesting to me. Maybe I can learn from this program.\n[/quote:3bgeopz8]\nYES, with file from Francisco.",
"time": "01:24",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Jimmy"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "jimmy ,\nI sad to you to use xmate or Fivedit\n\nI sent to you a gif to see how many second I compile acount app with xmate",
"time": "16:28",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Silvio.Falconi"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-05",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n[quote=\"Silvio.Falconi\":1m4fzc0z]I sent to you a gif to see how many second I compile acount app with xmate[/quote:1m4fzc0z]\nthx for Advice.\nbut it make no Difference when Environment does not fit to run FivEdit, xMate or just in DOS-Box.",
"time": "21:42",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Jimmy"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-06",
"forum": "FiveWin for Harbour/xHarbour",
"text": "ok but I sent you the env file for harbor and for xharbour. Believe me compiling with the bath file is quite difficult for those who are beginners, that is, who is trying how Fwh works.\nAs you can see in the gif I sent you to compile the application. \\ Sample \\ account it takes me only a few minutes .... why insist on wanting to use batch files? I really don't understand it\n\nvideo : [url:3bo1mwdj]https://postimg.cc/94DxzDfj[/url:3bo1mwdj]\n\n\n\n[b:3bo1mwdj]XMate[/b:3bo1mwdj]\n\n[b:3bo1mwdj]Compilator Prg [/b:3bo1mwdj]\n\n[img:3bo1mwdj]https://i.postimg.cc/3W5LJJ5P/compilatore-prg.png[/img:3bo1mwdj]\n\n\n[b:3bo1mwdj]Compilator C[/b:3bo1mwdj]\n\n[img:3bo1mwdj]https://i.postimg.cc/DwFTx7Jj/compilatore.png[/img:3bo1mwdj]\n\n\n[b:3bo1mwdj]for make exe and lib [/b:3bo1mwdj]\n[img:3bo1mwdj]https://i.postimg.cc/rpZ2yWh3/exe.png[/img:3bo1mwdj]\n\n\n[b:3bo1mwdj]for make dll[/b:3bo1mwdj]\n[img:3bo1mwdj]https://i.postimg.cc/T1mzcsRv/dll.png[/img:3bo1mwdj]\n\n[b:3bo1mwdj]Linker[/b:3bo1mwdj]\n[img:3bo1mwdj]https://i.postimg.cc/9FP3Rs8G/linker.png[/img:3bo1mwdj]\n\nI use xMate 1999 with success never had problems",
"time": "01:23",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Silvio.Falconi"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "hi,\n[quote=\"Silvio.Falconi\":13om6nqx]I sad to you to use xmate or Fivedit[/quote:13om6nqx]\ni do use FivEdit and it does compile/link without Error ... but with \"wrong\" \\harbour\\LIB path <!-- s:? --><img src=\"{SMILIES_PATH}/icon_confused.gif\" alt=\":?\" title=\"Confused\" /><!-- s:? --> \ni do same with *.BAT and this give me that Error. <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> \n\nso my Question is not \"how\" it is \"why\" <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\np.s. have you try hbIDE <!-- s:idea: --><img src=\"{SMILIES_PATH}/icon_idea.gif\" alt=\":idea:\" title=\"Idea\" /><!-- s:idea: --> \nis a xMate Clone made by Pritpal Bedi using harbour. (Source available )",
"time": "13:08",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Jimmy"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "I tried fiveedit with no success\n\nI use xmate from allways and It run ok\n\nHbide Is not a xmate clone and It never run ok\nIt have some icona of xmate but Is not a clone of xmate but Is made from another ide sources\n\nXmate Is made from Andy and run ok It have a editor\nXmate Is not made with harbour sourced but Is made with another language (dev c)",
"time": "14:56",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Silvio.Falconi"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello Silvio,\nWhere can we download xMate?\nAnd do you have a setup for compiling this accounting program?\nI would only like to see it running.\nBest regards,\nOtto",
"time": "15:11",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Otto"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-09",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[url:or3yss7z]https://bitbucket.org/fivetech/fivewin-contributions/downloads/[/url:or3yss7z]\n\n[url:or3yss7z]http://www.44342.com/clipper-f375-t324-p1.htm[/url:or3yss7z]\n\n[url:or3yss7z]http://www.hmgforum.com/viewtopic.php?t=8[/url:or3yss7z]",
"time": "16:35",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "karinha"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "[quote=\"Otto\":30rpdb23]Hello Silvio,\nWhere can we download xMate?\nAnd do you have a setup for compiling this accounting program?\nI would only like to see it running.\nBest regards,\nOtto[/quote:30rpdb23]\n\nI send to you now",
"time": "12:52",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Silvio.Falconi"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2020-01-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Silvio,\nthank you.\nI will try tomorrow.\nBest regards,\nOtto",
"time": "15:57",
"topic": "C:\\fwh\\samples\\account Problem",
"username": "Otto"
}
] |
C:\fwh\samples\account Problem
|
[
{
"date": "2015-07-17",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Dear\nI am facing runtime error C:\\fwh\\samples\\server\\fwserver.prg\n[list:8luhk76p]Error Log\nApplication\n===========\n Path and name: C:\\fwh\\samples\\server\\fwserver.exe (32 bits)\n Size: 3,130,880 bytes\n Compiler version: Harbour 3.2.0dev (r1406271520)\n FiveWin Version: FWH 14.12\n Windows version: 5.1, Build 2600 Service Pack 3\n\n Time from start: 0 hours 0 mins 0 secs \n Error occurred at: 17/07/15, 12:45:23\n Error description: Error BASE/1004 No exported method: ACTIVATE\n Args:\n [ 1] = U \n\nStack Calls\n===========\n Called from: => ACTIVATE( 0 )\n Called from: fwserver.prg => MAIN( 19 )\n\nSystem\n======\n CPU type: Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz 3300 Mhz\n Hardware memory: 2981 megs\n\n Free System resources: 90 %\n GDI resources: 90 %\n User resources: 90 %\n\n Windows total applications running: 7\n 1 , \n 2 , C:\\WINDOWS\\WinSxS\\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\n 3 , C:\\WINDOWS\\system32\\SHLWAPI.dll \n 4 , C:\\fwh\\samples\\server\\fwserver.exe \n 5 DDE Server Window, C:\\WINDOWS\\system32\\OLE32.DLL \n 6 M, C:\\WINDOWS\\system32\\msctfime.ime \n 7 SysFader, C:\\WINDOWS\\system32\\SHELL32.dll \n\nVariables in use\n================\n Procedure Type Value\n ==========================\n ACTIVATE\n Param 1: O Class: ERROR\n MAIN\n Local 1: U \n Local 2: U \n\nLinked RDDs\n===========\n DBF\n DBFFPT\n DBFBLOB\n DBFCDX\n DBFNTX\n\nDataBases in use\n================\n\n 1: USERS RddName: DBFCDX\n ==============================\n RecNo RecCount BOF EOF\n 1 9 .F. .F.\n\n Indexes in use TagName\n => Users->Name NAME\n\n Relations in use\n\n 2: => INPUT RddName: DBFCDX\n ==============================\n RecNo RecCount BOF EOF\n 1 99 .F. .F.\n\n Indexes in use TagName\n => InPut->Name + DToS( InPut->Date ) +NAME\n\n Relations in use\n\nClasses in use:\n===============\n 1 ERROR\n 2 HBCLASS\n 3 HBOBJECT\n 4 TSERVER\n 5 TWINDOW\n 6 TMDIFRAME\n 7 TMENU\n 8 TMENUITEM\n 9 TBRUSH\n 10 TMDICLIENT\n 11 TFONT\n 12 TCONTROL\n 13 TBAR\n 14 TRECT\n 15 TBTNBMP\n 16 TMSGBAR\n 17 TMSGITEM\n 18 TTIMER\n 19 TREG32\n\nMemory Analysis\n===============\n 214 Static variables\n\n Dynamic memory consume:\n Actual Value: 0 bytes\n Highest Value: 0 bytes\n\u001a[/list:u:8luhk76p]",
"time": "13:31",
"topic": "C:\\fwh\\samples\\server\\fwserver runtime error",
"username": "bpd2000"
}
] |
C:\fwh\samples\server\fwserver runtime error
|
[
{
"date": "2015-07-19",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Any solution ?",
"time": "04:31",
"topic": "C:\\fwh\\samples\\server\\fwserver runtime error",
"username": "bpd2000"
}
] |
C:\fwh\samples\server\fwserver runtime error
|
[
{
"date": "2015-07-19",
"forum": "Bugs report & fixes / Informe de errores y arreglos",
"text": "Dave,\n\nI missed these posts from you,\n\nI am going to review it asap, thanks",
"time": "11:08",
"topic": "C:\\fwh\\samples\\server\\fwserver runtime error",
"username": "Antonio Linares"
}
] |
C:\fwh\samples\server\fwserver runtime error
|
[
{
"date": "2017-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos, he buscado y leido en el foro y en la propia clase TExplorer, y no consigo como cambiar los colores de la clase, necesito quitar el color q viene por defecto o dejarla transparente y cambiar el color de los panales...no veo esa DATA en la clase, tambien necesito desactivar el COLLAPSE de los panleles...ya probe oExpBar:aPanels[1]:lCollapsed := .f. / oExpBar:aPanels[1]:lCollapsed := .t. y sigue igual...lo mas que necesito es el cambio de color de las pestañas(TTaskPanel ) y el fondo de color de la ExplorerBar de FWH.\n\nTambien estoy tratando de colocar en la TTaskPanel un objeto CALENDAR y no se alarga TTaskPanel para que se vea completo el CALENDAR...voy a probar aPanel[1]:nBodyHeight := n\n\nTodo lo hago desde codigo dentro de LAYOUT.\n\nEspero alguna ayuda, sugerencia...saludos...gracias... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "18:47",
"topic": "CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE",
"username": "joseluisysturiz"
}
] |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE
|
[
{
"date": "2017-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Mira se ayuda:\n\n[url:2148j7wf]http://fivewin.com.br/index.php?/topic/27172-texplorerbar/#comment-280326[/url:2148j7wf]\n\nSaludos.",
"time": "18:56",
"topic": "CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE",
"username": "karinha"
}
] |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE
|
[
{
"date": "2017-10-23",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"karinha\":3i7s8fff]Mira se ayuda:\n\n[url:3i7s8fff]http://fivewin.com.br/index.php?/topic/27172-texplorerbar/#comment-280326[/url:3i7s8fff]\n\nSaludos.[/quote:3i7s8fff]\n\nKarinha, es lo q ando buscando pero hay un detalle..y debo revisar haber que pasa, ya que aunque cambia los colores...no toma colores solidos, si no degradado y como necesito quitar completamente el color de la Texploere y los Tpanels, y cambiar el color de titulo de la tpanels, entonces lo cambia a color degradado, reviso y vuelvo a comentar...y lo de EVITAR el COLLAPSE aca lo que hace es COLLAPSADO y necesito evitar que suceda eso, es decir INHABILITAR LA OPCION, gracias por tu rapida respuesta y ayuda, saludos...gracias... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "19:48",
"topic": "CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE",
"username": "joseluisysturiz"
}
] |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE
|
[
{
"date": "2017-10-24",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Jose Luis,\n\nPuedes modificar el código de la Clase TTaskPanel en el método LButtonUp( nRow, nCol, nFlags )",
"time": "08:43",
"topic": "CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE",
"username": "Antonio Linares"
}
] |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE
|
[
{
"date": "2006-04-04",
"forum": "FiveWin para CA-Clipper",
"text": "Estimados amigos, como puedo hacer si usando el tbrowse (LISTBOX) ya estoy en una cja de dialogo y dentro de la misma con un bottom (Buscar) pido una funcion que tiene otra caja de dialogo, lo estoy intentanto y me presenta la caja de dialogo y desaparece alli mismo sin dejarme pedir los datos y cuando regresa me bloque la caja anterior lo unico que puedo es saLIR DE ESA CAJA ANTERIOR, SI ME PUEDEN AYUDAR SE LOS AGRADECERIA",
"time": "14:20",
"topic": "CAJAS DE DIALOGOS",
"username": "Wneskers"
}
] |
CAJAS DE DIALOGOS
|
[
{
"date": "2006-04-04",
"forum": "FiveWin para CA-Clipper",
"text": "Revisa el ejemplo samples\\fwbrow.prg. \n\nDesde el browse de clientes puedes abrir una caja de diálogo con los detalles del cliente y luego regresas al browse.",
"time": "15:22",
"topic": "CAJAS DE DIALOGOS",
"username": "Antonio Linares"
}
] |
CAJAS DE DIALOGOS
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Amigo tengo la necesidad de saber cuando meses hay entre 2 periodos :\n\nejemplo:\n\n04-2017 al 01-2018 hay 9 meses\nesos quiero y para cualquier periodo que me sirva (mysql)\n\nsaludos",
"time": "02:42",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "jbrita"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Saludos, usa en MySql, saludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->\n\nTIMESTAMPDIFF \nSELECT TIMESTAMPDIFF(MONTH,'2009-05-18','2010-07-29');\n<!-- m --><a class=\"postlink\" href=\"http://www.w3resource.com/mysql/date-and-time-functions/mysql-timestampdiff-function.php\">http://www.w3resource.com/mysql/date-an ... nction.php</a><!-- m -->\n\nPERIOD_DIFF()\nSELECT PERIOD_DIFF(200905,200811); \n<!-- m --><a class=\"postlink\" href=\"http://www.w3resource.com/mysql/date-and-time-functions/mysql-period_diff-function.php\">http://www.w3resource.com/mysql/date-an ... nction.php</a><!-- m -->\n<!-- m --><a class=\"postlink\" href=\"https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_period-diff\">https://dev.mysql.com/doc/refman/5.7/en ... eriod-diff</a><!-- m -->",
"time": "08:04",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "joseluisysturiz"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "algo do tipo:\n d1 := ctod(\"01/01/2016\")\n d2 := ctod(\"01/01/2017\")\n alert((d2-d1)/30)",
"time": "16:07",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "Sistem"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "gracias Jose funciono bien... otra consulta mas\n\n\t[b:3s579jqe]si al Generar Cobro\t\t\t\t\t\n\t\tmes\t8\t\t\t\t\n\t\tAño\t2017\t[/b:3s579jqe]\t\t\t\n\t\t\t\t\t\t\t\n12/04/2017\t\t\tquedaria asi\t12/08/2017\t\t\t\n\t\t\t\t\t\t\t\npero cuando el dia es mayor al de otro mes:\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t[b:3s579jqe]Generar Cobro\t\t\t\t\t\n\t\tmes\t9\t\t\t\t\n\t\tAño\t2017\t\t[/b:3s579jqe]\t\t\n\t\t\t\t\t\t\t\n31/08/2017\t\tcomo quedaria aca\t\t31/09/2017\testo quedaria malo ya que septiembre\t\t\n\t\t\t\ttiene hasta 30 dias,\ttendria que ser\t30-09-2017\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t[b:3s579jqe]Generar Cobro\t\t\t\t\t\n\t\tmes\t2\t\t\t\t\n\t\tAño\t2017[/b:3s579jqe]\t\t\t\t\n\n\t\t\n31/01/2017\t\tcomo quedaria aca\t\t31/02/2017\testo quedaria malo ya que septiembre\t\t\n\t\t\t\t\ttiene hasta 30 dias,\ttendría que ser\t\t28-02-2017\t\n\nen mysql como seria, ya que quiero conservar el dia, pero si el dia del mes anterior es mayor a ahi mi problema\n\nsaludos",
"time": "17:22",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "jbrita"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Tienes la function harbour EoM( dDate ) devuelve el último día del mes dDate. Si lo que se busca el es primer día del mes, Harbour ya tiene una función nativa: BoM( dDate )",
"time": "17:59",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "cnavarro"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "cnavarro, lo que quiero es consrevar el dia en el mes anterior \n\nsaludos",
"time": "20:19",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "jbrita"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-03",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Algo asi?\n\n[code=fw:h5tcx5d5]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />Set Date Brit<br />Set Century <span style=\"color: #0000ff;\">On</span><br /><br />Use Banco_de_Dados_1<br />Sele <span style=\"color: #000000;\">0</span><br />Use Banco_de_Dados_2<br /><br />Sele Banco_de_Dados_1<br /><span style=\"color: #00C800;\">While</span> !Eof<span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br /> Grava_dias<span style=\"color: #000000;\">(</span> Codigo, Data_Inicial, Data_Final <span style=\"color: #000000;\">)</span><br /> Skip<br /><span style=\"color: #00C800;\">EndDo</span><br /><span style=\"color: #00C800;\">Return</span> <span style=\"color: #00C800;\">Nil</span><br /><br /><span style=\"color: #00C800;\">Function</span> Grava_Dias<span style=\"color: #000000;\">(</span> xCodigo, dData_Ini, dData_Fim <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Local</span> i, nQtd_Dias:=<span style=\"color: #000000;\">0</span>, nQual_Mes:=Month<span style=\"color: #000000;\">(</span> dData_Ini <span style=\"color: #000000;\">)</span><br /><span style=\"color: #00C800;\">Local</span> dFim_Check:=dData_Ini, lPri_mes:=.t.<br /><span style=\"color: #00C800;\">Local</span> cAlias:=<span style=\"color: #0000ff;\">Alias</span><span style=\"color: #000000;\">(</span><span style=\"color: #000000;\">)</span><br />Sele Banco_De_Dados_2<br /><span style=\"color: #00C800;\">While</span> <span style=\"color: #000000;\">(</span> dFim_Check < dData_Fim <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">If</span> Month<span style=\"color: #000000;\">(</span> dFim_Check <span style=\"color: #000000;\">)</span> # <span style=\"color: #000000;\">(</span> nQual_Mes <span style=\"color: #000000;\">)</span><br /> Append Blank<br /> nQtd_Dias:=<span style=\"color: #00C800;\">If</span><span style=\"color: #000000;\">(</span>lPri_mes, nQtd_Dias<span style=\"color: #000000;\">-1</span>, nQtd_Dias<span style=\"color: #000000;\">)</span><br /> Replace Codigo With xCodigo<br /> Replace Qtd_Dias With nQtd_Dias<br /> Replace Mes_De_Referencia With <span style=\"color: #0000ff;\">Right</span><span style=\"color: #000000;\">(</span> DToC<span style=\"color: #000000;\">(</span> dFim_Check<span style=\"color: #000000;\">-1</span> <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">7</span> <span style=\"color: #000000;\">)</span><br /> lPri_mes:=.f.<br /> nQtd_Dias:=<span style=\"color: #000000;\">0</span><br /> nQual_Mes:=Month<span style=\"color: #000000;\">(</span> dFim_Check <span style=\"color: #000000;\">)</span><br /> <span style=\"color: #00C800;\">EndIf</span><br /> nQtd_Dias++<br /> dFim_Check++<br /> <span style=\"color: #00C800;\">If</span> <span style=\"color: #000000;\">(</span> dFim_Check = dData_Fim <span style=\"color: #000000;\">)</span><br /> nQtd_Dias:=Day<span style=\"color: #000000;\">(</span> dData_Fim <span style=\"color: #000000;\">)</span><br /> Append Blank<br /> Replace Codigo With xCodigo<br /> Replace Qtd_Dias With nQtd_Dias<br /> Replace Mes_De_Referencia With <span style=\"color: #0000ff;\">Right</span><span style=\"color: #000000;\">(</span> DToC<span style=\"color: #000000;\">(</span> dFim_Check <span style=\"color: #000000;\">)</span>, <span style=\"color: #000000;\">7</span> <span style=\"color: #000000;\">)</span><br /> Exit<br /> Endi<br /><span style=\"color: #00C800;\">EndDo</span><br />Sele cAlias<br />Retu <span style=\"color: #00C800;\">Nil</span><br /> </div>[/code:h5tcx5d5]",
"time": "21:17",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "karinha"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"jbrita\":1vzohl5m]gracias Jose funciono bien... otra consulta mas\n\n\t[b:1vzohl5m]si al Generar Cobro\t\t\t\t\t\n\t\tmes\t8\t\t\t\t\n\t\tAño\t2017\t[/b:1vzohl5m]\t\t\t\n\t\t\t\t\t\t\t\n12/04/2017\t\t\tquedaria asi\t12/08/2017\t\t\t\n\t\t\t\t\t\t\t\npero cuando el dia es mayor al de otro mes:\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t[b:1vzohl5m]Generar Cobro\t\t\t\t\t\n\t\tmes\t9\t\t\t\t\n\t\tAño\t2017\t\t[/b:1vzohl5m]\t\t\n\t\t\t\t\t\t\t\n31/08/2017\t\tcomo quedaria aca\t\t31/09/2017\testo quedaria malo ya que septiembre\t\t\n\t\t\t\ttiene hasta 30 dias,\ttendria que ser\t30-09-2017\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t[b:1vzohl5m]Generar Cobro\t\t\t\t\t\n\t\tmes\t2\t\t\t\t\n\t\tAño\t2017[/b:1vzohl5m]\t\t\t\t\n\n\t\t\n31/01/2017\t\tcomo quedaria aca\t\t31/02/2017\testo quedaria malo ya que septiembre\t\t\n\t\t\t\t\ttiene hasta 30 dias,\ttendría que ser\t\t28-02-2017\t\n\nen mysql como seria, ya que quiero conservar el dia, pero si el dia del mes anterior es mayor a ahi mi problema\n\nsaludos[/quote:1vzohl5m]\n\nSaludos, us SELECT PERIOD_DIFF(201704,201708), eso te toma en cuenta solo los meses, solo debes extraer el año y el mes, concatenarlos antes y se lo pasas a esta funcion...saludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->\n\nManejadores de fechas en mysql\n\n<!-- m --><a class=\"postlink\" href=\"https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_period-diff\">https://dev.mysql.com/doc/refman/5.7/en ... eriod-diff</a><!-- m -->",
"time": "16:17",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "joseluisysturiz"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-04",
"forum": "FiveWin para Harbour/xHarbour",
"text": "Aca te dejo una forma mas exacta usando la fecha completa, de la forma que te lo coloco ya lo probe con diferentes fechas, has las pruebas de fuego...saludos... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> \n\nSELECT PERIOD_DIFF( DATE_FORMAT('2017-04-15', '%Y%m'), DATE_FORMAT('2018-06-12', '%Y%m') )\n\n<!-- m --><a class=\"postlink\" href=\"http://mysql.conclase.net/curso/?sqlfun=PERIOD_DIFF\">http://mysql.conclase.net/curso/?sqlfun=PERIOD_DIFF</a><!-- m -->\n\n<!-- m --><a class=\"postlink\" href=\"http://www.w3resource.com/mysql/date-and-time-functions/mysql-period_diff-function.php\">http://www.w3resource.com/mysql/date-an ... nction.php</a><!-- m -->",
"time": "16:45",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "joseluisysturiz"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "muchs gracias resulto todo bien\n\nsaludos",
"time": "00:38",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "jbrita"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2017-08-08",
"forum": "FiveWin para Harbour/xHarbour",
"text": "[quote=\"jbrita\":2jk9wgwd]muchs gracias resulto todo bien\n\nsaludos[/quote:2jk9wgwd]\nOk, era la idea, si puedes colocale al tema..SOLUCIONADO para que otros usuarios sepan y consigan solucion rapidamente si les pasa lo mismo, saludos, gracias... <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: -->",
"time": "01:27",
"topic": "CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO",
"username": "joseluisysturiz"
}
] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO
|
[
{
"date": "2010-04-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "iF i CALL A VARIABLE FROM A FILE Ini\n\nSAMPLE :\n\n Local lRecordSelector := GetPvProfString(\"Browse\", \"RecordSelector\",\".F.\", cIniFile)\n\nit sad me it was a char variable and I cannot insert it on xbrowse \n sample \n\n WITH OBJECT oBrw1\n[b:nvscv72v] :lRecordSelector := lRecordSelector [/b:nvscv72v]\nend\n\n there is a function to converte a char variable on logic variable ?\n\nor \n\nHow I can to make it ?",
"time": "16:21",
"topic": "CALL A VARIABLE logic FROM A FILE ini",
"username": "MdaSolution"
}
] |
CALL A VARIABLE logic FROM A FILE ini
|
[
{
"date": "2010-04-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "Hello\n\n\nLocal lRecordSelector := GetPvProfString(\"Browse\", \"RecordSelector\",\".F.\", cIniFile) == \".T.\"\n\nor you can use TIni class, check FWH\\SAMPLES\\testini.prg",
"time": "17:03",
"topic": "CALL A VARIABLE logic FROM A FILE ini",
"username": "Daniel Garcia-Gil"
}
] |
CALL A VARIABLE logic FROM A FILE ini
|
[
{
"date": "2010-04-12",
"forum": "FiveWin for Harbour/xHarbour",
"text": "no funciona, Daniel !\nQuiero salvar a algunas variables para mostrar el xbrowse y quiero grabar la configuración del archivo INI",
"time": "19:31",
"topic": "CALL A VARIABLE logic FROM A FILE ini",
"username": "MdaSolution"
}
] |
CALL A VARIABLE logic FROM A FILE ini
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.