blah blah blah is here! blah blah » Close

0
votes
1 answers

How to access Form controls from another class?

Hi all debugging.com members, Nowadays I'm working on a serial comminication program. I've created my own serial class to use my serial functions easly. However I couldn't access Form1 controls from my class. For example, I've serialPort ...

0
votes
1 answers

Billboard Control

Hello, Does anyone know where I can find a billboard control that uses Javascript or AJAX? I'm not sure what it's really called but I'm going to call it a billboard control. Examples of these are at the three below websites. Basically ...

0
votes
2 answers

What is this control name and where can I find it(or make it)?

q12
349

What is this control name and where can I find it(or make it)? [IMG]http://i65.photobucket.com/albums/h208/q1212/pt%20net/526-41.jpg[/IMG] More precisely, when you click the "Size" (tab?) the order in listbox is drawn by sizes o ...

1
votes
11 answers

control events

q12
349

1.I have created a New User Control named "ForumTextBox" through Solution Explorer - click right and choose - "Add user control". I create there 2 textbox's and some nasty methods, behind in code of this new control. 2 ...

0
votes
1 answers

inherit control properties

q12
349

I have this: [code] private void add_Click(object sender, EventArgs e) { forumTextBox2.Location = xxx(forumTextBox2.Location, forumTextBox1.Location, forumTextBox1.Height); } //MyMethod: Point xxx(Point x2, Point y1, ...

1
votes
1 answers

foreach on Controls (RadioButtonList) on a .ascx page.

I'm trying to cycle through all of my RadioButtonLists and store their selected values into a list. [code] List<string> responseList = new List<string>(); foreach (Control c in this.Controls) { if (c is R ...

1
votes
1 answers

Accessing Control from 2nd form

(I can't wait for the search feature to become available because I know this has been answered) I have a checkbox on Form 1 and when the user clicks a button on form2 I want to set that checkbox.checked = true. How do i reference the con ...

0
votes
1 answers

custom data bindings

Is there a way to do a custom data binding? For example: [code] internal class LocalSettings // this class only stores per-session // settings that are not saved to disk { internal bool theCheckbo ...

0
votes
1 answers

Locate a special control

AK01
15

Hi! Maybe it's a silly question, but anyway - does someone know how to locate special control in .Net IDE? The approach that I apply is - selecting 'General' panel, then RMB click on it, 'Choose item', then type a control name in a 'Net ...

0
votes
3 answers

Adding controls Dynamically in ASP.NET : Is it really neccessary?

sanjib
226

In .NET Framework we see that existing controls can often provide the functionality we get from creating controls dynamically. Is it really necessary to build a web application? If it's necessary, please tell me in what kind of situation i ...

Feedback