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

    Calling oo sub within an oo package?

    Is it okay to do this? package CC; ... my $CC = new $CC; sub new {... sub add { my ($self,$file) = @_; ... sub proc { my ($self,$file) = @_; if (!$file) { my $ret = CC->add($file); } ...
  2. wallythewhale

    How to use Perl/Tk in a perl module

    That worked. Thanks to all.
  3. wallythewhale

    How to use Perl/Tk in a perl module

    Can some of the window be defined in a .pm? For example: Versions.pm use Tk; sub CreateWin { $mainWin = MainWindow->new(); ... $task_id_frame = $mainFrameData->Frame()->pack(-anchor => "w"); ... } # end sub CreateWin Versions.pl use Tk; use Versions; Versions::CreateWin; $rbtnRv =...
  4. wallythewhale

    How to remove carriage returns

    Hello, I have a perl script that runs under Windows 2000 that creates a file. Each line in the file contains a \r\n at the end of it. I want to use this file in Unix. But Unix does not like the \r. If I remove them with the vi editor, all is good. I have tried the substitute commands, s/\r//g...
  5. wallythewhale

    Alt+Ctrl+Del background different from Desktop background

    Hello, It appears there are two Window backgrounds (and maybe more): one for the Desktop and one for Alt+Ctrl+Del. When I changed my Windows 2000 background by selecting wallpaper from the Web, both backgrounds changed. However when I try to reset it using Desktop properties, only the Desktop...
  6. wallythewhale

    Cannot download software from IE

    Yes. I can download from my Windows 2000 server and other people here are having no problems with Windows 2000 Professional.
  7. wallythewhale

    Cannot download software from IE

    Hello again, All of a sudden I can't download software anymore. When I select the download button and select an object to download, a blank page comes back with a small box with a circle square and triangle in it and Done in the status line. I reinstalled IE and deleted temporary internet...
  8. wallythewhale

    Background window automatically comes to front

    Hello, I'm running Windows 2000. If I have a folder open and do not minimize it, the window will become the active window and come to the front of the display randomly. This seems to happen regardless of the open application: word, excel, etc. Therefore, if I am editing a word document and a...
  9. wallythewhale

    How to isolate the Server hard drive from the Server.

    The repository is a CVS database which currently resides on a Compaq Windows 2000 server. Moving the database to the Sun is to automate a backup process. Since I have never done anything like this, any solution would be appreciated. Thanks.
  10. wallythewhale

    How to isolate the Server hard drive from the Server.

    Hello, I need to move my repository off of the Windows 2000 server onto a Sun Solaris 480. I have been told that using NFS will probably corrupt my respository. Is this true or is there another way to accomplish this? Thanks.
  11. wallythewhale

    Cannot browse server from client

    Hello again, I only have Windows 2000 Pro. I read somewhere that I have to install the terminal services client. Would that make any difference? Thanks again.
  12. wallythewhale

    Cannot browse server from client

    Hello, I opened a command window and entered: telnet <ipaddress>:80 It responded: Connecting to <ipaddress>:80...Could not open a connection to host on port 23: Connect failed. Thanks.
  13. wallythewhale

    Cannot browse server from client

    Hi Nick, I get the error on the client side. If I use 127.0.0.1 on the server, everything is okay. I can ping the server from the client too. I installed the CVS web server (ViewCvs). When I entered the above address on the client, I get &quot;The page cannot be found&quot;. Thanks for your time.
  14. wallythewhale

    Cannot browse server from client

    Hello, I have installed CVS on my CPQ server. I have installed WinCvs and Tortoise on my client. Everything works fine. I installed ViewCvs on the server. However, I cannot browse the server using http://<server ip address>/cgi-bin/test.cgi. I always get the error &quot;The page cannot be...

Part and Inventory Search

Back
Top