Click here to Skip to main content
15,900,258 members

Comments by DiiR (Top 17 by date)

DiiR 14-Feb-12 1:30am View    
word ws just an option..i was trying to do something with it..
this one i can see its much better. i am actually working on it..but i guess it suits the app am developing..
Thanks a lot for your time and help..
DiiR 13-Feb-12 15:04pm View    
i'l try these alternatives. in fact the whole idea is to create a form where the user can upload a picture then add some text to it. also format the text. so i was trying to embed the word in vb.net then save the file as an image which i will then use as a title page on a video.
Thnx..
DiiR 13-Feb-12 14:30pm View    
while doing some research i found something called Edraw office viewer which can be added as reference, but it is not showing in my toolbox..
http://www.edrawsoft.com/embed-word-vbnet.php
thnx..
DiiR 30-Jan-12 11:33am View    
wow! it works!
thnx..i finally got wot i wntd..
DiiR 30-Jan-12 10:36am View    
Dim index As Integer = file_name.IndexOf(".")
' i used the indexOf to determine the extension

Dim length As Integer = file_name.Length



extension = file_name.Substring(index)

If extension = ".avi" Then
LVVideo.Items.Add(file_name, 0) 'this is where the file is added to the listview

End If