473,809 Members | 2,620 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

adding controls at runtime

hi,
i am trying to add a datagrid control to a web page dynamically.
i am able to do it while i used the following code in the page load
event of the form in which i am going to add the control.

DataGrid dG = new DataGrid();
Control frm = FindControl("fr mSnAInformation ");
frm.Controls.Ad d(dG);
DataSet ds = nam_Db.dbFuncti ons.funFetchDat aSet("fetchSuIn fo_all");
dG.DataSource = ds.Tables[0];
dG.DataBind();
since i need to do the same process for many forms i have written the
code in a class file and call the function when needed. also i am
passing the form name as parameter. the class file function is as
follows:

public void funGrid(string frmNam)
{
DataGrid dG = new DataGrid();
Control frm = FindControl(frm ANam);
frm.Controls.Ad d(dG);
DataSet ds = nam_Db.dbFuncti ons.funFetchDat aSet("fetchSuIn fo_all");
dG.DataSource = ds.Tables[0];
dG.DataBind();
}
but when i try to add control i am getting the following error:

System.NullRefe renceException: Object reference not set to an instance
of an object.

at the line: frm.Controls.Ad d(dG);
what could be the reason and the work around for this problem.

regards,
kalaivanan

Feb 7 '07 #1
2 2318
Hi kalaivanan,
System.NullRefe renceException: Object reference not set to an instance
of an object.

at the line: frm.Controls.Ad d(dG);
what could be the reason and the work around for this problem.
The error could indicate dG is null, frm is null or frm.Controls is null..
Since dG = new DataGrid() it won't be null, nor will a valid frm have null
Controls property so frm is null (undefined).

Control frm = FindControl(frm ANam);

Since frm is null FindControl did not find the form defined in frmANam.
You need to doublecheck frmANam contains a valid form or handle the null
reference that can occur.

public void funGrid(string frmNam)
{
DataGrid dG = new DataGrid();
Control frm = FindControl(frm ANam);
if(frm != null)
{
frm.Controls.Ad d(dG);
DataSet ds = nam_Db.dbFuncti ons.funFetchDat aSet("fetchSuIn fo_all");
dG.DataSource = ds.Tables[0];
dG.DataBind();
}
}

--
Happy Coding!
Morten Wennevik [C# MVP]
Feb 7 '07 #2
On Feb 7, 1:36 am, "Morten Wennevik [C# MVP]"
<MortenWenne... @hotmail.comwro te:
Hi kalaivanan,
System.NullRefe renceException: Object reference not set to an instance
of an object.
at the line: frm.Controls.Ad d(dG);
what could be the reason and the work around for this problem.

The error could indicate dG is null, frm is null or frm.Controls is null.
Since dG = new DataGrid() it won't be null, nor will a valid frm have null
Controls property so frm is null (undefined).

Control frm = FindControl(frm ANam);

Since frm is null FindControl did not find the form defined in frmANam.
You need to doublecheck frmANam contains a valid form or handle the null
reference that can occur.

public void funGrid(string frmNam)
{
DataGrid dG = new DataGrid();
Control frm = FindControl(frm ANam);
if(frm != null)
{
frm.Controls.Ad d(dG);
DataSet ds = nam_Db.dbFuncti ons.funFetchDat aSet("fetchSuIn fo_all");
dG.DataSource = ds.Tables[0];
dG.DataBind();
}

}

--
Happy Coding!
Morten Wennevik [C# MVP]
thanks man. u are absolutely right.
since the code is executed in the class file the frm is assigned null.

Control frm = FindControl(frm ANam);

hence i added one more parameter to the function.

public void funGrid(string frmANam, System.Web.UI.P age pg)
{
DataGrid dG = new DataGrid();
Control frm = pg.FindControl( frmANam);
frm.Controls.Ad d(dG);

DataSet ds = nam_Db.dbFuncti ons.funFetchDat aSet("fetchSuIn fo_all");
dG.DataSource = ds.Tables[0];
dG.DataBind();
}

I passed 'this' keyword as the second argument from the form in which
i call this funtion.
now 'frm' is not null and working too.

thankyou once again.

regards,
kalaivanan

Feb 7 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3735
by: avivgur | last post by:
Hello, I am writing a program in Visual C# and I have encountered a problem. In my program I want to dynamically create a multitude of controls (thousands) on a form. The problem is that calling the Controls.Add() method several times or even calling the Controls.AddRange() method once can take a huge amount of time. Therefore, I would like to be able to run the loop that creates the controls on a different thread and meanwhile give the user...
8
4845
by: Thomas H. | last post by:
Hi folks, what's the best way to add (web)controls at runtime ?? TIA T.H.
4
1943
by: slylos | last post by:
I've got a Windows form that has a TabControl. I add TabPages to this TabControl at Runtime, along with two Textboxes and a button. The problem I'm having is I can't figure out how to reference the Textboxes elsewhere once they have been created. The TextBoxes are being named based on a private global counter (i.e. TextBox tb = new TextBox(); tb.Name = "tb" + (counter++).ToString();) They are being created in a private method called...
2
1518
by: Mark Siffer | last post by:
I am trying to add a compare validator at runtime. I would add it before but my input controls are built at runtime via an editable datagrid. Therefore, the names of the controls are not known until the page has been rendered. Any ideas? Thanks in advance MS
0
2038
by: Kurt | last post by:
Hi Brent, I don't know if this is best practices per se`, but it works. The following generates a new button control each time menu item 1 is clicked and assigns an event handler to it. Each button uses the same default event handler. In this case, when a button is clicked I simply display
4
1977
by: rushikesh.joshi | last post by:
Hi All, I have created my own WebControl and want to add it in my aspx page at runtime. it's compiling perfectly, but when i m going to execute, it gives me error of "Object reference not set to an instance of an object." in my server control (ascx.cs file)
3
2094
by: Toe Dipper | last post by:
In short we have a lengthy process when a form is loaded that adds activex controls to our windows form. This process in itself works fine however we would like to push this processing to a thread but are stumped so far. Our goal is simply to allow the form to fully display while the controls are being added. Preferrably with a progressbar to let them know that the form is still being built. Here are some snippets.
0
1447
by: sonic | last post by:
I am trying to dynamically load a validator and must be missing something elementary here. I extended TextBox control to add some functionality to it. One new feature it contains is IsRequired property. if true, the control will render it self differently, and should add a RequiredFiledValidator control to the page. so in my controls render event, i am adding the following:
11
18156
by: Pete Kane | last post by:
Hi All, does anyone know how to add TabPages of ones own classes at design time ? ideally when adding a new TabControl it would contain tab pages of my own classes, I know you can achieve this with ListView columns so it should be doable, thanks
6
11092
by: | last post by:
I have made some user controls with custom properties. I can set those properties on instances of my user controls, and I have programmed my user control to do useful visual things in response to how those properties are set. I want to be able to do two other things: a) add User control instances to my page, filling in the place of placeholder controls, and b) programmatically setting custom properties on those dynamically spawned...
0
9721
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9603
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10376
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10387
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10120
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7662
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.