i want to open files with file double click i also applied this code
01.
If
System.Environment.GetCommandLineArgs().Length > 1
Then
02.
Dim
i
As
Integer
03.
For
i = 1
To
System.Environment.GetCommandLineArgs().Length - 1
04.
05.
Dim
filename = Environment.GetCommandLineArgs(i)
06.
Dim
document
As
RadDocument =
Nothing
07.
Dim
provider
As
IDocumentFormatProvider =
New
DocxFormatProvider()
08.
Dim
stream
As
Stream =
New
Stream(filename)
09.
10.
document = provider.Import(stream)
11.
12.
13.
MessageBox.Show(stream)
14.
Next
15.
Else
16.
End
If