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

    StreetTalk for Windows NT Server

    Hi, Anyone know where you can purchase a copy of the StreetTalk for Windows NT Server software? Thanks,
  2. cmpeng

    Banyan Vines Fixpacks

    Hi everyone, I've recently been working on installing banyan vines on my OS/2 Warp 4 setup. However, after installing vines and restarting the machine, I get stuck in a trap and can no longer boot the machine. Soon after that I found this article...
  3. cmpeng

    How to write PPMs or reuseable code

    Hi, For packages you have to use the package name to call the function. As well you have to use the keyword package in your common.pl So you should do this Script require "Common.pl" Common::Check_File($DestFile); Common.pl package Common; sub Check_File { my ($myFile) = @_; # Check...
  4. cmpeng

    How to write PPMs or reuseable code

    Hi, I think from your posting you're looking at making your own package or module which is very easy to do. The difference between the two being that while using a package, you have to specify the name of the package, i.e. my_package::my_function() While in a module you don't have to, you...
  5. cmpeng

    Math conversion

    Hi, Are you looking at cases with only one non-zero leading digit? I.E. Avoid cases like 220,000,000 = 220M? Now if you are considering all numbers, for numbers like 4,551,000,000, do you expect to get 4.551G or without the decimal 4,551M?
  6. cmpeng

    Win32:OLE Excel Graph Title Problem

    Hello, Found the solution and figured I would share it. Before discussing the solution, I want to point out how this title display problem doesn't appear in the first function which is a complete mystery to me. OLD CODE: sub Res_wave_Click { my $chart; ... ... # Create...
  7. cmpeng

    Win32:OLE Excel Graph Title Problem

    Hello, I'm currently experiencing some problems displaying an Excel graph title. I have two functions, both open an Excel application, enter some data, and generate a graph for the user. Everything works fine except for the graph title in the second function. Here's the chart code for the...

Part and Inventory Search

Back
Top