View Single Post
Old 01-08-2006, 03:15 PM   #73
Gobby
Raw Wave
Gobby's CarPC Specs
 
Join Date: Jun 2004
Location: On the beach
Vehicle: Pug 306 XSi
Posts: 2,410
My Photos: ()
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

Gobby is offline