User Profile

Collapse

Profile Sidebar

Collapse
padawanlinuxero
padawanlinuxero
Last Activity: Mar 14 '08, 11:59 PM
Joined: Oct 22 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • padawanlinuxero
    started a topic putting a image in a specific cell
    in Perl

    putting a image in a specific cell

    hello

    I am working on a excel file and I need to add a image a barcode in JPG, but everytime I run the program puts the image in the top part of the excel file and not where it should

    this is what I use to put the image on the excel file


    Code:
    $Hoja -> Range("E47")->Select();
    $excel->ActiveSheet->Pictures->Insert("c:\\projectword\\$filename2.jpg");
    ...
    See more | Go to post

  • padawanlinuxero
    started a topic I am kinda desperate please help
    in C

    I am kinda desperate please help

    Hello !!!


    I am working on a proyect in Perl that requires a codebar pdf417 since Perl module dont have any I found myself looking for a solution in the web, and found a program in source code, call pdf417_enc version 4.4, one thing is that is made for linux using C, I try to run it using Visual C++, but cant run it, on e of the errors is this one:

    Linking...
    LIBCD.lib(crt0. obj) : error LNK2001: unresolved...
    See more | Go to post

  • padawanlinuxero
    started a topic how to run a excel macro on perl ???
    in Perl

    how to run a excel macro on perl ???

    good day

    I have a problem, actually a big problem, I need to a plain xls file give it format, by format is adding an image, adding headers, adding rows at top of the file like 15 rows free, and I need to add text for titles of the report and stuff like that, so I thought I can do it with a macro, but I created a macro and where to save the macro?

    I was reading the help on excel it said something about saving the macro...
    See more | Go to post

  • padawanlinuxero
    started a topic Add blank rows to a CSV file
    in Perl

    Add blank rows to a CSV file

    I have a program that goes to a MySQL table and puts all the data of the table in a CSV file, now I want to leave 6 rows in blank at top of the file when open in Excel, but I dont know how to do that.


    I use these to put all the data to into the csv file

    Code:
    my $sql = "SELECT * INTO OUTFILE 'c:/proyecto/$filename'
    FIELDS TERMINATED BY ','
    LINES TERMINATED BY '\r\n' FROM t3132";
    ...
    See more | Go to post

  • padawanlinuxero
    started a topic Newbie with a problem
    in Perl

    Newbie with a problem

    Hello all!!!


    I am learning Perl here at my work, but right now I have a problem, I was reading about DBI, which is very cool since we use a lot of old DBF tables, so I am able to get the DBF data to CSV, but I was wondering is there a way to put it in MySql tables

    I have here a small example to turn DBF to CSV but how to make it to MySql table? can you help me?


    Code:
    #!/usr/bin/perl
    use
    ...
    See more | Go to post
No activity results to display
Show More
Working...