topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
C++Builder® - Community Edition | Buen día,
Esto es interesante
<!-- 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 -->
Slds |
C++Builder® - Community Edition | Hi,
Good news
<!-- 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 -->
Regards, |
C++Compiler - FREE TOOL | 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,
esta nueva version es la la que esta incluida en el rad 10.1 con código
[url:21nwen6i]https://www.embarcadero.com/free-tools/ccompiler[/url:21nwen6i]
ya 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
en esta ocacion ellos liberan esa parte de su producto para que personas como nosotros que trabajamos en modo consola la usemos sin ninguna traba.
salu2
carlos vargas
--------------------------------------------------------------------
[quote:21nwen6i]Installing and Using the Embarcadero C++ 10.1 ‘Berlin’ Compiler and
Command-line Tools
==================
How do I install the Embarcadero 10.1 Berlin Compiler and command-
line tools? This document takes a look at what's contained in the free
download and shows how you can start building programs.
Contents:
# Introduction and basic information
# Detailed information about the compiler, including a list of all included
tools
# Resources
# Putting it all together - using the compiler
# Detailed installation instructions (check this if you’re having trouble)
# Final words
# Acknowledgements
Introduction
============
The Embarcadero 10.1 Berlin C++ compiler is a free, Clang-based compiler for
32-bit Windows. The download includes a number of other tools, as well as the
Dinkumware STL and headers and import libraries required to build both
command-line and GUI Windows applications.
You are welcome and encouraged to use the tools, including for learning C++ or
ensuring C++ code you maintain is compatible with this compiler.
Basic Information
-----------------
To install the Embarcadero C++ 10.1 Berlin Free Command-line Tools, simply
right-click on the downloaded zip file, click ‘Extract All…’ in the popup
menu, and choose all of the default options. You need to add the ‘bin’ folder
to your system path, and then the compiler can be used immediately. If you are
not sure how to do that, instructions are included at the end of this
document.
Use of the C++ 10.1 Berlin compiler assumes the user is comfortable working
within a console interface.
Typically, the user will run an application such as Notepad or Sublime Text to
actually write their program (an editor is not supplied with the compiler).
When the user wishes to compile source code, they save the file out as
"filename.cpp" and then use the command-line tools from the command prompt to
compile and create an executable. Like so:
bcc32c filename.cpp
The first argument is name of the compiler tool, and the second argument
contains the C++ source file. This application will attempt to compile the
source code and will notify the user of any errors in the code. If no errors
are found it will create an executable. To display information regarding the
various switches, type
bcc32c -h
There are a wide variety of switches. To get further information on any
switch, add that switch after the “-h”. For example, to get more information
on “-a” (set data alignment boundary), type
bcc32c -h -a
Testing the compiler
--------------------
Open a console window:
Start | Run... (or click the search box in Windows 10)
Type "cmd" into the field [Enter]
Create a directory or navigate to where you want to store your source, for
example:
Type "cd"
Type "mkdir MySource"
cd Mysource
(Now in “c:\users\You\MySource” or similar depending on your version of
Windows.)
Create a new source file, for example:
Type 'notepad hello.cpp' to edit in Windows Notepad. It will ask if you
want to create a new file; click Yes.
Paste or type the following code in the editor:
#include <iostream>
int main(void)
{
std::cout << "Hello world!" << std::endl;
return 0;
}
Save the changes (File menu, Save, in Notepad).
Compile the program to create an executable:
In the console window, type
bcc32c hello.cpp
Finally, you can run the application you created. In the console window, type
hello
(The output will appear below your last command line.)
Detailed information about the compiler and command-line tools
--------------------------------------------------------------
First, let's look at the directory structure. The root by default is called
BCC101. Under this directory you will find:
Bin
Include
Lib
Bin
Bin is short for binaries. Under this directory you will find all of the
command-line tools (as well as RTL dynamic libraries). There are a wide
variety of tools, many more than just the compiler and linker.
All tools are command-line; that is, they must be run from a command prompt.
Complete list of tools in \bin
------------------------------
bcc32c
This is the compiler itself. Use the -h option to see all options. See
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/BCC32C">http://docwiki.embarcadero.com/RADStudi ... /en/BCC32C</a><!-- m --> Compiler
Configuration file
The compiler also uses a configuration file, bcc32c.cfg. The files contain
options that would otherwise be passed on the command line. The download
contains a configuration file with default values that should work on your
system.
cpp32c
This is a C++ preprocessor. It allows you to see
the initial operations performed on C or C++ files before they are compiled,
ie expansion of #includes and processing of #defines. See
<!-- 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 -->
reprocessor
grep
A tool for searching text files (such as source code) for matching strings.
See
<!-- 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 -->
tility
ilink32
The linker, which combines compiler-output object files into an
executable file. It is normally invoked by the compiler. See <!-- m --><a class="postlink" href="http://docwiki.em">http://docwiki.em</a><!-- m -->
barcadero.com/RADStudio/Berlin/en/ILINK32.EXE,_the_32-bit_Incremental_Linker
implib
This takes either a DLL or a module definition file as input, and creates an
import library (.lib). For more information, see
<!-- 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 -->
ary_Tool_for_Win32
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/Linking_DLLs_(C++">http://docwiki.embarcadero.com/RADStudi ... _DLLs_(C++</a><!-- m -->)
make
A tool used to run commands based on file dependencies, usually used to help
compile a project of many source files. See
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/MAKE.EXE">http://docwiki.embarcadero.com/RADStudi ... n/MAKE.EXE</a><!-- m -->
tdump
Displays a large amount of information about the structure of a .exe, .lib or
.obj file, including debug information, exports, and more. See
<!-- 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 -->
tlib
Manages libraries (.lib files) created from several object files (.obj.) You
can create a library from several .obj files, add or remove .obj files,
replace .obj files, etc. See
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/TLIB.E">http://docwiki.embarcadero.com/RADStudi ... /en/TLIB.E</a><!-- m -->
XE,_the_Library_Manager
touch
Sets the last-modified date and time of one or more files to the current time
or a specified time. See
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/TOUCH.EXE">http://docwiki.embarcadero.com/RADStudi ... /TOUCH.EXE</a><!-- m -->
For general information about all command-line utilities, see
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/Command-">http://docwiki.embarcadero.com/RADStudi ... n/Command-</a><!-- m -->
Line_Utilities_Index
Include
-------
This directory contains all of the header files for the RTL, the STL
(Dinkumware) and the Windows SDK.
lib\win32c
There are two subfolders, debug and release. These contain all of the static
and import library files and startup code modules for debug or release builds.
Resources
=========
Embarcadero has extensive help online in the ‘docwiki’ for the tools,
libraries, C++ itself, and the larger product this compiler is a small part
of, C++Builder. You can find it at
<!-- m --><a class="postlink" href="http://docwiki.embarcadero.com/RADStudio/Berlin/en/Main_Page">http://docwiki.embarcadero.com/RADStudi ... /Main_Page</a><!-- m -->
There is also a Google Plus community at
<!-- m --><a class="postlink" href="https://plus.google.com/communities/118315259185736124693">https://plus.google.com/communities/118 ... 5736124693</a><!-- m -->
Embarcadero has regular blogs and articles on the Community site:
<!-- 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 -->
A very wide range of blogs on the general RAD Studio family (including
C++Builder’s sister product, Delphi) can be found at <!-- m --><a class="postlink" href="https://www.beginend.net/">https://www.beginend.net/</a><!-- m -->
We 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
excellent resources for learning C++.
This compiler is for Windows 32-bit only. If you would like to compile, debug
etc for Windows 64-bit, iOS, Android, or OSX in addition to Win32 (and
possibly even more platforms by the time you read this), you can find the full
compiler and IDE suite as part of C++Builder:
<!-- m --><a class="postlink" href="https://www.embarcadero.com/products/cbuilder">https://www.embarcadero.com/products/cbuilder</a><!-- m -->
We specialise in cross-platform C++, where you can compile, debug and deploy
for many platforms using one IDE and one compiler framework. This includes UI
design - there is no need to create separate UIs in platform-specific
software; create it once (with per-platform tweaks using the multi-device
designer, including platform-native controls) and save yourself a lot of time.
We also have world-class database and enterprise services frameworks, and all
this can be used with the same source on all platforms. This greatly
accelerates your app development, and we’re very proud of it. We encourage you
to check it out at <!-- m --><a class="postlink" href="https://www.embarcadero.com/products/cbuilder">https://www.embarcadero.com/products/cbuilder</a><!-- m -->
Okay, advertising over now. (But seriously, go have a look.)
Putting it all together
=======================
So, now that you are armed with all this information you are probably
wondering "How do I turn my source code into a program?" We will start with
the simplest case of a single source file, console program. Here is the source
code of a file called simple.cpp that I wrote in the text editor, Notepad:
#include <stdio.h>
int main(void)
{
printf("Output from running program");
return 0;
}
To build this into a program we only need to call the compiler and tell it the
filename of the C++ file to compile:
bcc32c simple.cpp
The resulting program is called simple.exe and can be run by typing “simple”
at the command-line. You can change the output name by using the “-o” switch
and specifying a different filename.
Now, let's look at the case of a console program with two source modules.
simple.cpp will contain our entry point main and will call a function defined
in the other module, funcs.cpp. The first example was very simple, barely
worth calling C++, so this example includes a couple of C++11 features.
simple.cpp:
#include "funcs.h"
int main(void)
{
const std::string str = GetMessage();
std::cout << str << std::endl;
const int a = 4;
PrintResult([=]() { return a + str.length(); });
}
funcs.h:
#include <string>
#include <iostream>
template <typename F>
void PrintResult(F f) { std::cout << f() << std::endl; }
std::string GetMessage();
and funcs.cpp:
#include "funcs.h"
std::string GetMessage()
{
return "Hello world.";
}
To build this, simply add funcs.cpp to the previous compiler command-line as
such:
bcc32c simple.cpp funcs.cpp
The output simple.exe file will be generated and you can run it from the
command line, where it will print a message.
So what happens if you have a bunch of different include and library
directories, or hundreds of source files? As you can imagine the command-line
for this would be huge. You have two choices: wrap up all of these commands
into a batch file, or write a makefile to use with the ‘make’ utility, which
is included in the bin folder.
You can also use CMake specifying the Borland makefile generator. Here is an
example batch script (.bat file):
REM Make sure cmake.exe, bcc32c.exe and borland make.exe are in the Path
@echo off
mkdir build
cd build
cmake -G"Borland Makefiles" -DCMAKE_CXX_COMPILER="bcc32c.exe"
-DCMAKE_C_COMPILER="bcc32c.exe" -DCMAKE_VERBOSE_MAKEFILE=1 ..
make
cd ..
echo CMakeBCC: Results available in 'build' folder
When copy/pasting, make sure the “cmake -G…” line (with several -DCMAKE_ flags)
is all on one line.
Detailed Installation
=====================
If you’re having trouble installing, follow the instructions in this section.
Extracting the zip file
-----------------------
Unzip the downloaded file to any location. For example, it could be unzipped
to c:\BCC101\. Do this by right-clicking on the file in Explorer, selecting
“Extract To…” on the popup menu, and clicking Ok until it’s complete.
Configuring the system path The location of the compiler must be in your
system path.
Find the location where you unzipped the downloaded file. This should be a
folder with three subfolders (\bin, \include and \lib.) For example, if you
extracted to the c:\ drive you may have a folder ‘c:\BCC101\bin’. You can
extract the downloaded file to any location, and you can copy/paste the
location from Explorer by clicking in the path edit box and selecting the
text, then pressing Ctrl+C or right-clicking and choosing Copy.
Add a path reference to the Environment variables
-------------------------------------------------
Open the system properties:
In Windows 7: Using the mouse, right-click on the "My Computer" icon (on
your desktop), and choose "Properties". In Windows 10: Open an Explorer
window. Using the mouse, right-click on “This PC” and choose “Properties”.
Then, click on “Advanced system settings” in the left-side pane.
Click on the "Advanced" tab.
Click on the "Environment Variables..." button.
Highlight the "Path" System variable (bottom). Click on the "Edit..."
button.
Add the path to the \bin folder:
In Windows 7: Append the line with ";c:\BCC101\BIN;" (or your
installation folder)
In Windows 10: Click the “New” button, and enter “c:\BCC101\bin” in
the text box that appears below the other items in the list. Press
Enter.
Click OK (in the "Edit System Variables" (Windows 7) or “Edit environment
variables” (Windows 10) dialog)
Click OK (in the "Environment Variables" window) and click OK (in the
"System Properties" window)
Testing the compiler is in the system path
------------------------------------------
Open a console window:
Start | Run... (or click the search box in Windows 10)
Type "cmd" into the field [Enter] (or 'command', if 'cmd' is not found)
Now, in the console window, type the following:
bcc32c
You should see text in the console,
Embarcadero C++ 7.20 for Win32 Copyright (c) 2012-2016 Embarcadero
Technologies, Inc.
If you do not, double-check that the system path settings point to the “bin”
folder where you extracted the download zip file.
Final words
===========
We hope you find these tools useful. Go forth and code!
Acknowledgements
================
This was based on a previous community article on the older Embarcadero
Developer Network (EDN) web site written by John Thomas, further modified by
Marco Cantù, further modified by David Millington.
[/quote:21nwen6i] |
C++Compiler - FREE TOOL | Gracias
Carlos.
Lo probaré.
Saludos,
Adhemar |
C++Compiler - FREE TOOL | Comenzaremos a usarlo después de publicar FWH 16.06 |
C++Compiler - FREE TOOL | Excelente Maestro.
Saludos
Ruben Dario Fernandez |
C++Compiler - FREE TOOL | He conseguido compilar un programa sin demasiados problemas. El ejecutable en bcc7 salia de 6265kb. con bcc101 sale de 6197kb. Casi igual ..
En velocidad , aparentemente la misma a pesar de ser distinto compilador .
He usado xmate para compilar y la linea de compilacion por si alguien la quiere es :
%C_BIN_INSTALL%\Bcc32c.Exe -cc1 -triple i686-pc-win32-omf -w
-emit-obj
-disable-llvm-verifier
-mrelocation-model static
-fno-merge-all-constants
-fmath-errno
-masm-verbose -v -ffunction-sections -nobuiltininc
-I%HB_INC_INSTALL%
-I%C_INC_INSTALL%
-I%C_INC_INSTALL%\windows\crtl
-I%C_INC_INSTALL%\dinkumware64
-I%C_INC_INSTALL%\windows\crtl
-I%C_INC_INSTALL%\windows\sdk
-O2
-ferror-limit 50 -fmessage-length 126 -fno-use-cxa-atexit
-fborland-extensions -std=c++11 -fcxx-exceptions -fexceptions -fseh
-fdiagnostics-show-option
-fcolor-diagnostics
-backend-option -vectorize-loops
-cxx-abi borland
-o%OBJ% -x c++ %C%
Saludos. |
C++Compiler - FREE TOOL | eso es un ejecutable en modo consola, no es asi?
pudieras compartir el archivo env de xmate por favor.
salu2
carlos vargas |
C++Compiler - FREE TOOL | Como indica Manuel el .EXE es un poco mas pequeño.
Compila perfecto con UEstudio.
Saludos,
Adhemar |
C++Compiler - FREE TOOL | [quote="carlos vargas":2wygpmkf]eso es un ejecutable en modo consola, no es asi?
pudieras compartir el archivo env de xmate por favor.
salu2
carlos vargas[/quote:2wygpmkf]
No es un ejecutable fivewin . Mañana cuando llegue a la tienda te comparto el archivo env sin problema ....
Por 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 . |
C++Compiler - FREE TOOL | [quote="carlos vargas":82v8mznk]eso es un ejecutable en modo consola, no es asi?
pudieras compartir el archivo env de xmate por favor.
salu2
carlos vargas[/quote:82v8mznk]
Aqui dejo el archivo env utilizado . Tendras que cambiar a tus paths y quitar un par de librerias que uso ...
Ojo tambien con el problema de activex ... esto no se solucionará hasta que se recompilen las librerias de fwh ,
En concreto el problema es este :
Error description: Error TOleAuto/-1 Invalid argument to contructor!: TOLEAUTO:NEW
Args:
[ 1] = U
Stack Calls
===========
Called from: => THROW( 0 )
Called from: xhb\xhbole.prg => TOLEAUTO:NEW( 0 )
Called from: activex.prg => TACTIVEX:INITIATE( 131 )
------------------------------------
el archivo env .
[Environment]
Description 1=harbour + fwh16.6 para Bcc101
Description 2=
Description 3=
PRG Compiler ver=
C compiler ver=7.2
Subsystem=
Author=manuel
Last update=07/25/2016
[Advanced]
Command types=1,1,1,1,1,1,1,1,1
[Harbour]
HB_INSTALL=C:\Harbour
HB_COMMAND=%HB_BIN_INSTALL%\Harbour.Exe %PRG% /m /n0 /es2 /a /v /i%HB_INC_INSTALL% /ic:\fwh\include;%C_INSTALL%\include
Option prefix=/
[C]
C_INSTALL=C:\BCC101
C_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%
C_LIB_COMMAND=%C_BIN_INSTALL%\TLib.Exe %LIB% /P512 @%RSP% , %LST%
C_LINK_COMMAND=%C_BIN_INSTALL%\iLink32.Exe -Gn -aa -Tpe -s @%LNK%
C_RC_COMMAND=%C_BIN_INSTALL%\rc.EXE /I%C_INSTALL%\include /i%C_INC_INSTALL%\windows\sdk /i%C_INC_INSTALL%\windows\crtl %RC%
C_DLL_COMMAND=//%C_BIN_INSTALL%\BRC32.EXE /r %RC%
Option prefix=-
[User]
POSTEXE_COMMAND=
POSTLIB_COMMAND=
POSTDLL_COMMAND=
[Files]
%C_LIB_INSTALL%\win32c\release\c0w32.obj=1
C:\fwh\lib\barlib32x.lib=2
C:\fwh\lib\graficas.lib=3
C:\fwh\lib\FiveH.lib=4
C:\fwh\lib\FiveHC.lib=5
%HB_LIB_INSTALL%\rddfpt.lib=6
%HB_LIB_INSTALL%\hbsix.lib=7
%HB_LIB_INSTALL%\hbrtl.lib=8
%HB_LIB_INSTALL%\hbvm.lib=9
%HB_LIB_INSTALL%\rddcdx.lib=10
%HB_LIB_INSTALL%\hbrdd.lib=11
%HB_LIB_INSTALL%\rddntx.lib=12
%HB_LIB_INSTALL%\hblang.lib=13
%HB_LIB_INSTALL%\hbmacro.lib=14
%HB_LIB_INSTALL%\hbdebug.lib=15
%HB_LIB_INSTALL%\hbcommon.lib=16
%HB_LIB_INSTALL%\hbpp.lib=17
%HB_LIB_INSTALL%\gtgui.lib=18
%HB_LIB_INSTALL%\hbpcre.lib=19
%HB_LIB_INSTALL%\hbcpage.lib=20
%HB_LIB_INSTALL%\hbwin.lib=21
%HB_LIB_INSTALL%\hbcplr.lib=22
%C_LIB_INSTALL%\win32c\release\CW32.LIB=23
%C_LIB_INSTALL%\win32c\release\IMPORT32.LIB=24
%C_LIB_INSTALL%\win32c\release\psdk\odbc32.LIB=25
%C_LIB_INSTALL%\win32c\release\psdk\rasapi32.LIB=26
%C_LIB_INSTALL%\win32c\release\psdk\nddeapi.lib=27
%C_LIB_INSTALL%\win32c\release\psdk\msimg32.lib=28
%C_LIB_INSTALL%\win32c\release\PSDK\psapi.lib=29
%C_LIB_INSTALL%\win32c\release\psdk\iphlpapi.lib=30
c:\fwh\lib\ace32.lib=31
%HB_LIB_INSTALL%\rddads.lib=32
%HB_LIB_INSTALL%\hbct.lib=33
%HB_LIB_INSTALL%\xhb.lib=34
%C_LIB_INSTALL%\win32c\release\psdk\UUID.lib=35
%C_LIB_INSTALL%\win32c\release\psdk\ws2_32.lib=36
%HB_LIB_INSTALL%\hbziparc.lib=37
%HB_LIB_INSTALL%\hbmzip.lib=38
%HB_LIB_INSTALL%\hbzlib.lib=39
%HB_LIB_INSTALL%\minizip.lib=40
%HB_LIB_INSTALL%\png.lib=41
%HB_LIB_INSTALL%\hbmxml.lib=42
%HB_LIB_INSTALL%\mxml.lib=43
%C_LIB_INSTALL%\win32c\release\PSDK\shell32.lib=44
%C_LIB_INSTALL%\win32c\release\psdk\GdiPlus.lib=45 |
C++Compiler - FREE TOOL | Mil gracias. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
C++Compiler - FREE TOOL | Hola a todos,
Tengo 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 :
"No se encuentra el punto de entrada del procedimiento InterlockedCompareExchange64 en la biblioteca de vinculos dinamicos KERNEL32.DLL" |
C++Compiler - FREE TOOL | Albeiro,
Puedes probarlo con bcc 7.0 ?
gracias |
C++Compiler - FREE TOOL | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=192662#p192662">viewtopic.php?p=192662#p192662</a><!-- l --> |
C++Compiler - FREE TOOL | Antonio,
Con bcc 7.0 funciona bien. |
C++Compiler - FREE TOOL | Antonio,
Probe haciendo los cambios en winbase.h y presenta el mismo error :
"No se encuentra el punto de entrada del procedimiento InterlockedCompareExchange64 en la biblioteca de vinculos dinamicos KERNEL32.DLL"
Estoy usando UEstudio |
C++Compiler - FREE TOOL | Albeiro,
En unos dias publicaremos FWH 16.06 y una vez publicado empezaremos a probar bcc 7.20 |
C++Compiler - FREE TOOL | Gracias Antonio |
C++Compiler - FREE TOOL | Hola,
Existe un .bat de compilacion para BCC 10.1 ? |
C++Compiler - FREE TOOL | BCC 10.2.3 (the lastest) can't be used with current FWH build, as far as I know.
EMG |
C-Problem | Question to the C-programmers:
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?
[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] |
C-Problem | Günther,
[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]
Not sure if that is what you are looking for. Is targetL a string or a number ? I have assumed that it is a string |
C-Problem | Antonio, thanks! The above code is from the headerfile.
This 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
[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] |
C-Problem | Günther,
But Mc5Message81C is a Class name, why do you want to fill an object with a string ?
Do you want to replace the contents of the object ?
Do you have some example code ? |
C-Problem | 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!?
[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] |
C-Problem | Günther,
Use memcpy( unsigned char * destination, unsiged char * source, int size ) |
C-Problem | Antonio, thanks very much! |
C-function in FWH | Hi,
In a SQL-database is a field with time and date, and I want to read it in FWH.
You can read it in C with the FromFileTime() function.
Can I convert it to FWH?
This is an example in C that convert the value.
[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] |
C-function in FWH | Marc,
Do you mean that you want to execute that C++ code from Harbour ?
Do you want to retrieve the date and time of a file ?
Can't you use a SQL query to retrieve those values from that field ?
Not sure what you mean |
C-function in FWH | Antonio,
Now if I show that field in the SQL-table, I see the value '131032008000002432'
I want to convert thqt value to a readable time/date format.
The C-function FromFileTime() should do that. |
C-function in FWH | Marc,
What C compiler are you using ?
We may try it using a C++ file |
C-function in FWH | Antonio,
I use BCC as compiler.
A programmer that use that database,gave me that function after I asked him how I can convert it.
He also gave me an VB example
[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]
Then he gave me also that C++ example, after I told him that my program is compiled with a C-compiler.... |
C-function in FWH | Marc,
We need Mr. Rao's advise
surely he knows the best way to solve this without having to use C++ |
C-function in FWH | Antonio,
Is it not possible to use that function with
[code=fw:7loq1wxm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#pragma</span> BEGINDUMP</div>[/code:7loq1wxm]
like you do with onther C-functions? |
C-function in FWH | Marc,
As such code uses C++ we need to create a .cpp file or use VSC2015 as we use C++ mode with it
Using Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode |
C-function in FWH | [quote:bfnsau9o]Using Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode[/quote:bfnsau9o]
Antonio, 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".
In 32bit we have to use compiler-switch -P |
C-function in FWH | We need to use BEGINDUMP and ENDDUMP only in PRG files.
When we compile *.cpp any compiler automatically switches to c++ mode and there is no point using BEGINDUP,ENDDUMP inside a cpp or c file.
So I am not clear of what you are saying |
C-function in FWH | Here I found the working of fromfiletime.
[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]
There is a C#,C++,F# and VB example.
Maybe it's easyer to convert it to FWH since its:
[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] |
C-function in FWH | Mr. Rao, from Antonio above:
[quote:2xte0x0t]Using Borland we can not use C++ code in #pragma BEGINDUMP ... ENDDUMP as we compile in C mode[/quote:2xte0x0t] |
C-function in FWH | [quote="Marc Vanzegbroeck":3mjb7cms]Here I found the working of fromfiletime.
[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]
There is a C#,C++,F# and VB example.
Maybe it's easyer to convert it to FWH since its:
[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]
Thank you very much.
Once we have this information, it is now extremely simple.
Here is the function for you:
[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]
test:
? DateTimeFromFileTime( 131032008000002432 ) --> 23-03-2016 10:00:00
Unlike those VB and C# programmers we don't depend on external libraries for simple things like this. |
C-function in FWH | Rao,
Thank you very much.
I will try it. |
C-function in FWH | Mr Rao,
It's working fine. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Just one question. The result is valtype T.
How can I convert it into a stringtype?
I want to write it into a database with a field of type char. |
C-function in FWH | [quote="Marc Vanzegbroeck":3t0ugz6x]Mr Rao,
It's working fine. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Just one question. The result is valtype T.
How can I convert it into a stringtype?
I want to write it into a database with a field of type char.[/quote:3t0ugz6x]
Never mind... I found it.
TTOS() is the answer <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
C-function in FWH | 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 |
C5Ide problem on compilation | Dear Friends,
I have problem to compile C5Ide with the last modifications
[b:37aefopn]First File [/b:37aefopn]
<!-- 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 -->
I wrote on forun there was problems because When the form designer created a source of a dialog it not was on right coordinates
and Paco pubblished other files
[b:37aefopn]Modifies[/b:37aefopn]
<!-- 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 -->
At Init I tried to compile with Harbour and xHarbour with no success
With Harbou I found these problems :
Error: Unresolved external '_pcre_config' referenced from C:\WORK\HARBOUR\LIB\HBRTL.LIB|hbregex
Error: Unresolved external '_pcre_stack_malloc' referenced from C:\WORK\HARBOUR\LIB\HBRTL.LIB|hbregex
Error: Unresolved external '_pcre_stack_free' referenced from C:\WORK\HARBOUR\LIB\HBRTL.LIB|hbregex
And I resolve it Link the library hbpcre.lib
With 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 :
I asked on 15.October also to Paco.
This the last make.log (xharbour)
[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] |
C5MENU y C5TOOLTIP | Master, me gusta C5MENU y C5TOOLTIP. Donde puedo bajar completo?
[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]
Gracias. |
C5MENU y C5TOOLTIP | Joao,
[url:2xogls0d]https://bitbucket.org/fivetech/fivewin-contributions/downloads/c5menu12.zip[/url:2xogls0d] |
C5MENU y C5TOOLTIP | Good! Gracias master! |
C5Menu adaptado por Juan Carlos Salinas | Buenassss, vengo usando esta clase que queda muy bonita pero tengo un pequeño problema que no se como solucionar.
Cuando 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".
Me explico
Por ejemplo :
&Fichas &Ventas &Cartera &Utilidades.
Pulsado Alt+F, Alt+V, pues se despliegan los menús correspondientes.
Ahora abro una ventana maximizada y aparece
[] &Fichas &Ventas &Cartera &Utilidades
Donde [] es el menú de manejo de la ventana que se ha abierto.
Pulsando Alt+F, se abre ese Menú, Alt+V se abre Fichas, Alt+C Se abre ventas ... etc, etc.
Es solucionable?
Me explico?
Gracias.
Angel Salom
<!-- e --><a href="mailto:angel@sigev.com">angel@sigev.com</a><!-- e --> |
C5Menu adaptado por Juan Carlos Salinas | Bueh! ya está claro
Al definir la ventana principal le pongo un NOSYSMENU y así ya no me crea el icono al lado del menu.
Valeeee. |
C5Menu adaptado por Juan Carlos Salinas | [quote="AngelSalom":3o8uu00p]Bueh! ya está claro
Al definir la ventana principal le pongo un NOSYSMENU y así ya no me crea el icono al lado del menu.
Valeeee.[/quote:3o8uu00p]
Justamente !!!
JEJE, hemos sido varios que a veces contestamos nuestros propios posts.
Saludos |
C5Menu en Preview | 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?
gracias |
C5Menu en Preview | Algo nuevo sobre este asunto?
¿Como deshabilitaste el menu del preview?
[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?
gracias[/quote:19364o5q] |
C5Menu en Preview | Hola, si mal no recuerdo, habria que modificar la clase TWindow
justo donde hace referencia el MENU para poder usar el C5Menu.
O bien, comentar las lineas de codigo en el Rpreview.prg donde
se hace referencia al menu con la finalidad de desactivarlo. Despues
de eso tal vez tengan que pelearse con la asignacion de algunas
variables pero nada complicado.
Saludos cordiales |
C5Menu en Preview | Yo no he necesitado modificar nada en mis programas para utilizar c5menu.
Simplemente una línea en el programa:
oMenu:SetStyle( 14 ) //porque es el estilo que me gusta a mí (podría ser cualquier otro)
y compilar mi aplicación con las dos libs correspondientes
Me aparecen todos los menúes de mis aplicaciones en ese estilo incluyendo el del preview de la case treport. |
C5Menu en Preview | JAJAJAJAJAJAJA !!!
Por eso se dice que:
No existen problemas complejos, tan solo simples soluciones...
Gracias por el dato
Saludos |
C5Menu en Preview | Disculpa el setstyle(14), me da un error de funcions a lcompilar, me puedesexplicar que hace esta funciongracias |
C5Menu en Preview | 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. |
C5Menu en Preview | 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 esogracias |
C5Menu en Preview | Hola:Deberías contactar con Paco García. Su soporte también es muy bueno.Un saludo |
C5TOOLTIP con MENU de fwh ? | Hola a todos,
pues eso, se puede usar c5Tooltip con un menu de fwh ?, de poderse como seria ? no hay ejemplos....
Gracias.
Salu2, Ariel. |
C:\fwh\samples\account Problem | hi,
i have change in go.bat and account.mak to C:\BCC7 and c:\harbour\lib\win\bcc
[quote:1ku36mo4]
C:\fwh\samples\account>go
C:\fwh\samples\account>if not exist obj md obj
C:\fwh\samples\account>c:\bcc7\bin\make -faccount.mak
MAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc.
echo off
echo c:\bcc7\lib\c0w32.obj + > b32.bc
echo obj\ejemcont.obj obj\contabil.obj obj\mntotel.obj, + >> b32.bc
echo ejemcont.exe, + >> b32.bc
echo ejemcont.map, + >> b32.bc
echo .\..\..\lib\FiveH.lib .\..\..\lib\FiveHC.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbrtl.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbvm.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\gtgui.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hblang.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbmacro.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbrdd.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\rddntx.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\rddcdx.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\rddfpt.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbsix.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbdebug.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbcommon.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbpp.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbwin.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbcpage.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbct.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbpcre.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\hbcplr.lib + >> b32.bc
echo c:\harbour\lib\win\bcc\xhb.lib + >> b32.bc
echo c:\bcc7\lib\cw32.lib + >> b32.bc
echo c:\bcc7\lib\import32.lib + >> b32.bc
echo c:\bcc7\lib\psdk\odbc32.lib + >> b32.bc
echo c:\bcc7\lib\psdk\nddeapi.lib + >> b32.bc
echo c:\bcc7\lib\psdk\iphlpapi.lib + >> b32.bc
echo c:\bcc7\lib\psdk\msimg32.lib + >> b32.bc
echo c:\bcc7\lib\psdk\psapi.lib + >> b32.bc
echo c:\bcc7\lib\psdk\rasapi32.lib, >> b32.bc
IF EXIST account.res echo account.res >> b32.bc
c:\bcc7\bin\ilink32 -Gn -aa -Tpe -s @b32.bc
Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Error: Unresolved external 'SHGetImageList' referenced from C:\FWH\LIB\FIVEHC.LIB|ICONS
Error: Unresolved external '_HB_FUN_OCCURS' referenced from C:\FWH\LIB\FIVEH.LIB|VALTOSTR
Error: Unresolved external '_hb_strAtI' referenced from C:\FWH\LIB\FIVEH.LIB|VSTRFUN1
Error: Unresolved external '_HB_FUN_HB_GETFILESINZIP' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPOPEN' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEFIRST' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEINFO' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEOPEN' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEREAD' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_BLEN' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILECLOSE' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILENEXT' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPCLOSE' referenced from C:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external 'SHCreateDirectoryExA' referenced from C:\FWH\LIB\FIVEHC.LIB|MKDIR
Error: Unresolved external 'SHCreateDirectoryExW' referenced from C:\FWH\LIB\FIVEHC.LIB|MKDIR
Error: Unresolved external '_HB_FUN___OLEVARIANTNEW' referenced from C:\FWH\LIB\FIVEH.LIB|ADOFUNCS
Error: Unresolved external '_hb_extIsNil' referenced from C:\FWH\LIB\FIVEHC.LIB|RICHEDIT
Error: Unresolved external '_HB_FUN_HB_TSTOUTC' referenced from C:\FWH\LIB\FIVEH.LIB|VALTOSTR
Error: Unable to perform link
** error 2 ** deleting account.exe
C:\fwh\samples\account>[/quote:1ku36mo4]
so there is a lot "new" in FIVEH.LIB / FIVEHC.LIB which the Sample don't know.
is this Sample now "unusable" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
C:\fwh\samples\account Problem | Hallo Jimmy,
ich glaube, dass ist ein sehr altes Programm.
Es ist schade, dass alle Dateien beim Update ein neues Datum bekommen.
LG
Otto
** * PROGRAMA: CONTAB.PRG FECHA INICIO: 02/11/95 ****
** * FECHA FIN: 03/11/95 ****
** * ANALISTA: Francis Morales Rivas ****
** * ****
* |
C:\fwh\samples\account Problem | Hi.
As Otto says, it's a very old source code.
On the other hand, try with this make:
[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]
Regards. |
C:\fwh\samples\account Problem | hi,
thx for Answer, now it compile / link without Error <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
but i wonder how as i have a different harbour\LIB Path <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
you working *.MAK
[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]
i change it to
[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]
when change to "real" Path i got these Error
[quote:rlt79h9c]Error: Unresolved external '_HB_FUN_OCCURS' referenced from C:\FWH\LIB\FIVEH.LIB|VALTOSTR
Error: Unresolved external '_hb_strAtI' referenced from C:\FWH\LIB\FIVEH.LIB|VSTRFUN1
Error: Unresolved external '_HB_FUN_HB_DEFAULTVALUE' referenced from C:\BCC7\LIB\HBZIPARC.LIB|ziparc
Error: Unresolved external '_HB_FUN_HB_DEFAULT' referenced from C:\BCC7\LIB\HBZIPARC.LIB|ziparc
Error: Unresolved external '_HB_FUN_HB_LEFTEQ' referenced from C:\BCC7\LIB\HBZIPARC.LIB|ziparc
Error: Unresolved external '_HB_FUN_HB_ISEVALITEM' referenced from C:\BCC7\LIB\HBZIPARC.LIB|ziparc
Error: Unresolved external '_HB_FUN_HB_BLEN' referenced from C:\BCC7\LIB\HBZIPARC.LIB|ziparc
Error: Unresolved external '_HB_FUN___OLEVARIANTNEW' referenced from C:\FWH\LIB\FIVEH.LIB|ADOFUNCS
Error: Unresolved external '_hb_extIsNil' referenced from C:\FWH\LIB\FIVEHC.LIB|RICHEDIT
Error: Unresolved external '_HB_FUN_HB_TSTOUTC' referenced from C:\FWH\LIB\FIVEH.LIB|VALTOSTR
Error: Unable to perform link
** error 2 ** deleting account.exe[/quote:rlt79h9c]
it seem me it use \BCC7\LIB and not harbour\lib\win\bcc
but 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:?: -->
which 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:?: --> |
C:\fwh\samples\account Problem | Hello Jimmy,
I am about to convert my DOS accounting to mod harbour.
[img:310jd3xv]https://mybergland.com/fwforum/fibu.jpg[/img:310jd3xv]
Can you start the exe from the samples now? It would be interesting to me. Maybe I can learn from this program.
Best regards
Otto |
C:\fwh\samples\account Problem | [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.
[/quote:3bgeopz8]
YES, with file from Francisco. |
C:\fwh\samples\account Problem | jimmy ,
I sad to you to use xmate or Fivedit
I sent to you a gif to see how many second I compile acount app with xmate |
C:\fwh\samples\account Problem | hi,
[quote="Silvio.Falconi":1m4fzc0z]I sent to you a gif to see how many second I compile acount app with xmate[/quote:1m4fzc0z]
thx for Advice.
but it make no Difference when Environment does not fit to run FivEdit, xMate or just in DOS-Box. |
C:\fwh\samples\account Problem | 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.
As 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
video : [url:3bo1mwdj]https://postimg.cc/94DxzDfj[/url:3bo1mwdj]
[b:3bo1mwdj]XMate[/b:3bo1mwdj]
[b:3bo1mwdj]Compilator Prg [/b:3bo1mwdj]
[img:3bo1mwdj]https://i.postimg.cc/3W5LJJ5P/compilatore-prg.png[/img:3bo1mwdj]
[b:3bo1mwdj]Compilator C[/b:3bo1mwdj]
[img:3bo1mwdj]https://i.postimg.cc/DwFTx7Jj/compilatore.png[/img:3bo1mwdj]
[b:3bo1mwdj]for make exe and lib [/b:3bo1mwdj]
[img:3bo1mwdj]https://i.postimg.cc/rpZ2yWh3/exe.png[/img:3bo1mwdj]
[b:3bo1mwdj]for make dll[/b:3bo1mwdj]
[img:3bo1mwdj]https://i.postimg.cc/T1mzcsRv/dll.png[/img:3bo1mwdj]
[b:3bo1mwdj]Linker[/b:3bo1mwdj]
[img:3bo1mwdj]https://i.postimg.cc/9FP3Rs8G/linker.png[/img:3bo1mwdj]
I use xMate 1999 with success never had problems |
C:\fwh\samples\account Problem | hi,
[quote="Silvio.Falconi":13om6nqx]I sad to you to use xmate or Fivedit[/quote:13om6nqx]
i 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:? -->
i 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: -->
so my Question is not "how" it is "why" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
p.s. have you try hbIDE <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->
is a xMate Clone made by Pritpal Bedi using harbour. (Source available ) |
C:\fwh\samples\account Problem | I tried fiveedit with no success
I use xmate from allways and It run ok
Hbide Is not a xmate clone and It never run ok
It have some icona of xmate but Is not a clone of xmate but Is made from another ide sources
Xmate Is made from Andy and run ok It have a editor
Xmate Is not made with harbour sourced but Is made with another language (dev c) |
C:\fwh\samples\account Problem | Hello Silvio,
Where can we download xMate?
And do you have a setup for compiling this accounting program?
I would only like to see it running.
Best regards,
Otto |
C:\fwh\samples\account Problem | [url:or3yss7z]https://bitbucket.org/fivetech/fivewin-contributions/downloads/[/url:or3yss7z]
[url:or3yss7z]http://www.44342.com/clipper-f375-t324-p1.htm[/url:or3yss7z]
[url:or3yss7z]http://www.hmgforum.com/viewtopic.php?t=8[/url:or3yss7z] |
C:\fwh\samples\account Problem | [quote="Otto":30rpdb23]Hello Silvio,
Where can we download xMate?
And do you have a setup for compiling this accounting program?
I would only like to see it running.
Best regards,
Otto[/quote:30rpdb23]
I send to you now |
C:\fwh\samples\account Problem | Silvio,
thank you.
I will try tomorrow.
Best regards,
Otto |
C:\fwh\samples\server\fwserver runtime error | Dear
I am facing runtime error C:\fwh\samples\server\fwserver.prg
[list:8luhk76p]Error Log
Application
===========
Path and name: C:\fwh\samples\server\fwserver.exe (32 bits)
Size: 3,130,880 bytes
Compiler version: Harbour 3.2.0dev (r1406271520)
FiveWin Version: FWH 14.12
Windows version: 5.1, Build 2600 Service Pack 3
Time from start: 0 hours 0 mins 0 secs
Error occurred at: 17/07/15, 12:45:23
Error description: Error BASE/1004 No exported method: ACTIVATE
Args:
[ 1] = U
Stack Calls
===========
Called from: => ACTIVATE( 0 )
Called from: fwserver.prg => MAIN( 19 )
System
======
CPU type: Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz 3300 Mhz
Hardware memory: 2981 megs
Free System resources: 90 %
GDI resources: 90 %
User resources: 90 %
Windows total applications running: 7
1 ,
2 , C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202
3 , C:\WINDOWS\system32\SHLWAPI.dll
4 , C:\fwh\samples\server\fwserver.exe
5 DDE Server Window, C:\WINDOWS\system32\OLE32.DLL
6 M, C:\WINDOWS\system32\msctfime.ime
7 SysFader, C:\WINDOWS\system32\SHELL32.dll
Variables in use
================
Procedure Type Value
==========================
ACTIVATE
Param 1: O Class: ERROR
MAIN
Local 1: U
Local 2: U
Linked RDDs
===========
DBF
DBFFPT
DBFBLOB
DBFCDX
DBFNTX
DataBases in use
================
1: USERS RddName: DBFCDX
==============================
RecNo RecCount BOF EOF
1 9 .F. .F.
Indexes in use TagName
=> Users->Name NAME
Relations in use
2: => INPUT RddName: DBFCDX
==============================
RecNo RecCount BOF EOF
1 99 .F. .F.
Indexes in use TagName
=> InPut->Name + DToS( InPut->Date ) +NAME
Relations in use
Classes in use:
===============
1 ERROR
2 HBCLASS
3 HBOBJECT
4 TSERVER
5 TWINDOW
6 TMDIFRAME
7 TMENU
8 TMENUITEM
9 TBRUSH
10 TMDICLIENT
11 TFONT
12 TCONTROL
13 TBAR
14 TRECT
15 TBTNBMP
16 TMSGBAR
17 TMSGITEM
18 TTIMER
19 TREG32
Memory Analysis
===============
214 Static variables
Dynamic memory consume:
Actual Value: 0 bytes
Highest Value: 0 bytes
[/list:u:8luhk76p] |
C:\fwh\samples\server\fwserver runtime error | Any solution ? |
C:\fwh\samples\server\fwserver runtime error | Dave,
I missed these posts from you,
I am going to review it asap, thanks |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE | 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.
Tambien 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
Todo lo hago desde codigo dentro de LAYOUT.
Espero alguna ayuda, sugerencia...saludos...gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE | Mira se ayuda:
[url:2148j7wf]http://fivewin.com.br/index.php?/topic/27172-texplorerbar/#comment-280326[/url:2148j7wf]
Saludos. |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE | [quote="karinha":3i7s8fff]Mira se ayuda:
[url:3i7s8fff]http://fivewin.com.br/index.php?/topic/27172-texplorerbar/#comment-280326[/url:3i7s8fff]
Saludos.[/quote:3i7s8fff]
Karinha, 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: --> |
CABIAR COLOR TExplorer DE FWH Y Q NO COLLAPSE | Jose Luis,
Puedes modificar el código de la Clase TTaskPanel en el método LButtonUp( nRow, nCol, nFlags ) |
CAJAS DE DIALOGOS | 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 |
CAJAS DE DIALOGOS | Revisa el ejemplo samples\fwbrow.prg.
Desde el browse de clientes puedes abrir una caja de diálogo con los detalles del cliente y luego regresas al browse. |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | Amigo tengo la necesidad de saber cuando meses hay entre 2 periodos :
ejemplo:
04-2017 al 01-2018 hay 9 meses
esos quiero y para cualquier periodo que me sirva (mysql)
saludos |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | Saludos, usa en MySql, saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
TIMESTAMPDIFF
SELECT TIMESTAMPDIFF(MONTH,'2009-05-18','2010-07-29');
<!-- 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 -->
PERIOD_DIFF()
SELECT PERIOD_DIFF(200905,200811);
<!-- 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 -->
<!-- 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 --> |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | algo do tipo:
d1 := ctod("01/01/2016")
d2 := ctod("01/01/2017")
alert((d2-d1)/30) |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | gracias Jose funciono bien... otra consulta mas
[b:3s579jqe]si al Generar Cobro
mes 8
Año 2017 [/b:3s579jqe]
12/04/2017 quedaria asi 12/08/2017
pero cuando el dia es mayor al de otro mes:
[b:3s579jqe]Generar Cobro
mes 9
Año 2017 [/b:3s579jqe]
31/08/2017 como quedaria aca 31/09/2017 esto quedaria malo ya que septiembre
tiene hasta 30 dias, tendria que ser 30-09-2017
[b:3s579jqe]Generar Cobro
mes 2
Año 2017[/b:3s579jqe]
31/01/2017 como quedaria aca 31/02/2017 esto quedaria malo ya que septiembre
tiene hasta 30 dias, tendría que ser 28-02-2017
en mysql como seria, ya que quiero conservar el dia, pero si el dia del mes anterior es mayor a ahi mi problema
saludos |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | 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 ) |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | cnavarro, lo que quiero es consrevar el dia en el mes anterior
saludos |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | Algo asi?
[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] |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | [quote="jbrita":1vzohl5m]gracias Jose funciono bien... otra consulta mas
[b:1vzohl5m]si al Generar Cobro
mes 8
Año 2017 [/b:1vzohl5m]
12/04/2017 quedaria asi 12/08/2017
pero cuando el dia es mayor al de otro mes:
[b:1vzohl5m]Generar Cobro
mes 9
Año 2017 [/b:1vzohl5m]
31/08/2017 como quedaria aca 31/09/2017 esto quedaria malo ya que septiembre
tiene hasta 30 dias, tendria que ser 30-09-2017
[b:1vzohl5m]Generar Cobro
mes 2
Año 2017[/b:1vzohl5m]
31/01/2017 como quedaria aca 31/02/2017 esto quedaria malo ya que septiembre
tiene hasta 30 dias, tendría que ser 28-02-2017
en mysql como seria, ya que quiero conservar el dia, pero si el dia del mes anterior es mayor a ahi mi problema
saludos[/quote:1vzohl5m]
Saludos, 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: -->
Manejadores de fechas en mysql
<!-- 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 --> |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | 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: -->
SELECT PERIOD_DIFF( DATE_FORMAT('2017-04-15', '%Y%m'), DATE_FORMAT('2018-06-12', '%Y%m') )
<!-- m --><a class="postlink" href="http://mysql.conclase.net/curso/?sqlfun=PERIOD_DIFF">http://mysql.conclase.net/curso/?sqlfun=PERIOD_DIFF</a><!-- m -->
<!-- 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 --> |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | muchs gracias resulto todo bien
saludos |
CALCULAR MESES ENTRE 2 PERIODOS- SOLUCIONADO | [quote="jbrita":2jk9wgwd]muchs gracias resulto todo bien
saludos[/quote:2jk9wgwd]
Ok, 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: --> |
CALL A VARIABLE logic FROM A FILE ini | iF i CALL A VARIABLE FROM A FILE Ini
SAMPLE :
Local lRecordSelector := GetPvProfString("Browse", "RecordSelector",".F.", cIniFile)
it sad me it was a char variable and I cannot insert it on xbrowse
sample
WITH OBJECT oBrw1
[b:nvscv72v] :lRecordSelector := lRecordSelector [/b:nvscv72v]
end
there is a function to converte a char variable on logic variable ?
or
How I can to make it ? |
CALL A VARIABLE logic FROM A FILE ini | Hello
Local lRecordSelector := GetPvProfString("Browse", "RecordSelector",".F.", cIniFile) == ".T."
or you can use TIni class, check FWH\SAMPLES\testini.prg |
CALL A VARIABLE logic FROM A FILE ini | no funciona, Daniel !
Quiero salvar a algunas variables para mostrar el xbrowse y quiero grabar la configuración del archivo INI |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.