Click here to Skip to main content
15,892,927 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhelp me Pin
piter_crao25-Jul-07 19:20
piter_crao25-Jul-07 19:20 
AnswerRe: help me Pin
_mubashir25-Jul-07 20:01
_mubashir25-Jul-07 20:01 
GeneralRe: help me Pin
Tom Deketelaere25-Jul-07 20:59
professionalTom Deketelaere25-Jul-07 20:59 
AnswerRe: help me Pin
Jonathan [Darka]25-Jul-07 21:09
professionalJonathan [Darka]25-Jul-07 21:09 
AnswerRe: help me Pin
leckey26-Jul-07 3:20
leckey26-Jul-07 3:20 
AnswerRe: help me Pin
Paul Conrad26-Jul-07 18:07
professionalPaul Conrad26-Jul-07 18:07 
QuestionEmbedding Word in VB.NET application Pin
Copper_12325-Jul-07 16:08
Copper_12325-Jul-07 16:08 
AnswerRe: Embedding Word in VB.NET application Pin
Mba-Lee25-Jul-07 23:39
Mba-Lee25-Jul-07 23:39 
Try using this code maybe it will help you:
Imports Microsoft.Office.Interop

Dim appWord As New Word.Application
Dim docWord As New Word.Document

docWord=appWord.Document.Open("C:\mydocument.doc")

And if you simply want to print it try this code:

Dim myProcess As New System.Diagnostics.Process()

With myProcess
.StartInfo.Filename="d:\path\filename.doc"
.StartInfo.Verb="Print"
.Start()
End With

Mba-lee Keswa Doing 3rd year in D.U.T. Using VB.Net language.

AnswerRe: Embedding Word in VB.NET application Pin
Paul Conrad26-Jul-07 18:08
professionalPaul Conrad26-Jul-07 18:08 
Questiondisplay data from database Pin
shereem khaleel25-Jul-07 13:18
shereem khaleel25-Jul-07 13:18 
AnswerRe: display data from database Pin
Christian Graus25-Jul-07 13:29
protectorChristian Graus25-Jul-07 13:29 
AnswerRe: display data from database Pin
Paul Conrad25-Jul-07 13:33
professionalPaul Conrad25-Jul-07 13:33 
AnswerRe: display data from database Pin
Dave Kreskowiak25-Jul-07 13:48
mveDave Kreskowiak25-Jul-07 13:48 
GeneralRe: display data from database Pin
Christian Graus25-Jul-07 14:54
protectorChristian Graus25-Jul-07 14:54 
GeneralRe: display data from database Pin
Paul Conrad25-Jul-07 15:00
professionalPaul Conrad25-Jul-07 15:00 
AnswerBAD USER! Pin
leckey25-Jul-07 14:50
leckey25-Jul-07 14:50 
GeneralRe: BAD USER! Pin
Paul Conrad25-Jul-07 14:52
professionalPaul Conrad25-Jul-07 14:52 
Questionhow to add a winsock in my project Pin
saadmechiche25-Jul-07 12:38
saadmechiche25-Jul-07 12:38 
AnswerRe: how to add a winsock in my project Pin
Dave Kreskowiak25-Jul-07 12:55
mveDave Kreskowiak25-Jul-07 12:55 
GeneralRe: how to add a winsock in my project Pin
Paul Conrad25-Jul-07 13:09
professionalPaul Conrad25-Jul-07 13:09 
GeneralRe: how to add a winsock in my project Pin
saadmechiche25-Jul-07 13:55
saadmechiche25-Jul-07 13:55 
GeneralRe: how to add a winsock in my project Pin
Paul Conrad25-Jul-07 15:01
professionalPaul Conrad25-Jul-07 15:01 
GeneralRe: how to add a winsock in my project Pin
Dave Kreskowiak25-Jul-07 17:00
mveDave Kreskowiak25-Jul-07 17:00 
Questionusing FileStreams Pin
reegan4125-Jul-07 10:38
reegan4125-Jul-07 10:38 
AnswerRe: using FileStreams Pin
Luc Pattyn25-Jul-07 11:48
sitebuilderLuc Pattyn25-Jul-07 11:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.