Click here to Skip to main content
15,891,431 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Creating Word/Excel files in VB Pin
Mark0613-Sep-05 4:18
Mark0613-Sep-05 4:18 
Questionhow to refresh the datagrid? Pin
Anonymous12-Sep-05 20:43
Anonymous12-Sep-05 20:43 
AnswerRe: how to refresh the datagrid? Pin
Anonymous12-Sep-05 23:15
Anonymous12-Sep-05 23:15 
Questionchecking .net framework before installation Pin
abhinish12-Sep-05 20:12
abhinish12-Sep-05 20:12 
AnswerRe: checking .net framework before installation Pin
Gavin Jeffrey12-Sep-05 20:40
Gavin Jeffrey12-Sep-05 20:40 
GeneralRe: checking .net framework before installation Pin
abhinish13-Sep-05 19:50
abhinish13-Sep-05 19:50 
QuestionHow to open word or notepad from the vb.net link? Pin
Member 223436012-Sep-05 18:47
Member 223436012-Sep-05 18:47 
AnswerRe: How to open word or notepad from the vb.net link? Pin
darkshadow12-Sep-05 19:15
darkshadow12-Sep-05 19:15 
If nobody offers a better idea, this is how it was done in vb6. Perhaps you can use this as a starting point:

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_SHOWNORMAL As Long = 1

Dim nResult As Long, pathName As String
pathname = <whatever you like>
nResult = ShellExecute(Me.hwnd, "Open", pathname , 0, 0, SW_SHOWNORMAL)

AnswerRe: How to open word or notepad from the vb.net link? Pin
PranjalSharma12-Sep-05 19:21
PranjalSharma12-Sep-05 19:21 
GeneralRe: How to open word or notepad from the vb.net link? Pin
Anonymous12-Sep-05 19:35
Anonymous12-Sep-05 19:35 
GeneralRe: How to open word or notepad from the vb.net link? Pin
Anonymous12-Sep-05 20:29
Anonymous12-Sep-05 20:29 
GeneralRe: How to open word or notepad from the vb.net link? Pin
PranjalSharma12-Sep-05 21:15
PranjalSharma12-Sep-05 21:15 
GeneralRe: How to open word or notepad from the vb.net link? Pin
Anonymous12-Sep-05 23:05
Anonymous12-Sep-05 23:05 
QuestionHow to name an user-defined range into a excel file using .net language?? Pin
hustsay2312-Sep-05 17:13
hustsay2312-Sep-05 17:13 
QuestionContext Menus and Indexes Pin
No-e12-Sep-05 10:00
No-e12-Sep-05 10:00 
AnswerRe: Context Menus and Indexes Pin
Luis Alonso Ramos12-Sep-05 10:54
Luis Alonso Ramos12-Sep-05 10:54 
AnswerRe: Context Menus and Indexes Pin
Briga12-Sep-05 22:12
Briga12-Sep-05 22:12 
GeneralRe: Context Menus and Indexes Pin
No-e13-Sep-05 4:38
No-e13-Sep-05 4:38 
GeneralRe: Context Menus and Indexes Pin
Briga15-Sep-05 23:32
Briga15-Sep-05 23:32 
QuestionINSERT INTO database Pin
daviiie12-Sep-05 9:08
daviiie12-Sep-05 9:08 
AnswerRe: INSERT INTO database Pin
Dave Kreskowiak12-Sep-05 10:04
mveDave Kreskowiak12-Sep-05 10:04 
GeneralRe: INSERT INTO database Pin
daviiie12-Sep-05 12:33
daviiie12-Sep-05 12:33 
GeneralRe: INSERT INTO database Pin
Christian Graus12-Sep-05 12:51
protectorChristian Graus12-Sep-05 12:51 
AnswerRe: INSERT INTO database Pin
KaptinKrunch12-Sep-05 14:32
KaptinKrunch12-Sep-05 14:32 
QuestionForm Loading Pin
No-e12-Sep-05 8:06
No-e12-Sep-05 8:06 

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.