Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Cast Memo As Text

Posted on March 19, 2013October 26, 2015 By David Kittell
cstr(<mycolumn>)
Originally Posted on March 19, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Access Code

Post navigation

Previous post
Next post

Related Posts

List Views In Database

Posted on February 25, 2013October 26, 2015

SELECT name FROM sys.views ORDER BY name SET NOCOUNT ON DECLARE @ViewName AS nVarChar(128) , @Query AS nVarChar(500) /* Declare Cursor */ DECLARE Cur_Views CURSOR FOR SELECT name FROM [sys].[all_views] x WHERE x.schema_id = 1 — Loop through the views. OPEN Cur_Views — Fetch the first view FETCH NEXT FROM…

Read More

Import Excel Spreadsheet into DataGrid

Posted on March 25, 2013October 26, 2015

Originally found at http://blueraiden.exofire.net/blog/import-excel-spreadsheet-data-to-datagridview-using-vb-net For the code to work you need to first add a DataGridView and a Button in design view and have a valid file path for the Excel file. Imports System.Data.SqlClient Public Class Form1 Dim MyConnection As System.Data.OleDb.OleDbConnection Dim ExcelDataSet As System.Data.DataSet Dim ExcelAdapter As System.Data.OleDb.OleDbDataAdapter Private…

Read More

PowerShell – IIS Remove Site

Posted on March 11, 2016March 14, 2016

clear # Check For WebAministration – Start try { $ImportSucceeded = import-module WebAdministration -ErrorAction Stop } catch { Write-Output "Unable to Import" try { $AddSucceeded = add-pssnapin WebAdministration -ErrorAction Stop } catch { Write-Output "Unable to Add PS Snapin" try { $AddFeatureSucceeded = Add-WindowsFeature WindowsPowerShellWebAccess -ErrorAction Stop } catch {…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes