Language
Platform
Any
License
Any
Label1
Notice, i did'nt modify the Handled flag, not to block local control event handling methods...
:0)
Hope it helps
Hello,
Please help me to use a CBuilder DLL that contains classes from Visual Studio C# 2005, I have problems with the underscores.
I used a well-known example which creates a DLL in Cbuilder 5...
Hello
I have still the same need and am still looking for the solution...
Do you have found a key for this problem ?
May be you (we) can use the TApplicationEvent control to test simulate a...
These dlls use in some program. are they relative to OpenSSL?
thank you about your help.
Looks like you created a console application.
Create a Windows application and put this code in there.
The problem is just that it is printing the info about each alphabet present in the string given, like:
"string30"
s-alphabetic
t-alphabetic
r-alphabetic
i-alphabetic
n-alphabetic...
Why replace it? It doesn't make any sense, it will only make the code less readable.
: HINSTANCE USB= LoadLibraryA("SiUSBXp.dll");
: typedef SI_STATUS (WINAPI * pNumDev)(LPDWORD);
: pNumDev * pGetNumDevices;
This should be
pNumDev pGetNumDevices;
You want a function...
Caption="ok";
if (pGetNumDevices!=NULL)
{
pGetNumDevices(&a); //Caption=IntToStr(a);
}
0)
{
x--;
}
(Btw, using boolean operators to compare integers as well as using the ++ operator inside expressions are both banned by the coding standard MISRA-C, so this isn't something I've...
I have resolved the error related to ambiguity between TFont and Graphics::TFont and ambiguity between TColor and Graphics::TColor by using
namespace Graphics {
using Graphics::TFont;...
Hello all,
Is the anyone know how to transfer a file from HOST to Client ung using C++ Builder?
thank you
~jovin
I tried doing that, but doing that is not resolving the problem.
When I try to save the file after making the change, the IDE throws an error saying the method for the event does not exist and do...
You get that error when two types in two different namespaces are named the same thing. Solve it by telling the compiler which one you mean, by writing the namespace explicitly in front of the type....
there are some definite patterns. example for input 3:
** 2 spaces 2 stars
**** 1 space 4 stars
****** 0 space 6 stars
**** 1 space 4 stars
**...
probably you forgot to include stdio.h?
#include
or if you are using C++:
#include
also, make sure you put a semicolon after printf():
printf("..something..");
--
~Donotalo()
input:5
* *
* *
* *
**
Thx....
-komodo_dragoon, a real dragon that still alive-
I am trying to use the CustomDrawCell event for the TdxTreeListColumn column object.
When the method is added in .h file,
void __fastcall dxTreeListServiceCustomDrawCell(TObject *Sender,...
At the bottom of the program, add getchar() from stdio.h.
Avoid using getch() since it isn't standard C and will not work on most compilers. Avoid using system("PAUSE") since it is...