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 SkipVought 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. Epidemi

    Populating a word doc. with data from Delphi.

    Hi, in Delphi 5, in the component library in the main window of Delphi, there is a tabpage called 'Servers'. A component for accessing Word should be in there.
  2. Epidemi

    I can't create a value in Windows registry

    Hi, write the following value to the registry: HKEY_CLASSES_ROOT\.tes\shell\open\command (default) = c:\mypath\myprogram.exe "%1" Now, in your program use the following code for the commandline: var FileName: String; if (ParamCount()>0) then begin FileName := ParamStr(1); end...
  3. Epidemi

    Populating a word doc. with data from Delphi.

    Hi, You can do this with COM. In order to provide you with an example, could you please tell me which version of Delphi you are using? Thanks. Best Regards, Thijs
  4. Epidemi

    Keeping an eye on the users

    Pfew! I'm glad that you stopped thinkin' about that project! At my old school, they also installed a program which enabled the sysadmin to view every computerscreen installed. I just wrote a program that removed the program from memory, so they couln't see my screen. They accepted it, because...
  5. Epidemi

    Flat Memory without himem.sys

    Hi there A question Is it possible to switch over to flat memory without using a memory driver like Himem.sys. (I know how to enable the A20 line with himem.sys, not not how to do it without himem.sys) Thanks a lot!
  6. Epidemi

    OS Development: Interrupt Hooking and Stack placement

    Thanks Alt255 You're so right :)
  7. Epidemi

    OS Development: Interrupt Hooking and Stack placement

    Hi Zallen of course I could do that but then I would be creating another Linux/BSD clone. I want to create my _own_ OS. So maybe I'll have a look at some pieces of code, but I'll try to do the majority myself. Thanks or the advice anyways. Best regards, Epidemi
  8. Epidemi

    OS Development: Interrupt Hooking and Stack placement

    Hi ya folks! I might be a bit late on this one, but I just joined tek-tips. I'm currently writing an OS myself, and I must say it's pretty cool to do. I already have a bootloader and a partially implemented file system I designed (FAT-like, though). But about your question: It's easy to write...

Part and Inventory Search

Back
Top