Dear Ian, StrataFrame is designed to work within the IDE. However, you can use the native DataAdapter technology to build commands on the fly. I used VB for no particular reason, and I've assumed your data is stored in SQL Server tables, again just to build an example; the other data alternatives have analogs:
Imports System.Data.SqlClient
Public Class Form1
Public da As SqlDataAdapter
Public cn As SqlConnection
Public cb As SqlCommandBuilder
Public cs As String = "your connection string here"
Private Sub Form1_Load( _
ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles MyBase.Load
cn = New SqlConnection(cs)
cn.Open()
da = New SqlDataAdapter("SELECT * FROM Table", cn)
cb = New SqlCommandBuilder(da)
da.DeleteCommand = cb.GetDeleteCommand()
da.UpdateCommand = cb.GetUpdateCommand()
da.InsertCommand = cb.GetInsertCommand()
End Sub
End Class
However, this couples your connection and SQL to the application, which compromises maintainability. But if that's what you need to do, it is possible.
Les