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!

Recent content by aik2

  1. aik2

    select * become select count(*) or what ?

    Thank you for help. I find an error and this was a Delphi's component problem
  2. aik2

    select * become select count(*) or what ?

    Hello! This a test sample: CREATE TABLE _testdbf (fooid int, foosubid int, fooname text); INSERT INTO _testdbf VALUES (1, 1, 'Joe'); INSERT INTO _testdbf VALUES (1, 2, 'Ed'); INSERT INTO _testdbf VALUES (2, 1, 'Mary'); CREATE FUNCTION _test(int,int,int,int) RETURNS SETOF _testdbf AS $$...
  3. aik2

    select * become select count(*) or what ?

    Hello All ! Sending query to postgresql like: select * from MY_FUNCTION(1,2) and get an error in log: "error relation "MY_FUNCTION" does not exist" "STATEMENT select count(*) from "MY_FUNCTION" Running under Delphi6, dbExpress, postgresql 8... Running query under pgAdminIII...
  4. aik2

    ScrollBar at TWebBrowser

    Found ! scroll="no" in the html file. lol.
  5. aik2

    ScrollBar at TWebBrowser

    The question is that scrollbars didn't appear when page is bigger then WebBrowser. I see only part of webpage and didn't see any scrollbars. FormShow procedure: // WB - is TWebBrowser WB.Align := alClient ; WB.Top := 40; WB.Left:= 0; Wb.Width := Self.Width; WB.Height:= Self.Height -...
  6. aik2

    ScrollBar at TWebBrowser

    Hello ! How could I add a scrollbars to TWebBrowser component? Thanks.
  7. aik2

    How to get a printer status

    I try to check a local USB printer and get same problem as at this link. Hope answer will help me. Thanks.
  8. aik2

    How to get a printer status

    Please advise, how to get an information about current printer status (out of paper, off, etc) of default printer. Thanks
  9. aik2

    Touch screen and Delphi

    Thank you, I hope this but can't find any confirmation for this.
  10. aik2

    Touch screen and Delphi

    Hello All ! Please, give me a hint or article about how Delphi communicate with Touch screens? Maybe it's just like mouse ? Thanks to All
  11. aik2

    Cursor position in TValueListEditor

    Thank you ! Code for KeyPress is helps!
  12. aik2

    Cursor position in TValueListEditor

    I do exactly like this, but cursor stays at the end of text in the cell and this cell is not highlighted
  13. aik2

    Cursor position in TValueListEditor

    The problem, that when I'm moving by arrows, cell is selected, but I want move to next cell by Enter key and that's the case when cell is not selected and cursor stays at end of cell. SendMessage didn't help :( Ilya
  14. aik2

    Cursor position in TValueListEditor

    Hello all ! Does anybody know how to manage a cursor position in the cell of the TValueListEditor ? And maybe anybody know how to make a highlight of the current cell ? Thanks in advance, Ilya
  15. aik2

    Connection from TWebModule to MS SQL Server

    Hello All ! Try to connect with MS SQL Server 2000 from TWebModule via TADOConnection and ODBC Driver. At design time, connection is ok, but while running, ODBC return message "Data source name not found and no default driver specified". What am I miss ? Thanks, Ilya Kaourov

Part and Inventory Search

Back
Top