VB6 library for creating Excel spreadsheets - vb6

I am trying to get a legacy app working on terminal services with the minimum amount of changes to the existing code base.
What library for creating Excel spreadsheets using VB6 without having Excel installed could I use to solve this?

If you are using COM Interop to create Excel spreadsheets you must have Excel installed on the machine.
You could create comma delimited .csv files instead.

CSV is easy as suggested in the other answer. Sometimes folk use HTML too.
Create Excel (.XLS and .XLSX) file from C#
Or even ADO and OLEDB
http://support.microsoft.com/kb/195951/

Related

Does Excel Automation in UI Path support libre Office csv files

I'm trying to read contents from CSV files in UiPath. While trying to execute the workflow I'm getting the following error. But I've already installed the libre office on my PC.
UiPath can read excel or csv files without the help of any other software. You can use 'read csv' activity for this case.
And the error that you showed looks user defined.

Ruby: delete columns by name in MS Excel on Windows?

Is there a way to use Ruby to delete columns in an Excel spreadsheet by name (i.e. the value in the first row of the spreadsheet) on a Windows machine?
Background if you want it:
I am going to be receiving a large number of Excel spreadsheets on a regular basis. Some of these spreadsheets will contain columns that need to be deleted. I will know the names (first-row values) of the columns, but their positions in their respective spreadsheets will change from time to time, so I won't be able to automatically refer to the columns by letter. I would really like to be able to automate this process...
POI is the Apache project to create a library for reading MS Office files; it appears they have Ruby extensions. I have never used it before, but the code looks easy enough to understand. Good luck! Check it out here
You probably want to use the WIN32OLE library, built into the standard library on Windows. There's an example in PickAxe about using Microsoft Excel through the WIN32OLE library, and other examples here. You just need to learn how to use the Excel COM API to make the particular changes you're interested in.

convert Excel to csv either using shell script or jython . if so how

I am looking for a procedure where i can convert the excel to csv either if there some shell script , if so please guide me or if possbile how can i do in jython.
The main reason is that the excel is being received from other source and the header is always changing , which is unnecessary and we need to have some automatic way to remove that . If is it possible to do that easily using jython or shell script and remove only the first line of the excel
Thanks in advance.
To convert between various file formats I use: PyODConverter. There is Python and Java version.
It uses OpenOffice working as a service and can convert between various document formats including MS Office, PDF and text.
There is also pure Python library: xlrd Library for developers to extract data from Microsoft Excel (tm) spreadsheet files

extract ppt from office word using OpenXml format through c#

I want to extract a flash object from a word doc using OpenXml.I have done it other way round but it is not working as, if there are many flash objects then the processing time got hampered and henceforth i think openxml is more suitable>please someone help me in doing the same .I am coding in c#
Use this: Standalone tool for extracting embedded Office Open XML objects from files

Source code control for Oracle Forms/Reports Builder

Am looking and testing all the source control solutions to use with Oracle Forms/Reports builders. but, none of the existing solutions works well with Oracle products. Any one out there did a similar practice? and how do you control the source codes of Oracle Forms/Reports?
What we used to do (I no longer work with Forms or Reports) is convert the forms and reports to text files (.fmt files for Forms, I forget the file extension for Reports) and put those text files into the version control system (which was PVCS).
In Forms 11g developer one option is available to create .txt file of the form source. We are doing baseline in SVN this .txt file.
File->Admin->object list report

Resources