Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cannot remove a control
Message
From
14/05/2008 00:24:35
 
 
To
14/05/2008 00:12:45
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01316884
Message ID:
01316886
Views:
14
Hello,

Maybe you have to also Dispose the control after removing from it from the controls collection. I had similar issues before and it seems that the problem is caused by some 'refreshing' issue.

So maybe this would help:
loControl = oProcess.oPage.FindControl("Form1")
oProcess.oPage.Controls.Remove(loControl)
loControl.Dispose()
>In a particular situation, I need to remove a control from a page. I have this code:
>
>
>loControl = oProcess.oPage.FindControl("Form1")
>oProcess.oPage.Controls.Remove(loControl)
>
>
>where oProcess.oPage is a reference to the page.
>
>I have put some insertion line to really show that loControl is really a reference to Form1. But, after the Remove() line, the control still exists.
>
>What am I missing?
robert.oh.
Previous
Reply
Map
View

Click here to load this message in the networking platform