View Single Post
  #2 (permalink)  
Old 06-08-2008, 08:25 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 3,337
Default

You can use code similar to that one to add file association in the registry: Add file association to Basic4ppc source code files (on the device)

Your program will receive the tapped file name as the first argument - args(0).
You can check in App_Start:
Code:
If args.Count > 0 then
 ... 'Load tapped file
End If
Reply With Quote