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 strongm 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. Nephila

    Bandwidth usage monitoring

    Hi, I was thinking along those lines, any idea how to go about it? Sorry, but I am a n00b at this and haven't found anything helpful on google.
  2. Nephila

    Bandwidth usage monitoring

    I have postfix setup using amavisd on linux. I'd like to know how much bandwidth each user is using, ie: monitor the bandwidth each mailbox sends and recieves. Any ideas how to do this?
  3. Nephila

    Code browser for java

    I'm writing a java editor in Delphi and would like to have one of those code browsers. Does anyone know of a free component that can do this or am I gonna have to write one from scratch? Any ideas? Thanx!
  4. Nephila

    How can I make a Gutter With Line Numbers

    I have a TMemo component and would like to add a gutter that displays line numbers. Tried finding a component on the net, no luck. Looks like I'll have to make my own. Any ideas??
  5. Nephila

    Syntex highlighting

    I use one called Color Memo, don't have the address, what I like about it is that it extends the standard TMemo, and it's really simple to use, SynEdit is a bit difficult to set up, least I found it that way!
  6. Nephila

    Casting a Template????

    I have written a Vector<T> template class, and have declared one as a double and another as an int: Vector<double> v1(10,1.0); Vector<int> v4; Now I need to perform the cast operation: v4 = (Vector<int>) v1; Do I need to overload some operator or someting? Any help will be greatly appreciated!
  7. Nephila

    Dragging form

    Is it at all possible to reposition (drag) the main form with a panel on that main form. The form's border style is set to bsNone, but i still want the user to be able to move the form around on the screen. Any help???
  8. Nephila

    Gettin the blasted thing to open....?

    So I have finished my own version of Notepad, quite nifty it is, and I have told windows to open all text files with it, so the problem is that when I click a text file, it opens MyNotePad but the file doesn't open!?!?!?!? I'm guessing windows messaging or something? Anyone with an answer...
  9. Nephila

    Closing another application

    How can I close a command window from my delphi program? Thanks!
  10. Nephila

    Scroll the Caret To Any Position

    procedure TForm1.CrollCaret(X,Y:Integer); begin if Y > 0 then Y := Y - 1; RichEdit1.SelStart := RichEdit1.Perform(EM_LINEINDEX, Y, 0) + X; RichEdit1.Perform(EM_SCROLLCARET, 0, 0); RichEdit1.SetFocus; end;
  11. Nephila

    How To Scroll Caret to Position

    I'm pretty new to Delphi, so this may sound like a stupid question, but how can I scroll the caret in a RichEdit to an exact position say something like (line5,char10)? Thanks for any help!!!
  12. Nephila

    Running a dos program and displaying the output to a Memo control

    Thanks guys, but I'm afraid no luck. I tried the output to a text file and that doesn't seem to work, I think because the compiler exits with an error code or something. I've seen a basic Java Editor in Delphi that managed to get this right, but the guy wants cash for the source and I'm not into...
  13. Nephila

    Running a dos program and displaying the output to a Memo control

    I am writing a Java Development suite and want to know how I can run the java compiler(dos based) from delphi and display its output messages to a TMemo. Any help on this will be greatly appreciated!

Part and Inventory Search

Back
Top