Search Result

Collapse
6 results in 0.0043 seconds.
Keywords
Members
Tags
xls
  •  

  • Marko Danilovic
    started a topic Extract/convert string from XLS

    Extract/convert string from XLS

    Here is my code:


    Code:
    Option Explicit On
    Option Strict Off
    Imports System.IO
    Imports System.Text
    Public Class Form1
    Public moApp As Object
        Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Try
                moApp = CreateObject("Excel.Application")
                moApp.Visible = False
            Catch
    ...
    See more | Go to post

  • nicstel
    started a topic Xls to Pdf

    Xls to Pdf

    I wrote a Piece of code to generate an Excel file. I would like to create a Pdf from this file thru my code. How to handle this? I saw the PHPExcel, but I don`t know how it`s work!

    Thank You

    Nicolas
    See more | Go to post

  • ClausAndersen
    started a topic Create a table from an xls or csv file

    Create a table from an xls or csv file

    Hi!

    New to this forum im looking for an easy way to create a table from ex. an xls or csv file?
    Would be ok to create all columns as VARCHAR, I could then correct "Type" after the table creation manually.

    Have a MySQL 5.5 server on my Mac Pro running OS X 10.7. Also have Sequel Pro, MySQLWorkbench installed, and have phpMyAdmin set up on the server as well.

    Im def. NOT an expert in MySQL!...
    See more | Go to post

  • xsl-xml: how can I transform an attribute text node to a element tag

    how can I transform an attribute text node to a element tag

    , for example I have:
    <objectClass>
    <objectClass name="CAR">
    </objectClass>

    which I want to transform it to the following:


    <objectClass>
    < CAR>
    < /CAR>
    </objectClass>

    thanks for help,
    See more | Go to post

  • bhbrayeun
    started a topic how to embed image(png) to Excel using php
    in PHP

    how to embed image(png) to Excel using php

    I use below to output data to a excel file using PHP,
    Code:
    echo "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns=\"http://www.w3.org/TR/REC-html40\">";
    		echo "<head>";
    		echo "<meta http-equiv=Content-Type content=\"text/html; charset=us-ascii\"> <meta name=ProgId content=Excel.Sheet><meta
    ...
    See more | Go to post

  • NDayave
    started a topic Appending to Excel File from Access VBA

    Appending to Excel File from Access VBA

    How do,

    I want to be able to append the data from a recordset to the end of an excel file.

    Currently I can do this with text files through the .write method, and I can create excel sheets with data in, but not append to the end of them.

    I have spent a fair while looking for a solution on this and have come up with literally nothing.

    Is there any way to, rather than replace the data in an...
    See more | Go to post
Working...