Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Type JustSilly
NotWanted As String * 2
RestOfString As String * 4096
End Type
Private Type Buffer
Temp As String * 4098
End Type
Private Sub Command1_Click()
Dim strSource As Buffer
Dim strSpoon As JustSilly
strSource.Temp = "Hello there"
LSet strSpoon = strSource
Debug.Print Trim(strSpoon.RestOfString)
End Sub