|
I have inserted a table web control in a panel.in that table 's cells i want to insert other user control like label, panel .i am not able to do that.is there any difference in normal table for layout and table web control.if it is.then how can i insert...
Started by sahil garg on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't see any problems in what you are doing, can you show an example? Is it from code behind or in the aspx code?
<asp:Panel runat="server" id="pnl_something"> <table> <... .
Hi Sahil
You need to provide us with a little more information .
|
|
I have a tabbar navigation controller, and I would like to set up a protocol in one view controller and set its delegate in another view controller. How would I get the view controller pointer of the delegating view controller to the delegate view controller...
Started by franchismo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Something like:
MyDelegatingViewController *delegatingController = [myTabBarController.viewControllers objectAtIndex:0]; MyDelegateViewController *delegateController = [myTabBarController.viewControllers objectAtIndex:1]; delegatingController.delegate... .
|
|
Can I put a Java control (SWT, Swing, ...) on a C# control?
I know it's possible with web controls but I don't like this way.
Started by FerranB on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can look at....
I think the only way to do what you need is run you java control inside separate process with hidden main window and pass handle of that control to your C# application somehow of java control.
In it's AFT assembly.
|
Ask your Facebook Friends
|
What are the differences between User Control and Custom Control in ASP.NET
Started by Ramesh Soni on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Custom Controls are inherits from Control class (that you can change any control.
To the project & would require to be hand-coded (using various asp.net control events & html anywhere within project.
|
|
What is the difference between Hyperlink control and link control ASP.NET?
Started by LittleBoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I did a google search.....
ASP.NET Link Button control is a server control, whenever the user clicks on it, the request .
HTML Hyperlink control is an HTML control, whenever it is clicked the page navigates to the target page.
|
|
I would like to draw a control on some other control in it's overriden paint event. By drawing I mean real drawing, not placing the control inside the other control. Is there any nice way to do that?
Started by agnieszka on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
From memory you can set minimum sizes on your control etc from the control your attempting to enhance and override it's paint method?
Perhaps you could elaborate the control's DrawToBitmap....
Want within the bounds of the control.
|
|
Can we access one control Id registered in one aspx in to another ascx control,,
Started by peter on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Or you at least a .ascx control is meant to be reusable....
Your question is not very clear, but I guess you are trying to access a page's control from inside a .ascx control, am I right?
If that is the question, the answer is no, you can't.
|
|
Who controls the past controls the future, who controls the present controls the past
On one side of a wall is everything. Hate, joy, good word, evil ones, bad people, and kind. This wall has openings that can be blocked or opened, but only from one ...
Started by Gunfighter on
, 28 posts
by 20 people.
Answer Snippets (Read the full thread at chubbyparade):
Those moments.
Censorship is control of one (person or body) making decisions, however (ex., other users have gone and taken things completely out of control).
What others have gotten as gifts.
|
|
What is Mandatory Access Control, and why is it better than Discretionary Access Control?
Started by Aijaz Sabir on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
In mandatory access control permissions are set by fixed rules based on policies.
In discretionary access control permissions are set usually by the resource owner.
And SELinux both are forms of MAC.
|
|
How do you add a scrollbar to a Panel control with many controls in windows form application?
Started by Chetan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
>
then add the overflow style attribute to the panel and set it to "auto" - like this:
<asp:Panel style="height... .
First you'll have to set set the height & width of the Panel - something like this:
<asp:Panel style="height: 200px; width: 200px" .. .
|