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: *

  1. delphinewbie

    Some SImple SQL/Delphi Problem

    CUSTOMER // TABLE NAME CustID CustName A001 Andy A002 John A003 Smith A004 Lee The data list above is store in the MSSQL database.. In my delphi program, i want to extract/get the data for CustName where the custID is equal to A003.. So what SQL statement should i write ? I...
  2. delphinewbie

    Stop while terminate the program

    I put the following code for move the mouse cursor(loop), procedure TForm1.FormCreate(Sender: TObject); var i :integer; begin i:=0; while i =0 do begin if i=0 then begin Mouse.CursorPos := Point(200,40); sleep(5000); i :=1; end; if i = 1 then begin...
  3. delphinewbie

    How to make cursor move ??

    Can anyone help me with the following problem: I want to wite a program that can move the cursor around on the top of the desktop after i click at the "Move" button on the main form... the cursor should not be inside the form.. but on the top of the desktop and outside the main form...
  4. delphinewbie

    SQL join fucntion (3 table)

    The following is the corresponded table : Customer ---------------- CustomerID CustName ProductID SupplierID Product ---------------- ProductID ProductName ProductDesc Supplier ---------------- SupplierID SupplierName SupplierTelNo I'm try to join all the 3 tables(Join Customer table with...
  5. delphinewbie

    the if statement

    Can somebody correct and give me the valid if statement? I have this: if (WordWrap1.Checked := True) then begin mainFrm.WordWrap1.Checked := False; else mainFrm.WordWrap1.Checked := True; end; end; end; Can somebody show me the right way? Thanks!
  6. delphinewbie

    Problem changing channels tv-tuner with capture component

    I have tried several delphi components for capturing movies , they al work fine.. BUT.. i want to change channels with that component to.. and i don't get it to work. Does anyone know the answer to this problem ? Thanks in advance :-)

Part and Inventory Search

Back
Top