Database
A database is a structured collection of records or data.
Language
Platform
Any
License
Any
Clear() in the TThread constructor after having TMemo created then all works fine!
Thanks for listening anyway. ;-)
Henk
Hi,
I've developed my own database and stand alone applications in B++Builder 6 in Windows XP and the last compile was during 2008. I need to upgrade now on laptops and one option is Windows 7...
hello
i build two separate software simples , one for write one file that i called persona.txt and another for read it
=================================
#include
#include
struct...
Memory leak and Access Violation are not the same thing. Assecc Violation happens when code tries to read the memory address, which cannot be read or tries to write to an address which can't be...
Hi buddy,
Thanks for ur reply...
U hav mentioned that the memory shall not be allocated for enums.
But i could remember that the memory allocation and processing time(preprocessor time and...
On Windows, just use SGBD apis
(see Windows api group http://tinyurl.com/yjy3ajr)
Hi,
i am programming in c++ for a couple of years, but all my applications were console based. I have not programmed ever visual applications with c++.
But now i started with c++ buider 5...
Hello,
Im currently having some issues with trying to combine these two not been able to find a guide which im able to follow 100% except one where I managed to construct this code from, though its...
Hello,
Im currently having some issues with trying to combine these two not been able to find a guide which im able to follow 100% except one where I managed to construct this code from, though its...
Problem solved:
Fullc4.bat places Indy40.bpl in the Windows System32 directory. In this case access was denied thus the file was not copied.
Roy
I need a simple example of how to use the SOAP server application in C++ Builder I have used the WSDL importer (which worked great) It creates a Webmodule1 with 3 components on it 1....
hi
i use one edit Control in my Dialog.
when i use below code for read content of it :
GetWindowTextA(hEdit,editStr,10);
if content of Edit control is more than one Character my program...
Just use getchar() at the places indicated and your code should work like a charm.
#include
#include
using namespace std;
int main()
{
char date;
char isbn;
char title;
char...
Sorry here is the code. I thought it got attached.
// This program displayes the cashier screen
#include
#include
using namespace std;
int main()
{
char date;
char isbn;
char...
Hi friends,
I'm new to database connection in VC++ 2008 using MFC. I got a link(http://www.functionx.com/visualc/databases/sqltable.htm ) which guides with database connection step by step. I...
Strange enough I just increased the size of the descrip and name arrays and the whole file is now printing to the screen. So that takes care of that.
Hi,
I'm trying to write a C++ soap client to access one of the
soapclient.com web services, the soap responder service, which
echoes back the two input paramaters. The code compiles but...
inFile.getline (meal.name, 22, ",");
should be
inFile.getline (meal.name, 22, ',');
and so on. You can tell this by reading the warnings carefully.
Hey. I'm trying to create part of a program that will read data from a text file, store the data into variables and then write the data into a random access file. So far this is what I have....
I am not much of a programmer (self-taught some Access and have taken a c++ class but have no experience), so I need to get some help rewriting an Access 2003 database I wrote into c++ with a gui. I...