Giter Club home page Giter Club logo

gagniuc / binary-files-inside-excel-vba Goto Github PK

View Code? Open in Web Editor NEW
22.0 22.0 4.0 3.63 MB

This application converts any executable file to VBA source code that can be included as a '.bas' module in an EXCEL file. Once inserted into the EXCEL file, the VBA code can be used to completely restore the executable file to disk in the same directory as the EXCEL file.

License: MIT License

BASIC 51.07% Visual Basic 6.0 48.93%
automation binary excel excel-vba files filesystem hex hexadecimal hexadecimal-converter md5-hash vb6 vba vba-excel xlsm

binary-files-inside-excel-vba's Introduction

Bioinformatics Algorithms in JavaScript Visual Basic (VBA; VB 6.0) - Markov-Chains An Introduction to Programming Languages: Simultaneous Learning in Multiple Coding Environments


Note: all applications presented here are designed natively in their respective programming or scripting languages, without libraries or external files. Thus, the applications have no dependencies and can be used offline. There are about 100 posts uploaded here, however, below are some useful projects that I have chosen to show as a preview:

Jupiter Bioinformatics (V1) Jupiter Bioinformatics V2 (normal) Jupiter Bioinformatics V2 (dark) Jupiter Bioinformatics V2 experiments Sequence Logo (relative style) Sequence Logo (block style)

More [+]

Discrete Probability Detector (DPD) Predictions with Markov Chains Objective Digital Stains Markov Chains scanner Linear congruential generator Information content vs percentage A high discrimination motif scanner A high discrimination motif scanner (variable sensitivity) Information content vs Information entropy Sequence Logo (relative style with axes) Sequence Logo (block style with axes) Spectral Forecast model for signals Chaos & noise Spectral Forecast equation for signals Spectral Forecast equation for matrices


Waveform-mixing-with-Spectral-Forecast-in-JS Waveform-mixing-with-Spectral-Forecast-in-JS Waveform-mixing-with-Spectral-Forecast-in-JS

Waveform-mixing-with-Spectral-Forecast-in-JS Waveform-mixing-with-Spectral-Forecast-in-JS Waveform-mixing-with-Spectral-Forecast-in-JS


native - Java Script Charts native - Java Script Charts native - Java Script Charts


Diabetes prediction prototype Prototype software for Photon-pixel coupling method PI laboratory in VB6 Motif detection VB6 Visual Sequence Alignment in VB6 Markov Chains detector in VB6Dynamic Block Allocation algorithm PromKappa 3.0 Objective Digital Stains in VB6 Markov Chains Simulation framework

Markov Chains Prediction framework Spectral-Forecast-equation-VB6-app-2.0 Markov Chains The weather

Bioinformatics Algorithms in JavaScript Bioinformatics Algorithms in JavaScript PromKappa 3.0 Objective Digital Stains in VB6


RNA complementarity DNA complementarity Entropy of text


Algorithms in Visual Basic for Applications

More [+]

Binary files inside EXCEL VBA

Spectral Forecast in EXCEL


  • Paul A. Gagniuc. An Introduction to Programming Languages: Simultaneous Learning in Multiple Coding Environments. Synthesis Lectures on Computer Science. Springer International Publishing, 2023, pp. 1-280.

  • Paul A. Gagniuc. Algorithms in Bioinformatics: Theory and Implementation. John Wiley & Sons, Hoboken, NJ, USA, 2021, pp. 1-528. ISBN: 9781119697961.

  • Paul A. Gagniuc. Markov chains: from theory to implementation and experimentation. Hoboken, NJ, John Wiley & Sons, USA, 2017, pp. 1-256. ISBN: 978-1-119-38755-8.


More [+]

Gagniuc's Github Stats
Gagniuc


Gagniuc

gagniuc.github.io

binary-files-inside-excel-vba's People

Contributors

gagniuc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

binary-files-inside-excel-vba's Issues

IDEAS - Library future

Saw this library on vbforums - great stuff and something I always wanted also. It may be worthwhile instead making these objects with predeclared IDs:

VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
END
Attribute VB_Name = "resIconHouse"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private pData(476) as Byte()
Private pInitialised as boolean

Attibute Data.VB_UserMemId = 0
Public Property Get Data() as Byte()
   if !pInitialised then Call init
   Data = pData
End Property

Public Property Get Name() as string
   Name = "IconHouse"
End Property 

Public Property Get AsFile() as string
  static sPath as string
  if sPath = "" then
    'if not save as temporary file if file doesn't already exist...
  end if
  AsFile = sPath
End Property

Public Property Get AsPicture() as IPictureDisp
  static pic as IPictureDisp: if pic is nothing then set pic = LoadPicture(AsFile) 'perhaps there is a better way
  set AsPicture = pic
End Property

Public Function CallFunction(ByVal sFuncName as string, aParamTypes as vbVarType(), aParamValues as vbVarType(), RetType as vbVarType) as variant
   'use DispCallFunc ...
End Function

Private sub init()
  pData(1) = ...
  pData(2) = ...
  '...
End Sub

or better still exporting specific functions directly, which calls CallFunction internally.

This would highly abstract usage of the binary:

set image1.Picture = resIconHouse.asPicture()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.