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 gkittelson 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. GMcConville

    Size of a Website

    I am using the WinInet function InternetReadFile to download a website to memory, but is there anyway of finding out the size of a website before downloading it so that you know how much memory to allocate. Thanks Grant McConville
  2. GMcConville

    How to change the Address of a String to equal the addr of another

    I have been using Delphi for a few years now and one thing I have never been able to do is create a string which is actually part of another string EG String1 := 'This is my program'; SetLength(String2, 2); Addr(String2) := Addr(String1 + 5); Memo1.Lines.Add(String2); So therefor String2...
  3. GMcConville

    Changing Cursor Position in TEdit

    Works Perfectly, thanks
  4. GMcConville

    Changing Cursor Position in TEdit

    Just one of those strange things, if does this in Microsoft Excel, although I haven't really seen it anywhere else. I am using this as an autocomplete system, and although there are other ways to do it, it annoys me when can't do things exactly as I wanted. I shall just have to admit defeat...
  5. GMcConville

    Changing Cursor Position in TEdit

    Thanks Towerbase, but have already tried this unsuccesfully. Yes, it does move the cursor but it also unselects the selection. ANy other ideas.
  6. GMcConville

    Changing Cursor Position in TEdit

    Any one have any idea on how to select an area of text in a TEdit and have the cursor at the beginning of the selection. eg: TEdit.Text := 'Delphi Rules'; TEdit.SelStart := 7; TEdit.SelLength := 5; TEdit should now display 'Delphi Rules' with the last word selected (or something close to...

Part and Inventory Search

Back
Top