Click here to Skip to main content
15,895,656 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Whats wrong with this.......... Pin
daviiie24-Feb-06 5:17
daviiie24-Feb-06 5:17 
AnswerRe: Whats wrong with this.......... Pin
Roy Heil24-Feb-06 5:22
professionalRoy Heil24-Feb-06 5:22 
QuestionMerge Pdf Files Pin
contact ajo24-Feb-06 3:46
contact ajo24-Feb-06 3:46 
QuestionPassword hacking Pin
Osama12324-Feb-06 3:18
Osama12324-Feb-06 3:18 
AnswerRe: Password hacking Pin
J4amieC24-Feb-06 3:45
J4amieC24-Feb-06 3:45 
AnswerRe: Password hacking Pin
[DK]KiloDunse24-Feb-06 6:24
[DK]KiloDunse24-Feb-06 6:24 
QuestionHow to kill an Excel process? Pin
Juan Pedro Prez24-Feb-06 2:34
Juan Pedro Prez24-Feb-06 2:34 
AnswerRe: How to kill an Excel process? Pin
Dean_SF24-Feb-06 8:40
Dean_SF24-Feb-06 8:40 
Give this a try when you are done using Excel:


' Release Application object:
If Not oExcel.UserControl Then oExcel.UserControl = True
System.Runtime.InteropServices.Marshal.ReleaseComObject(oExcel)

'Release worksheet:
If Not oWorkSheet Is Nothing Then
System.Runtime.InteropServices.Marshal.ReleaseComObject(oWorkSheet)
oWorkSheet = Nothing
End If

'Release workbook:
If Not oWorkBook Is Nothing Then
System.Runtime.InteropServices.Marshal.ReleaseComObject(oWorkBook)
oWorkBook = Nothing
End If

oExcel = Nothing

oExcel is your Excel application object.
oWorksheet is your Excel worksheet object if you have one instantiated.
oWorkbook is your Excel workbook object if you have one instantiated.

Dean
GeneralRe: How to kill an Excel process? Pin
Juan Pedro Prez24-Feb-06 9:07
Juan Pedro Prez24-Feb-06 9:07 
QuestionHow to shift to Admin account(in vb)? Pin
SIJUTHOMASP24-Feb-06 1:20
professionalSIJUTHOMASP24-Feb-06 1:20 
QuestionSending mail using SMTP Pin
Sgn_Flex23-Feb-06 23:43
Sgn_Flex23-Feb-06 23:43 
AnswerRe: Sending mail using SMTP Pin
Guffa24-Feb-06 0:20
Guffa24-Feb-06 0:20 
AnswerRe: Sending mail using SMTP Pin
Divya Rathi24-Feb-06 9:08
Divya Rathi24-Feb-06 9:08 
QuestionHow do I convert Image to FileStream Pin
alien viper23-Feb-06 23:22
alien viper23-Feb-06 23:22 
AnswerRe: How do I convert Image to FileStream Pin
Nibu babu thomas24-Feb-06 1:15
Nibu babu thomas24-Feb-06 1:15 
AnswerRe: How do I convert Image to FileStream Pin
[DK]KiloDunse24-Feb-06 2:23
[DK]KiloDunse24-Feb-06 2:23 
GeneralRe: How do I convert Image to FileStream Pin
alien viper24-Feb-06 15:33
alien viper24-Feb-06 15:33 
GeneralRe: How do I convert Image to FileStream Pin
[DK]KiloDunse24-Feb-06 16:27
[DK]KiloDunse24-Feb-06 16:27 
Questionplease help me error occured in project Pin
vivek_pon23-Feb-06 23:12
vivek_pon23-Feb-06 23:12 
AnswerRe: please help me error occured in project Pin
CWIZO24-Feb-06 6:27
CWIZO24-Feb-06 6:27 
QuestionHow to Open a notepad from VBA....Urgent Pin
winpoorni23-Feb-06 20:22
winpoorni23-Feb-06 20:22 
AnswerRe: How to Open a new notepad from VBA....Urgent Pin
Divya Rathi23-Feb-06 20:33
Divya Rathi23-Feb-06 20:33 
QuestionHow to Open a new notepad from VBA....Urgent Pin
winpoorni23-Feb-06 22:10
winpoorni23-Feb-06 22:10 
AnswerRe: How to Open a new notepad from VBA....Urgent Pin
sathish s24-Feb-06 1:10
sathish s24-Feb-06 1:10 
AnswerRe: How to Open a new notepad from VBA....Urgent Pin
Divya Rathi24-Feb-06 9:17
Divya Rathi24-Feb-06 9:17 

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.