Monday, July 27, 2020
Create QR-Code with VBA
›
Function to add QR-Code as image in your file. Function Insert_QR(codetext As String) Dim URL As String, MyCell As Range Set MyCell = App...
Excel To PDF with VBA
›
Sub ConvertExcelToPDF() 'Export Single Sheets ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:="TrainingDeo", ...
Friday, July 24, 2020
SQL Query to find all tables in a Database containing specified column name
›
Following query will help to find field name available in any of the table in a database. SELECT * from INFORMATION_SCHEMA.COLUMNS wher...
Thursday, July 16, 2020
Sort JSON object Array
›
Sort JSON object Array var array = [{ "No": "12", "Name": "Sameer Patel", ...
Friday, June 19, 2020
Convert Dropdown to Textbox with JQuery
›
Here is the simple way to convert dropdown to text. <style> .red{background:red;} </style> <select id='ddl'>...
Thursday, May 28, 2020
Extract only text content from HTML in Javascript
›
1. Create a temporary DOM element and retrieve the text /* Returns the text from a HTML string */ function GetPlanText_FromHtml(html){ ...
Friday, February 28, 2020
JQuery to create Download Link
›
Simple way to download file without navigating. function downloadFile(filePath){ var link=document.createElement('a'); li...
‹
›
Home
View web version