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

  1. delphinewbie

    Some SImple SQL/Delphi Problem

    OK thanks a lot .. But what if i want to get the total value for certain field ?? what should i do then .. Ok let's take an example here: Product //Table name ProductID Price P001 $5.00 P002 $7.00 P003 $9.00 Let's say in my program i want to get the Total of the...
  2. 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...
  3. 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...
  4. delphinewbie

    How to make cursor move ??

    Ok . Everything is done .. and another problem arise .. Once i click at the "Move" button, the cursor is move unstopply .. Cos i'm using the loop function to do it .. so i guess it might exhausted the RAM .. so is that any way i can improve it ?? Err .. prolly i can use the time to...
  5. delphinewbie

    How to make cursor move ??

    for ya info, i put the button on another form, and once i click at the bottom , i want the cursor to move up and down .. what should i do ?? i had try, but still can't make it .. cos i'm only newbie ..hope ya guys can help...thx again
  6. delphinewbie

    How to make cursor move ??

    But i need to click a button .. so the cursor will move around.. what code should i put for the button then ??
  7. delphinewbie

    How to make cursor move ??

    i copy ur source code ... and then i create another new form(form2) and put a button on that form .. Once the user click at the button on form 2, I will call the Timer1Timer(Sender: TObject) procedure .... so what should i put as the parameter for (Sender : TObject) .. again .. thanks for ya...
  8. delphinewbie

    How to make cursor move ??

    Modification here .. Once i click at the button, the cursor will move verticallly from top of the desktop to the bottom of the desktop .. And bottom to top .. the action is repeat and repeat until i click at "Stop" button on the main form .. hope ya guys can help.. thx..
  9. 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...
  10. 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...
  11. delphinewbie

    the if statement

    thank you!
  12. delphinewbie

    the if statement

    the else statement isn't working for some reason :(. I get error saying: ';' not allowed before 'ELSE'
  13. 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!
  14. 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