How do we call MS- Excel in VB?

Answers were Sorted based on User's Feedback



How do we call MS- Excel in VB?..

Answer / raghunath paul

after selecting Microsoft excel library in refrence
section we can create object for excel by CreateObject
("Excel.Application")

Is This Answer Correct ?    7 Yes 0 No

How do we call MS- Excel in VB?..

Answer / sugnaya

place two textbox and commandbuttons in design window
and copy this code in code window
-----------------------
Dim xl As New Excel.Application
Dim xlsheet As Excel.Worksheet
Dim xlwbook As New Excel.Workbook

Private Sub Command1_Click()
Text1.Text = xlsheet.Cells(2, 1)
Text2.Text = xlsheet.Cells(2, 2)
End Sub

Private Sub Command2_Click()
xlsheet.Cells(21, 1) = Text1.Text
xlsheet.Cells(21, 2) = Text2.Text
xlwbook.Save
End Sub

Private Sub Form_Load()
Set xlwbook = xl.Workbooks.Open("C:\Documents and
Settings\bct20vb\My Documents\sa.xls")
Set xlsheet = xlwbook.Sheets.Item(1)
End Sub

Is This Answer Correct ?    8 Yes 1 No

How do we call MS- Excel in VB?..

Answer / anjani

For Using Excel in Vb,we have to add reference of Microsoft
Excel libery. After That we can create object for excel and
we can able to use Excel in vb

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

What is data binding in vb net?

0 Answers  


How can objects on different threads communicate with one another?

2 Answers  


___ is the control used to call a windows application.

0 Answers  


How to trap Data Base Error?

1 Answers  


Is visual basic c#?

0 Answers  






advantage and disadvantage in visual-basic and ms-access please tell me or send my mail-id

0 Answers  


What is RDO?

1 Answers  


Which controls can not be placed in MDI?

3 Answers  


Difference between Recordset and Resultsets.

0 Answers  


What is the difference between modal and moduless window?

2 Answers  


What is rdo in vb?

0 Answers  


To validate a range of values for a property whenever the property values changes,which type of property procedure you use?

0 Answers  


Categories