CODE - write to named ranges (.NET & XL)

staticbob

Well-known Member
Joined
Oct 7, 2003
Messages
1,079
Guys,

I am calling Excel from a .NET application I am writing. The VBA code should work in both environments.

I have a UserControl in .NET that contains lots of textboxes and comboboxes.

For each tbox or cbox in .NET, I have a named range in Excel. I am trying to take the text from my .NET controls and write to the named ranges. Can anybody see any problems with this code ???

Thanks in advance !
Bob


Code:
        Dim xl As Excel.Application
        xl = New Excel.Application
        Dim wkbk As Excel.Workbook
        Dim wkst As Excel.Worksheet
        xl.DisplayAlerts = False
        xl.Visible = False

        wkbk = xl.Workbooks.Open("C:\PWBV3 Forms\PWBV3_RFI.xls") 'usetemplatepath & doctype
        wkst = wkbk.Sheets(1)

        For Each ctl As Control In Ucont 'this is my usercontrol
            For Each nm As Excel.Name In wkbk.Names
                If StrComp(nm.Name, ctl.Name, CompareMethod.Text) = 0 Then
                    If TypeOf ctl Is TextBox Then
                        nm.RefersToRange.Value = CType(ctl, TextBox).Text
                    ElseIf TypeOf ctl Is ComboBox Then
                        nm.RefersToRange.Value = CType(ctl, ComboBox).Text
                    End If
                End If
            Next
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,214,383
Messages
6,119,198
Members
448,874
Latest member
Lancelots

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top