-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
536 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# excel-csvexporter | ||
# CSV Exporter -- Excel VBA Add-In | ||
|
||
Lightweight tool to export ranges within an Excel sheet to CSV. | ||
|
||
See the project [wiki](https://github.com/bskinn/excel-csvexporter/wiki) for documentation, installation instructions, etc. | ||
|
||
Copyright (c) Brian Skinn 2016 | ||
The binary `.xlam` file for each release can be found on the GitHub page for that release. | ||
|
||
Copyright (c) Brian Skinn 2016-2019 | ||
|
||
License: The MIT License | ||
See [`LICENSE.txt`](https://github.com/bskinn/excel-csvexporter/blob/master/LICENSE.txt) for full license terms and contributor agreement. | ||
See [`LICENSE.txt`](https://github.com/bskinn/excel-csvexporter/blob/master/LICENSE.txt) for full license terms. | ||
|
||
*CSV Exporter is third-party software, and is neither affiliated with, nor authorized, | ||
sponsored, or approved by, Microsoft Corporation.* |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Attribute VB_Name = "Exporter" | ||
|
||
' # ------------------------------------------------------------------------------ | ||
' # Name: Exporter.bas | ||
' # Purpose: Helper module for launching the CSV Exporter add-in | ||
' # | ||
' # Author: Brian Skinn | ||
' # [email protected] | ||
' # | ||
' # Created: 24 Jan 2016 | ||
' # Copyright: (c) Brian Skinn 2016-2019 | ||
' # License: The MIT License; see "LICENSE.txt" for full license terms. | ||
' # | ||
' # http://www.github.com/bskinn/excel-csvexporter | ||
' # | ||
' # ------------------------------------------------------------------------------ | ||
|
||
Option Explicit | ||
|
||
Sub showForm() | ||
Attribute showForm.VB_Description = "Load the CSVExporter application." | ||
Attribute showForm.VB_ProcData.VB_Invoke_Func = "C\n14" | ||
UFExporter.Show | ||
End Sub | ||
|
Oops, something went wrong.