User Profile

Collapse

Profile Sidebar

Collapse
savanm
savanm
Last Activity: Aug 20 '08, 09:22 PM
Joined: Oct 6 '06
Location: chennai
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • savanm
    started a topic Mtodbc Error
    in Perl

    Mtodbc Error

    Hi,

    When am trying to run my program i got the below error...

    Anybdy can u pls help me on this?

    Code:
    install_driver(MTODBC) failed: Can't locate DBD/MTODBC.pm in @INC (@INC contains: /opt/netpro/modules/sun4-solaris-thread-multi /opt/netpro/modules /opt/netpro/apps/ActivePerl-5.6/lib/5.6.1/sun4-solaris-thread-multi /opt/netpro/apps/ActivePerl-5.6/lib/5.6.1 /opt/netpro/apps/ActivePerl-5.6/lib/site_perl/5.6.1/sun4-solaris-thread-multi
    ...
    See more | Go to post
    Last edited by eWish; Aug 20 '08, 11:28 PM. Reason: Please use code tags

  • savanm
    started a topic Doubts in Sybase::CTLIB
    in Perl

    Doubts in Sybase::CTLIB

    Hi,
    <text>
    Is this possible to use Sybase::CTLIB Module in MSSQL
    </text>
    Navas
    See more | Go to post

  • savanm
    replied to Pop up Message in PERL
    in Perl
    Hi

    [code=text]

    Welcome.. Carry on Mr.promoth.

    [/code]...
    See more | Go to post

    Leave a comment:


  • savanm
    replied to Pop up Message in PERL
    in Perl
    Another way to do this using win32 Module

    [code=perl]
    use Win32;
    Win32::MsgBox(" Successfully copied");
    [/code]...
    See more | Go to post
    Last edited by numberwhun; Mar 12 '08, 01:53 PM. Reason: fix code tags

    Leave a comment:


  • savanm
    replied to arguments problem
    in Perl
    Hello peruron

    If u have any consequence in ur code, U Should show ur code in this forum.

    [code=perl]
    use strict;
    use Win32;

    my $arg1=$ARGV[0];
    my $arg2=$ARGV[1];
    my $cnt=@ARGV;
    if($cnt<2)
    {
    Win32::MsgBox(" Argument is Missing");
    exit;
    }
    print $cnt;
    my $input=<STDIN>;

    print $arg1;
    print...
    See more | Go to post
    Last edited by numberwhun; Mar 12 '08, 11:56 AM. Reason: add code tags

    Leave a comment:


  • savanm
    replied to Replace bold words in Word Document
    in Perl
    Hi.

    What r u trying so for?

    Please show your code, to explain.
    See more | Go to post

    Leave a comment:


  • savanm
    replied to Perl script
    in Perl
    Hi ...

    First try to show ur code.

    Explain the difficulty from the code.

    Then only possible to find ur problem
    See more | Go to post

    Leave a comment:


  • savanm
    replied to Hii I am newbie to perl
    in Perl
    test.txt contains
    <bridgehead>
    <strong>Explora tion and Settlement</strong>
    </bridgehead>

    [code=perl]
    open(FILE,"test .txt");
    while(<FILE>)
    {

    $temp=$_;

    $temp=~s/\n//sg;

    }
    [/code]
    See more | Go to post
    Last edited by numberwhun; Jan 10 '08, 02:02 PM. Reason: add code tags

    Leave a comment:


  • savanm
    replied to how to run an exe file from perl script
    in Perl
    hi

    Small idea for u... This may help ful to u...

    Get the input of exe from the perlscript as a first argument ....

    [code=perl]
    $log=$ARGV[0];//$log contains the input of the exe

    system("Z:\\use rs\\Navas\\tool s\\blackwell\\b w-zipfile-validation\\zip _validate.exe", $log);//pass here
    [/code]

    navas.M
    See more | Go to post
    Last edited by numberwhun; Jan 10 '08, 01:10 PM. Reason: add code tags

    Leave a comment:


  • savanm
    replied to grouping the tags:
    in Perl
    hi

    [CODE=perl]$temp=~s/<item1>/<p><list class="contents ">\n<list1 id="" listType="struc tured">\n<item1 >/sg;

    $temp=~s/<\/item1>/<\/item1>\n</list1>\n</list></p>/sg;[/CODE]
    See more | Go to post
    Last edited by eWish; Nov 19 '07, 04:44 AM. Reason: Added Code Tags

    Leave a comment:


  • savanm
    started a topic Packets and socket programming in perl
    in Perl

    Packets and socket programming in perl

    hi ...

    My Query is .. how to handle packets, socket programming in perl.

    Regards.
    Navas.M
    See more | Go to post

  • savanm
    replied to What is the perl future
    in Perl
    hi...

    u can download perl books from the following sites..

    http://www.free-itebooks.com/?s=perl

    http://www.esnips.com/

    Try to learn from active perl documentation.. .

    Regards
    Navas...
    See more | Go to post

    Leave a comment:


  • savanm
    replied to Problem with system command on Windows
    in Perl
    hi ..

    this single line code is working well ...

    system ("C:\\Progra m Files\\Microsof t Office\\office\ \outlook.exe");

    system ("C:\\Progra m Files\\Microsof t Office\\office\ \POWERPNT.EXE") ;

    I checked....

    Check the path ...
    See more | Go to post

    Leave a comment:


  • savanm
    started a topic Interactive PPM
    in Perl

    Interactive PPM

    hi ...

    I have a problem with the PPM(Perl Package Managment utility). when i run

    the command PPM. i didn't get the interactive(Gui mode window) to install

    packages, instead it's running in the command prompt.

    Like this

    ppm>

    Am using Perl5.8.8

    Hw to get the interactive window.
    See more | Go to post

  • savanm
    replied to hi problem in date
    in Perl
    Thanks Kevin... Code is working well......
    See more | Go to post

    Leave a comment:


  • savanm
    started a topic hi problem in date
    in Perl

    hi problem in date

    Hi all

    [code=perl]
    my $temp;
    $temp=20070106;
    #####the first four digit is year next two digit is month nd the final two is day
    print $temp;
    $temp1=$temp;
    $temp1=~s/(.{4})(.{2})(.{ 2})/$1$2$3/g;
    print $temp1;
    [/code]

    in the above code result of $temp1 also the same...I need the o/p like this

    Format 2007jan06...
    If the i/p is 200070406......
    See more | Go to post
    Last edited by numberwhun; Sep 28 '07, 09:39 AM. Reason: add code tags

  • savanm
    replied to Tcl\tk - Where to get
    in Perl
    hi
    Weather it is Free Version or Not?
    See more | Go to post

    Leave a comment:


  • Hi...

    When ever you Need Help u must post the sample file

    Nd wt u already done...(Ur code)

    use $. to find the line no....

    pos--->for column

    Navas
    See more | Go to post

    Leave a comment:


  • savanm
    started a topic Tcl\tk - Where to get
    in Perl

    Tcl\tk - Where to get

    Hai...

    Where to get tcl/tk...and hw to install in windows

    Navas.M
    See more | Go to post

  • savanm
    replied to Comparing two files
    in Perl
    Hi G.Uma Maheshwari

    Try this This is the basic idea of Comparing two files...

    [CODE=perl]
    use File::Compare;

    if (compare("xmlwr ite.pl","1xmlwr ite.pl") == 0) {
    print "They're equal\n";
    }
    [/CODE]

    Regards.
    Navas.M
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...