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

Special Directories: Temp Directory

Posted on September 18, 2013October 26, 2015 By David Kittell
Imports System
Imports System.IO

Public Class MainClass

   Shared Sub Main()
        Console.WriteLine(My.Computer.FileSystem.SpecialDirectories.Temp)
   End Sub
End Class
Originally Posted on September 18, 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

Code VB.NET

Post navigation

Previous post
Next post

Related Posts

Count characters in a textbox using Javascript

Posted on July 15, 2013October 26, 2015

<script type="text/javascript"> function countChars(countfrom,displayto) { var len = document.getElementById(countfrom).value.length; document.getElementById(displayto).innerHTML = len; } </script> <textarea id="data" cols="40" rows="5" onkeyup="countChars(‘data’,’charcount’);" onkeydown="countChars(‘data’,’charcount’);" onmouseout="countChars(‘data’,’charcount’);"></textarea><br> <span id="charcount">0</span> characters entered. Originally Posted on July 15, 2013Last Updated on October 26, 2015 All information on this site is shared with the intention to help. Before any…

Read More

Get IP From Hostname

Posted on September 23, 2013October 26, 2015

Create a new project Add a TextBox and name it “txtHostname” Add another TextBox and name it “txtIP” Add a button and name it “btnResolve” and give it appropriate text like “Resolve IP” Double click on the button to auto generate the button action code and insert code as shown…

Read More

MSSQL – Identity Insert

Posted on March 10, 2014June 15, 2017

— Attempt to insert an explicit ID value of 3; — should return a warning. INSERT INTO products (id, product) VALUES(3, ‘garden shovel’) GO — SET IDENTITY_INSERT to ON. SET IDENTITY_INSERT products ON GO — Attempt to insert an explicit ID value of 3 INSERT INTO products (id, product) VALUES(3,…

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