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 wOOdy-Soft 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: *

  • Users: c567591
  • Content: Threads
  • Order by date
  1. 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"...
  2. 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...
  3. 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)...
  4. 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.
  5. 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?
  6. c567591

    Registry

    I need to use the registry to store settings for my software. The settings are setup in the installation program. We have been using HKey_Local_Machine in the past, but when installing in a corporate environment where the user does not have admin rights to the machine, we get errors writing to...
  7. c567591

    Using Registry for settings

    I need to use the registry to store settings for my software. The settings are setup in the installation program. We have been using HKey_Local_Machine in the past, but when installing in a corporate environment where the user does not have admin rights to the machine, we get errors writing to...
  8. c567591

    Overrride DNS

    How can I override the external DNS for a site name: xyz.mycompany.com internal ip 192.168.0.123, external ip Inside my network I need the internal IP to be used, externally is working properly as it is. We just cant talk to the machine inside the network using the external IP from inside the...
  9. c567591

    Executing many .sql scripts

    Our Database is being created by a batch file, where each script is fired off separately via osql each time. There are 940 tables plus all the stored procs and triggers and views. Example: set @osqlcommand = 'osql -d ASCEND -USA -P'+ @SAPASSWORD + ' -i ' + '"' set @instatement = @RUNDIR +...
  10. c567591

    Delphi initialization problems

    I have an application that was written by someone else. Sigh. Anyway I am getting an access violation when it cannot connect to the database (MSSQL). After hours of single stepping, I traced it to the destructors of the classes that are failing because the classes didn't get initialized right...
  11. c567591

    Make Backup Exec 9.x format boefre backup

    I want to make Backup Exec format or erase the tape before backup. I do not care to protect what is on the tape. We have been switching from ArcServe and it "sticks" on these tapes at the loading media stage. If erased, it will backup just fine. This is annoying for me.
  12. c567591

    BE 9.1 Remote Agent BSOD remote NT4 Server

    I am trying to get BE 9.1 Remote Agent backing up a NT4 server across the network, but every time it tries, the NT server blue screens with a memory parity error. We first thought it was a memory error, but since we can recreate it at will, we have kind of dismissed this theory. Does anyone...
  13. c567591

    sco documentation stinks! (Rant)

    SCO documentation stinks! [mad] I was trying to use ap with the -u option. SCO for its examples shows trivial examples that are fairly straight forward. Nowhere does it say that the group and passwd files need to be in their own little etc directories under the one specified. It also doesn't...
  14. c567591

    Can't print compressed on HP Deskjet 540

    Can't print compressed on HP Deskjet 540. Tried several drivers/models, tried forcing the escape sequence into the print job. It just won't print compressed, it prints fine in all other aspects. Running 5.0.5 printing to a LPR printer off Win2000 using Unix Print Services for Windows. What...
  15. c567591

    Using a html form for UI

    What would be the best way to have a remote user control/access a program using a HTML interface? I have a program I would like to be able to work with remotely over the internet and access data and change settings on. How would I implement this? Thanks
  16. c567591

    Not switching tapes

    Arcserve is not switching tapes in our auto loader. We have a Compaq 20/40GB DAT 8 AL How do I tell Arcserve to switch to the next tape?
  17. c567591

    Hide/Ignore warnings

    Is there a way to hide/disable/ignore certain warnings? I would like the ability to be able to not have the warnings for the file changing or being in use during the backup.
  18. c567591

    HPLaserJet script

    At the point where it prints is: 0<${file} eval ${FILTER} | lprpp $italics $length $nroff 2>&1;; What is the order that the above is processed? Does the 0< apply to the whole line or just the first part? Just trying to understand this better.
  19. c567591

    HP Color LaserJet 4550N Extra Page

    One of our customers has a HP Color LaserJet 4550N. They are running SCO 5.0.6. We have it printing fine on it except it prints a second page after each page. We set it up like any of the other HP Lasers that we have setup w. 66 lines per page. It is a big deal since it is preprinted forms...
  20. c567591

    Local Printing

    I am using SCO Openserver 5.0.6 I have configured local printing to work off my local PC. I can get it to print...sorta. I only get 1 line, no matter what I print. I can print to this printer just fine from windows. What can I do to figure out why I am only getting 1 line?

Part and Inventory Search

Back
Top