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 TouchToneTommy 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. c567591

    How do I output to console?

    I started with that Writeln atricle, thats how this process began. I haven't seen that other article, so I will give that a shot. I appreciate you sticking this out to help me.
  2. c567591

    FindFirst/FindNext/FindClose dilemma

    Were you using a global (at least to those functions) variable?
  3. c567591

    Suggestions on Creating SubForms?

    Panels might work too.
  4. c567591

    How do I output to console?

    No, that's still doing a new window. Any idea how to get the handle of the parent process?
  5. c567591

    How do I output to console?

    Even if that does work (will try in a bit), it is still not in the original command window.
  6. c567591

    Freeze with Indy IdFTP

    Did you try the download page? http://www.indyproject.org/Sockets/wizard/DownloadWizard.EN.aspx
  7. c567591

    How do I output to console?

    I see it in a new window that flashes up and immediately closes. stdout/stderr both do same thing. Somehow I need the stdout/stderr of the parent process I guess.
  8. c567591

    How do I output to console?

    I want to output the command line parameters & its help to the console that opened it. That way they can see the commands and correct them as needed. Normally, yes a TMemo is a great way, but for this, it is not what I am after. There are a lot of command line parameters and it is very helpful...
  9. c567591

    How do I output to console?

    How do I output text to the same console that started the process? If I use: void writeln(String text) { // fprintf(stderr, "%s\n", text.c_str()); static HANDLE handle; if (!handle) { AllocConsole(); handle = GetStdHandle(STD_OUTPUT_HANDLE); } text += "\n"...
  10. c567591

    Find old IP on system

    What a stupid concept! WTF was RH thinking?! [thumbsdown] Jeez, lets see how many places we can hide an IP. [thumbsdown] Thanks for the help all. I changed all occurances of 192.168.0.132 in /etc to the proper external IP. This fixed it.
  11. c567591

    Find old IP on system

    What is the difference between the following locations: bad ip: /etc/sysconfig/networking/devices/ifcfg-eth0 /etc/sysconfig/networking/profiles/default/ifcfg-eth0 good ip: /etc/sysconfig/network-scripts/ifcfg-eth0 Other than the obvious. I can change them, but I need to understand the...
  12. c567591

    Find old IP on system

    I am running RedHat v9 I setup a server to be a mail server and used an internal IP when I set it up in house. I have since moved it to our hosted environment and have tried to set the IP to the new public IP. This will take, but be forgotten on subsequent reboots. I have tried using RH's setup...
  13. c567591

    Why is ping acting wonky?

    Yep that was it. The goofy broadcast address was messing things up. Thanks for pointing me in the right direction. :)
  14. c567591

    Why is ping acting wonky?

    Here it is: net0: flags=4043<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.9.206.9 netmask ffffff00 broadcast 192.9.206.201 perf. params: recv size: 24576; send size: 24576; full-size frames: 1 ether 00:08:c7:9f:ad:6f...
  15. c567591

    Why is ping acting wonky?

    It does from the windows workstations. Even still, why is the wrong machine responding or appearing to respond?
  16. c567591

    Why is ping acting wonky?

    Also attempting to ping outside the network yeids no response.
  17. c567591

    Why is ping acting wonky?

    On a client's box that we are trying to get setup to talk to the internet so we can ssh into the box, ping is acting wonky. # ping 192.9.206.201 PING 192.9.206.201 (192.9.206.201): 56 data bytes 64 bytes from a3684 (192.9.206.9)...
  18. c567591

    Copy all regular files in a dir

    Thanks, I found my answer that way. To share it with others: To find real, as in non-linked files use: find with an option -type f so to look in current dir and no lower for "real" files: find . -type f -level 0 -print
  19. c567591

    Copy all regular files in a dir

    Is there a way in sco 5.0.x to copy just all regular, non-linked files? I am working on a script for copying stuff over for my clients when they upgrade and this would help me not miss files.
  20. c567591

    Conditional compiling and forms

    I want to use conditional compilation to compile my code for a 2nd customer type from the same code base so I don't have to make 2 changes everytime. I get that part fine. What I don't get or see how to do is to handle the forms which may be different. How do I conditionally handle them properly?

Part and Inventory Search

Back
Top