Hi,

I'm converting older VBA code to VB. I'm using Visual Studio or VB 2010 but am new to this "oop" approach and not a seasoned programmer.

Scenario:

1. Open new Excel worksheet (see below - will this work?)

Public Class frmMain

Prvate Sub frmMain_Load(ByVal sender As System.Object, ByVal e As -System.EventArgs) Handles MyBase.Load
Dim objExcel As New Excel.Application
objExcel.Visible = True

Object.Workbooks.Add()

2. Load text found in cell Range("A1") into form's Textbox1

3. Enable change/edit in Textbox1 to change A1 cell value

Can someone show me a basic example? Assume only one textbox and one cell for above scenario to keep it simple to begin.

Any quick help here would be much appreciated.

Thank you.