.NET Forum / Languages / C# / August 2007
Passing Items into a sub
|
|
Thread rating:  |
Chris - 28 Aug 2007 14:52 GMT Ok, so I have this sub I wrote, and I create a new instance of a UserControl:
ctrlAPs tempctrl = new ctrlAPs();
Now, I would like to be able to use this sub I wrote for more than one UserControl, so I was trying to do something like this:
private void somesub(UserControl sourcectrl) { sourcectrl tempctrl = new sourcectrl(); }
But when I do that, I get the following error on compile: "The type or namespace name 'sourcectrl' could not be found (are you missing a using directive or an assembly reference?)"
So, I'm obviously not passing this in right. There has to be a way to do this, as I do it with panels and other controls. Any help is appreciated.
Ignacio Machin ( .NET/ C# MVP ) - 28 Aug 2007 15:07 GMT Hi,
> Ok, so I have this sub I wrote, and I create a new instance of a > UserControl: sub??? You mean method right? :)
> ctrlAPs tempctrl = new ctrlAPs(); > [quoted text clipped - 5 lines] > sourcectrl tempctrl = new sourcectrl(); > }
> But when I do that, I get the following error on compile: > "The type or namespace name 'sourcectrl' could not be found (are you [quoted text clipped - 3 lines] > do this, as I do it with panels and other controls. Any help is > appreciated. Why are you creating the UserControl inside the method? What decide which UserControl to create? How you return the new instance to the calling code?
What if you create the user control outside and pass it to the method?
Chris - 28 Aug 2007 15:22 GMT Yeah, I meant method... grr, still stuck in VB6 mode... Anyways, this is the whole sub I'm working on:
private void test<T>(Panel targetpanel, string sQuery, string sQueryParamName, string sParamVal, T sourcectrl) where T:UserControl,new() { string Parameter; conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=T:\ \RFQMT\\RFQMT Test\\RFQMT Data.mdb;Jet OLEDB:Database Password=tennis"; OleDbConnection oleconn = new OleDbConnection(conn); oleconn.Open();
Parameter = txtMemo.Text.ToString();
OleDbCommand cmd = new OleDbCommand(sQuery, oleconn); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new OleDbParameter(sQueryParamName, sParamVal)); DataTable dt = new DataTable("APs");
OleDbDataAdapter da = new OleDbDataAdapter(cmd); da.Fill(ds, "AP");
DataSource = new DataRowCollectionSocket(ds.AP.Rows);
for (int i = 0; i < DataSource.Count; i++) { T tempctrl = new UserControl(); //ctrlAPs tempctrl = new ctrlAPs(); pnlAP.Controls.Add(tempctrl); tempctrl.Top = i * tempctrl.Height - 2; tempctrl.Left = 0;
foreach (Control c in ctrlAPs1.Controls) { Type ctrlType = c.GetType(); ConstructorInfo cInfo = ctrlType.GetConstructor(Type.EmptyTypes); Control retControl = (Control)cInfo.Invoke(null);
foreach (Binding ctrlBinding in c.DataBindings) { string BindingMember = ctrlBinding.BindingMemberInfo.BindingMember; string BindingField = BindingMember.Substring(BindingMember.LastIndexOf(".")); tempctrl.Controls[c.Name].DataBindings.Clear(); tempctrl.Controls[c.Name].DataBindings.Add(ctrlBinding.PropertyName, DataSource[i], BindingField); } PropertyInfo DSource = ctrlType.GetProperty("DataSource"); if (DSource != null) DSource.SetValue(retControl, DSource.GetValue(c, null), null); } ctrlAPs2.Hide(); } oleconn.Close(); }
Originally, I had the query and usercontrol information hard coded. It was a 'continuous form' of sorts, like you'd see in an Access form. Now I had different usercontrols that acted as different 'forms', but I didn't see any need in making one whole method per control, which is why I'm trying to pass everything into this one. Basically it clones the control onto a panel and rebinds the controls in that panel to a dataset. Now like I said, I could pass in the panel (i.e. which panel on my form I wanted the control copied to), but the usercontrol I couldn't. That's why my question is, how to pass in the control information like I can pass in the panel. HTH
On Aug 28, 10:07 am, "Ignacio Machin \( .NET/ C# MVP \)" <machin TA laceupsolutions.com> wrote:
> Hi, > [quoted text clipped - 25 lines] > > What if you create the user control outside and pass it to the method? Nicholas Paldino [.NET/C# MVP] - 28 Aug 2007 15:08 GMT Chris,
You could use Generics, like so:
private void somesub<T>(T sourcectrl) where T : UserControl, new() { T tempctrl = new sourcectrl(); }
This will allow you to use the type parameter T and pass in any type that derives from UserControl as well as has a default, parameterless constructor.
In the method, you will only be able to call methods that exist on the UserControl class, nothing that is derived from it.
 Signature - Nicholas Paldino [.NET/C# MVP] - mvp@spam.guard.caspershouse.com
> Ok, so I have this sub I wrote, and I create a new instance of a > UserControl: [quoted text clipped - 16 lines] > do this, as I do it with panels and other controls. Any help is > appreciated. cody - 28 Aug 2007 15:55 GMT > Chris, > [quoted text clipped - 11 lines] > In the method, you will only be able to call methods that exist on the > UserControl class, nothing that is derived from it. You mean
private void somesub<T>() where T : UserControl, new() { T tempctrl = new T(); }
:) Nicholas Paldino [.NET/C# MVP] - 28 Aug 2007 16:29 GMT No, I really meant what I typed. I know it doesn't ^do^ anything, but that's the OP's issue to figure out. I'm assuming the OP has the prerequisite knowledge to include a return value if needed.
 Signature - Nicholas Paldino [.NET/C# MVP] - mvp@spam.guard.caspershouse.com
>> Chris, >> [quoted text clipped - 20 lines] > > :) Tom Porterfield - 28 Aug 2007 16:34 GMT > No, I really meant what I typed. I know it doesn't ^do^ anything, but > that's the OP's issue to figure out. I'm assuming the OP has the > prerequisite knowledge to include a return value if needed. Look again at the correction that was made as it was not about return values. You created the local variable from the passed in parameter:
T tempctrl = new sourcectrl();
The correction was to create the local variable from the generic type:
T tempctrl = new T();
If you meant to create the local variable from the passed in parameter then I'll need some education on how that works especially in instances where sourcectrl is null.
 Signature Tom Porterfield
Nicholas Paldino [.NET/C# MVP] - 28 Aug 2007 16:45 GMT Ahh, got it.
 Signature - Nicholas Paldino [.NET/C# MVP] - mvp@spam.guard.caspershouse.com
>> No, I really meant what I typed. I know it doesn't ^do^ anything, >> but that's the OP's issue to figure out. I'm assuming the OP has the [quoted text clipped - 12 lines] > then I'll need some education on how that works especially in instances > where sourcectrl is null. Chris - 28 Aug 2007 16:51 GMT Thanks folks- Nicholas' suggestion with Marc's / Tom's modification did the trick!
On Aug 28, 11:47 am, "Nicholas Paldino [.NET/C# MVP]" <m...@spam.guard.caspershouse.com> wrote:
> Ahh, got it. > [quoted text clipped - 20 lines] > > -- > > Tom Porterfield Marc Gravell - 28 Aug 2007 15:09 GMT Based on your example, it looks like generics *might* be the answer, i.e.
private T somesub<T>() where T : UserControl, new() { T tempctrl = new T(); // some other code on tempctrl that uses the properties of UserControl return tempctrl; }
The other option is for the caller to create the control locally, before using your code just to initialize it, in which case you just need private void somesub(UserControl control) { // configure control using the properties of UserControl }
If not, please clarify what you want to do...
Marc
Free MagazinesGet these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...
|
|
|