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. ppc386

    converting a string to an array of WideChar

    http://www.delphibasics.co.uk/RTL.asp?Name=StringToWideChar http://www.delphibasics.co.uk/RTL.asp?Name=WideCharToString
  2. ppc386

    how do I get round the string copy-on-write technique?

    var a:string; b:pansistring; begin a:='hello'; b:=@a; a:='world'; ShowMessage(b^); end.
  3. ppc386

    How many times we abbreviate and then expand a little of that ?

    > I am sorry but this Quote window is ugly looking thingy I agree.
  4. ppc386

    How many times we abbreviate and then expand a little of that ?

    How about those Regina Lewis segments on CNN - her job title is described as "AOL Online Advisor" http://onlineadviser.tv/read.html
  5. ppc386

    How many times we abbreviate and then expand a little of that ?

    GNU/Linux" not unix linux ?
  6. ppc386

    How many times we abbreviate and then expand a little of that ?

    > From context, "an ATM" refers to the automated teller machine Is it possible that the ATM could communicate via the ATM ?
  7. ppc386

    How many times we abbreviate and then expand a little of that ?

    The point is, if I say "ATM" you don't know what I'm talking about, but if I say "ATM Machine" you do know what I'm talking about. Which of these two sentences is more clear: Is it possible that an ATM (machine) could communicate via ATM (mode) ? Is it possible that an ATM could communicate...
  8. ppc386

    How many times we abbreviate and then expand a little of that ?

    In following this thread, I have seen the terms "ATM machine" and "ATM mode" Which makes me wonder if there might be times when the redundancy actually helps resolve some ambiguity ? If I just say "ATM" right now, do you know what I'm talking about?
  9. ppc386

    How many times we abbreviate and then expand a little of that ?

    > NPR, TT, and coffee. That's life. It's a vicious cycle - the more coffee I drink, the more I need to TT
  10. ppc386

    How many times we abbreviate and then expand a little of that ?

    > Good lord, been using NT for years and > _never thought_ > to ask what it stood for! "Never Thought" ? Hey, I like that one!
  11. ppc386

    How many times we abbreviate and then expand a little of that ?

    Then they should be named accordingly! "C:\My Documents Files" "C:\Windows Files\System Files"
  12. ppc386

    How many times we abbreviate and then expand a little of that ?

    C:\Program Files" If this directory explicitly contains "files", then what do the other directories contain?
  13. ppc386

    Valgrind & ccmalloc reporting garbage with simple hello world program

    hmmm... This is what I get from valgrind: ==28881== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==28881== malloc/free: in use at exit: 0 bytes in 0 blocks. ==28881== malloc/free: 0 allocs, 0 frees, 0 bytes allocated. ==28881== For counts of detected errors, rerun with: -v...
  14. ppc386

    Run up Internet Explorer with a URL

    You can also do this with ActiveX/COM, which will give you control over a lot more of IE's features/settings... http://www.cryer.co.uk/brian/delphi/howto_openiespecificetc.htm
  15. ppc386

    Displaing formatted HTML

    I don't remember the exact syntax, but I think you can do something like: WebBrowser1.Document.InnerHTML:=YourString;
  16. ppc386

    Experienced and smart people enter here to help all newbies at once

    Google "linux partitioning" ( 176,000 results ) And you still want more ?
  17. ppc386

    file access !

    Not Delphi, but you might try this: http://www.sysinternals.com/ntw2k/source/filemon.shtml
  18. ppc386

    Take screenshot of my window

    If you have ImageMagick, you can just do this from a command line (or script) xwd -root | convert - screenshot.jpg
  19. ppc386

    mount FAT32 partition

    It looks like /dev/hda4 is an extended partition, and /dev/hda5 is a logical partition that sits on top of it. If that's the case, then /dev/hda5 is the one to mount.
  20. ppc386

    RedHat 9 - Stupid Mistake - permissions

    rpm -q --dump [PACKAGE-NAME] | cut -d ' ' -f 1,3 google is your friend: http://www.linuxquestions.org/questions/history/131112

Part and Inventory Search

Back
Top