Profit:
Just add the modSDK.bas and modcom.bas to RRskineditor then add the commands below in the relevant places in the main form:
Code:
Option Explicit
Private Sub save_Click()
'save code
'Send the reloadskin command on saving
COMSend "RoadRunner", "RELOADSKIN"
End Sub
Private Sub Form_Load()
'Prepare to receive messages
COMHook Me.hwnd
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
'Unhook message API
COMUnhook Me.hwnd
End Sub