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 SkipVought 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: jmmmx
  • Order by date
  1. jmmmx

    Disable mouse click.

    Or you can: ListBox1->Enabled=false And by code you can set ListBox1->ItemIndex =x
  2. jmmmx

    bcb and winword

    Sorry for my late. All that are string, int,... of my own (i.e. path, number). Change to you need.
  3. jmmmx

    bcb and winword

    I'm using this for fill a doc (and save or print): void __fastcall TfClientes::bCbvClick(TObject *Sender) { String sFic = xAp.cPB + "\\CARTBV_" + DigitLg(lsLg->Text) + ".doc"; if (MiraFile(sFic)) { AvisaW(this, "Generando e impriendo carta ..."); CreaDOC(sFic, 1); AvisaW(this, ""); } else...
  4. jmmmx

    Progress Form

    Only a think. I think a Timer is waste resources, why not put a counter and in depencence of lengthy computations, you can do: if (ntik++ > 9) { // or 20, 90, 1000 ... Applicatrion->ProcessMessages(); ntik = 0; }
  5. jmmmx

    Reading from excel file and transffering to database

    I Think SET is for UPDATE, you need: Query1->SQL->Add("INSERT into divx (Filmadi,Cdno) VALUES ('"+filmname+"', '"+cdnumber+"')");
  6. jmmmx

    SelectDirectory Causing Error in SVCHOST.EXE

    Helo, I can't use SelectDirectory(.. because it is in english and I need in spanish. I use: (in the top of form, I put all but see the coment //) #define NO_WIN32_LEAN_AND_MEAN // <- Esto #include <vcl.h> #pragma hdrstop //#include <sys\stat.h> #include <WindowsX.h> // <- y esto...

Part and Inventory Search

Back
Top