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 Mike Lewis 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: ik0
  • Order by date
  1. ik0

    delete row (SQL) [bcb]

    there is a mistake in the code - instead this code ADOQuery1->Open(); it should be this one ADOQuery1->ExecSQL();
  2. ik0

    delete row (SQL) [bcb]

    full code ADOQuery1->Close(); ADOQuery1->SQL->Clear(); AnsiString ab= "DELETE FROM Table WHERE Column1 LIKE '%" + Edit->Text + "%' AND Column2 LIKE '%" + Edit1->Text + "%'"; ADOQuery1->SQL->Add( ab ); ADOQuery1->Open();
  3. ik0

    delete row (SQL) [bcb]

    I want to delete a row in the base according from the data in the column.... when i use this code DELETE FROM Table WHERE Column1=1 AND Column2=1it works ok, it deletes only one row.... but when i use DELETE FROM Table WHERE Column1 LIKE '%" + Edit->Text + "%' AND Column2 LIKE '%" + Edit1->Text...
  4. ik0

    translate Delphi--->C++ Builder

    i will be grateful if somebody trnaslate me this code that is wroten in Delphi.if you can write me in c++.thank you function GetParentDirectory(path : string) : string; begin result := ExpandFileName(path + '\..') end; function AddFilter(path,filter: string): string; begin if...
  5. ik0

    Convert Delphi to C++ 2010

    Can somebody "translate" me this code? The code is used to check whether the user uses internet while he is using the aplication. procedure TForm1.Button1Click(Sender: TObject) ; function FuncAvail(_dllname, _funcname: string; var _p: pointer): boolean; {return True...
  6. ik0

    how can i change this "hint" [BCB]

    Here is an example how to change "HINT" or create balloon tip #pragma hdrstop #include "Unit1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm1 *Form1...
  7. ik0

    DateTimePicker problem

    It's ok, I fixed the errors. But now it shows me the exact time and i don't need that. How can I fix that?
  8. ik0

    DateTimePicker problem

    Does not work. Here are the errors that occur. [BCC32 Error] Unit1.cpp(24): E2451 Undefined symbol 'MachineStr' [BCC32 Error] Unit1.cpp(26): E2451 Undefined symbol 'MachineShiftStr' [BCC32 Error] Unit1.cpp(27): E2451 Undefined symbol 'ProdHoursStr' [BCC32 Error] Unit1.cpp(39): E2034 Cannot...
  9. ik0

    DateTimePicker problem

    date stored is string. After that value will need to read from the database. If there in the base the date is 19.02.1999 then the same value needed to be writlen in database.
  10. ik0

    DateTimePicker problem

    How to write the value of DateTimePicker in database, and after that value to read from the database. Using ADOQuery and C++ Builder 2009. picture: I apologize to grammatical errors.
  11. ik0

    how can i change this "hint" [BCB]

    sorry using 2009 C++ Bilder
  12. ik0

    how can i change this "hint" [BCB]

    using Borland C++ 2010. Hint form system...I do not know include. I would like to change only the language, if possible?
  13. ik0

    how can i change this "hint" [BCB]

    how can i change this "hint" or can/may i change or write in another language? pictures http://i29.tinypic.com/2rhs4mh.png ?hanks
  14. ik0

    validation edit

    at the form there is edit and button, when I put text at the edit and I press button1, if there are letters in the edit to appear some message.

Part and Inventory Search

Back
Top