Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: luistsousa
  • Content: Threads
  • Order by date
  1. luistsousa

    Error Memory with TeeChart

    Hello Always that I run the following code gives an error to me, of memory when arrives at last serie to delete. Somebody knows which is the problem? TLineSeries *serie[10]; for(int reg=0;reg<5;reg++){ TLineSeries *ls; ls = new TLineSeries(DBChart1); serie[reg]=ls; DBChart1->View3D...
  2. luistsousa

    Copy a table Paradox to a Table MYSQL ??

    HI It is possible copy a entire table paradox to a table mysql? Regards
  3. luistsousa

    Unknown column in field List

    Hi I have a program that use TTables to communicate with a mysql table. After I delete the column &quot;test1&quot; in the table, when I star the program appear this error : [MySQL][ODBC 3.51 Driver][mysqld-4.0.13-nt]Unknown column 'test1' in 'field list'. In the field List don't appear any...
  4. luistsousa

    Unknown column 'test1' in field List

    Hi I have a program that use TTables to communicate with a mysql table. After I delete the column &quot;test1&quot; in the table, when I star the program appear this error : [MySQL][ODBC 3.51 Driver][mysqld-4.0.13-nt]Unknown column 'test1' in 'field list'. someone can help me? Many thanks Melo
  5. luistsousa

    Read a Record with TQuery and SQL

    Hi How can I read a record in a mysql table using a Query1.SQL state? Regards
  6. luistsousa

    Insert I mages in a Map

    Hello I have tried with unsucess to make a script to do the follow: I have a table in mysql with the columns name, pos_x and pos_y. Script will go to insert in the posítion (pos_x, pos_y) an image, with namee=name. I I click in a image, will go to open one link, depending on the image that...
  7. luistsousa

    Big Problem with DataBases and TQuery

    Hi I have a problem with databases that I think it is easy for gurus resolve , but not for me. I have the following function. After the function create a new field in my database, I receive a error message that said that the new field don't exist. However it was created. How can I resolve...
  8. luistsousa

    Problems in send emails

    Hi I try to send a email with a very simple code from a form, like : $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; mail( &quot;luistsousa@hotmail.com&quot;, &quot;Feedback Form Results&quot;, $message, &quot;From: $email&quot; ); but the email don't arrive to the...
  9. luistsousa

    Insert Record in a new Created Field

    Hi I have a table. In the program I have a button that add a field with editable name. I have another button that add a record to a field of table. The problem is that when I select the new field that has been created in this session of the program, appears an error with the message of that...
  10. luistsousa

    Add Series to a DBChart in Runtime

    Hi Can I create a serie to a DBChart in runtime? I had try with: TLineSeries *ls; ls = new TLineSeries(DBChart1); DBChart1->View3D = true; DBChart1->AddSeries(ls); DBChart1->SeriesList->Series[0]->DataSource=Table1...
  11. luistsousa

    Add Series to a DBChart in Runtime

    Hi Can I create a serie to a DBChart in runtime? Regards Luis
  12. luistsousa

    Insert Record in a Created Field

    Hello I have a program, that after it created a field with a name &quot;test&quot;, he make a insert() to put a value in this field. However, appear a error that it says &quot;Field &quot;test&quot; not found. But the field was created. Which is the problem? Best REgards
  13. luistsousa

    Read From a File and Put in a DataBase with DateTime Field

    Hello everybody I intended to read from a file txt and to put this information in a Table. However, in the database, I have a DateTime field, and others two to integer. How I can read from this file and at the same time, to convert this information for the database? file example: 25-07-2003...
  14. luistsousa

    Select objects with the Name

    Hi Who can I select a object with Your Name? For Example: To delete a label with the name &quot;label1&quot; ? Thanks Luis
  15. luistsousa

    Table1.Next(); are Nuts????

    HEllo guys I don't know if Table1.Next() are nuts, but if not, I am by sure. The problem is this. I have a database in mysql with a column &quot;stations&quot;. Inside I have station1, station2, and station3. With the code below I expect receiving the right result, but no. The program show an...
  16. luistsousa

    Use of ParamByName with TQuery

    Hello I have a very simple question to make (I think). I want create a new field in a mysql table. I use a mysql database and when i run the code below appear a error message with &quot;general sql error [Mysql].....: Who can I solve the problem? Query1.Close(); Query1.SQL.Clear()...
  17. luistsousa

    Tquery SQL question

    Hello I have a very simple question to make. With the code below i create a new field in a table. However, I want create a new field with a variable name. So, Who I insert a variable &quot;new_field&quot; in tquery sql? Many thanks Query1->Close(); Query1->SQL->Clear()...
  18. luistsousa

    A program to send emails

    Hello I want to make a program to send emails. CAn somebody give me some tips for this? many thanks Luis
  19. luistsousa

    &quot;Invalid Blob Lenght &quot;

    Hello When I take images BMP and Jpeg bigger then 100KB, to put in a database MySQL with a blob field, appear the error &quot; Invalid blob lenght&quot;. How can I put Images with a size limit of 4MB, in a Blob Field ? Many Thanks Luis Sousa
  20. luistsousa

    Load jpeg images from DATABASE

    Hello everybody I am try to read jpeg images from a database MYSQL, with TTable. I used : DataModule1->Table1->Append(); if (OpenPictureDialog1->Execute()) DBImage1->Picture->LoadFromFile (OpenPictureDialog1->FileName); DataModule1->Table1->Post(); To put images in a blob field. I think its...

Part and Inventory Search

Back
Top