You can find all of these through the class library. Most of these are going to be in the Tools namespace (MicroFour.StrataFrame.Tools). Common has a number of functions that do a wide spectrum of actions. You can call the screen capture like this:Dim myScreen As System.Drawing.Image = MicroFour.StrataFrame.Tools.ScreenCapture.CaptureScreen()
Dim myWindow As System.Drawing.Image = MicroFour.StrataFrame.Tools.ScreenCapture.CaptureWindow(Me.Handle)
Encryption gets a bit more technical, but we have a 3DES wrapper that can make it much easier. You can also see an example of this in the CRM sample in the CreditCards BO. The credit card gets encrypted to the database and the BO shows how to save and retrieve with the 3DES. You will find this in the Security.Encryption namespace (MicroFour.StrataFrame.Security.Encryption).
Dim _3des As New MicroFour.StrataFrame.Security.Encryption.TripleDESWrapper()
Dim myString As String = _3des.Encrypt("Testing")
If you have any questions about any specific piece please let me know.