Click here to Skip to main content
15,900,378 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Problem with UDPClient Receive function Pin
xairoy5-Jan-10 20:46
xairoy5-Jan-10 20:46 
QuestionHow to open openoffice document in vb 6.0 Pin
JC.KaNNaN5-Jan-10 2:28
JC.KaNNaN5-Jan-10 2:28 
AnswerRe: How to open openoffice document in vb 6.0 Pin
Dave Kreskowiak5-Jan-10 3:53
mveDave Kreskowiak5-Jan-10 3:53 
AnswerRe: How to open openoffice document in vb 6.0 Pin
Eddy Vluggen5-Jan-10 7:22
professionalEddy Vluggen5-Jan-10 7:22 
AnswerRe: How to open openoffice document in vb 6.0 Pin
JC.KaNNaN5-Jan-10 20:58
JC.KaNNaN5-Jan-10 20:58 
GeneralRe: How to open openoffice document in vb 6.0 Pin
Ashfield5-Jan-10 21:49
Ashfield5-Jan-10 21:49 
AnswerRe: How to open openoffice document in vb 6.0 Pin
David Skelly5-Jan-10 22:15
David Skelly5-Jan-10 22:15 
AnswerRe: How to open openoffice document in vb 6.0 [modified] Pin
JC.KaNNaN6-Jan-10 22:18
JC.KaNNaN6-Jan-10 22:18 
hi,
i got the solution for open the open office document.
this below coding not only open open office document . we can run any application through this coding ....

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _
ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long

Private Const SW_HIDE As Long = 0
Private Const SW_SHOWNORMAL As Long = 1
Private Const SW_SHOWMAXIMIZED As Long = 3
Private Const SW_SHOWMINIMIZED As Long = 2


Private Sub Command1_Click()
ShellExecute Me.hwnd, "open", "C:\pdf\v.pdf", vbNullString, "D:\", SW_SHOWNORMAL
End Sub

Yours,
KaNNaN

-----------------------------------------------------------------
"Success is When Ur Signature Becomes An Autograph"


modified on Thursday, January 7, 2010 8:24 AM

QuestionWeb Service with different file extensions Pin
DoxMan4-Jan-10 23:35
DoxMan4-Jan-10 23:35 
AnswerRe: Web Service with different file extensions Pin
Dimitri Witkowski5-Jan-10 3:56
Dimitri Witkowski5-Jan-10 3:56 
AnswerRe: Web Service with different file extensions Pin
Dave Kreskowiak5-Jan-10 3:56
mveDave Kreskowiak5-Jan-10 3:56 
QuestionHow to read data from serial port of a Thin Client Pin
sachin2 20104-Jan-10 22:54
sachin2 20104-Jan-10 22:54 
AnswerRe: How to read data from serial port of a Thin Client Pin
Dave Kreskowiak5-Jan-10 3:49
mveDave Kreskowiak5-Jan-10 3:49 
AnswerRe: How to read data from serial port of a Thin Client Pin
sachin2 20105-Jan-10 17:54
sachin2 20105-Jan-10 17:54 
GeneralRe: How to read data from serial port of a Thin Client Pin
Dave Kreskowiak6-Jan-10 1:54
mveDave Kreskowiak6-Jan-10 1:54 
AnswerRe: How to read data from serial port of a Thin Client Pin
sachin2 20106-Jan-10 21:44
sachin2 20106-Jan-10 21:44 
GeneralRe: How to read data from serial port of a Thin Client Pin
Dave Kreskowiak7-Jan-10 0:26
mveDave Kreskowiak7-Jan-10 0:26 
QuestionHow to check internet connection is there or not in vb 6.0?? Pin
JC.KaNNaN4-Jan-10 22:36
JC.KaNNaN4-Jan-10 22:36 
AnswerRe: How to check internet connection is there or not in vb 6.0?? Pin
Aric Wang4-Jan-10 23:05
Aric Wang4-Jan-10 23:05 
GeneralRe: How to check internet connection is there or not in vb 6.0?? Pin
JC.KaNNaN5-Jan-10 0:57
JC.KaNNaN5-Jan-10 0:57 
AnswerRe: How to check internet connection is there or not in vb 6.0?? Pin
Dave Kreskowiak5-Jan-10 3:44
mveDave Kreskowiak5-Jan-10 3:44 
QuestionNewbie Question Regarding Internet Communication Pin
BubbaMN4-Jan-10 17:26
BubbaMN4-Jan-10 17:26 
AnswerRe: Newbie Question Regarding Internet Communication Pin
Abhinav S4-Jan-10 18:58
Abhinav S4-Jan-10 18:58 
Questionhow to use wintrust.dll Pin
Anubhava Dimri4-Jan-10 0:14
Anubhava Dimri4-Jan-10 0:14 
AnswerRe: how to use wintrust.dll Pin
Dave Kreskowiak4-Jan-10 8:53
mveDave Kreskowiak4-Jan-10 8:53 

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.