Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8602343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:03:47+00:00 2026-06-12T02:03:47+00:00

I have a datagrid, and i use to access its values like: userName =

  • 0

I have a datagrid, and i use to access its values like:

userName = frm_main.datagrid1.Item(1, 0).Value.ToString

however this thing is perfectly fine, but now i just created a new form and when i tried to access this Item property of datagrid1 its not available.

Does anyone have idea, whats the issue?

To be more precise when i am typing it shows me frm_main as highlighted like class in sky blue color.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T02:03:48+00:00Added an answer on June 12, 2026 at 2:03 am

    If you’re trying to access frm_main from a different form, it has to have an instance of frm_main to work with. Without an existing instance of frm_main for it to work with, as far as that form is concerned frm_main doesn’t exist.

    I’m guessing that you’re initializing that second form from somewhere within frm_main? If so, when you initialize it, do something like this:

    Form2 f = new Form2(this);
    f.Show();
    

    And in the code for Form2, put in:

    private frm_main Main;
    Public Form2(frm_main _Main) { Main = _Main; InitializeComponent(); }
    

    This gives it the existing instance of frm_main to work with and access to all of the controls within it. You would just refer to it as Main, or whatever variable name you would like to give it in code.

    *edit:*I just realized this was for VB.Net, the VB code for this would be

    Dim f As New Form2(Me)
    f.Show()
    

    and then create your own constructor for Form2

    Dim Main As Form1
    Public Sub New(ByRef _Main As Form1)
        Main = _Main
        InitializeComponent()
    End Sub
    

    That should do it!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a MultiTrigger that I use to color the values of my DataGrid
I have flex advancedDataGrid (could use dataGrid if that works better, though i like
I have a datagrid view which is editable. I'm getting the value of a
I have a datagrid and I want to set the value of a dropdownlist
I have a DataGrid bout to the DataView property of a typed DataTable however
I have a datagroup where I use a custom itemRenderer with a datagrid inside.
I have a WPF DataGrid bound to ObservableCollection . Each item in my collection
I have the following question regarding Flex/AIR data grids: Can I access the value
I have Datagrid which is bound to my Database <WpfToolkit:DataGrid Name=DataGrid1 Grid.Row=1 ItemsSource={Binding Path=MainSearchBinding}
I have this DataGrid I want to change the Disabled behaviour (xaml); I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.