Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
user-controls
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…> > Running a .exe on the client (
user
’s computer) > This is completely blocked by web browsers….config files is normal in ASP.NET apps. One
controls
the overall app, the other can apply to subfolders.… involves several technical aspects, including networking, security, and
user
interface design. Below, I’ll outline a simple prototype…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Neil_brown001
…non-interactive session. Running a .exe on the client (
user
’s computer) This is completely blocked by web browsers …unless: The
user
downloads and runs the .exe themselves. Or, you create…web.config files is normal in ASP.NET apps. One
controls
the overall app, the other can apply to subfolders.…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
2 Months Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Re: User Controls
Programming
Software Development
13 Years Ago
by Cameronsmith63
… am trying to use this method of calling the different
user
controls
. private void scheduleTerminalsToolStripMenuItem_Click(object sender, EventArgs e) { SchedTerminals SchedTerm = new…(Configuration); I have added a panel to one of the
user
controls
. I made use of this code to try and call…
Re: User Controls
Programming
Software Development
13 Years Ago
by Cameronsmith63
… can only call 1
user
control, it does not switch over to other
user
controls
when i want it …e) { SchedTerminals SchedTerm = new SchedTerminals(); Logo.Dispose(); this.
Controls
.Add(SchedTerm); } private void descheduleDevicesToolStripMenuItem_Click(object sender, EventArgs e)…
User Controls
Programming
Software Development
13 Years Ago
by Cameronsmith63
… i have a Menu Strip, and a couple of
user
controls
, and in these
user
controls
, i have group boxes. So when I click… different item in the menu strip, i want that item (
user
control) to be displayed on my form, disposing the previous…
user
control. How do i go about displaying the other control …
Re: User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by CodeDoctor
… terms of OOP design. [B]Proposed Solution:[/B] Use
User
-
Controls
as the new panel, [I]"A Form within A…can just reply with a step by step instruction?[/QUOTE]
User
Controls
you will find are easy to create, and a …Logon value and the Password value. You will find that
User
Controls
are your friend, because you can re-use them …
User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by yorro
How do I use the
User
-
Controls
as a form within a Form? … forms, I've used switching panels and the
controls
are contained in those panels. This way, there… and becomes unmanageable due to the number of
controls
in the Design window. As I've read…of OOP design. [B]Proposed Solution:[/B] Use
User
-
Controls
as the new panel, [I]"A Form …
User controls not showing up in General dropdown
Programming
Web Development
13 Years Ago
by dyahalifda
… work normally, but what makes me puzzled is that all
user
controls
in the web page aren't populated in the General…
Re: User Controls
Programming
Software Development
13 Years Ago
by dickersonka
You need the
user
control to save its data, not sure what you need … be to set your area you want to display the
user
control in as a panel. Upon clicking each menu item… be a member variable instead DeSched Deschedule = new DeSched(); //Clear
controls
this.panel.
Controls
.Clear(); //Add control this.panel…
Re: User Controls
Programming
Software Development
13 Years Ago
by macgurl70
…the size you want the window to be), with the
user
choosing which one is visible. Personally, I would do … others set to collapsed (Visibility = Collapsed; ). 3. When the
user
chooses one of the options, the selected item is now… size of the window the same (since the collapsed
controls
are not taken into consideration when the program is creating…
Re: User Controls
Programming
Software Development
13 Years Ago
by skatamatic
Have you considered simply calling Show() and Hide()? This way you don't have to reinitialize all the data between
controls
that are switched between often.
Is using static user controls in WPF efficient?
Programming
Software Development
9 Years Ago
by goody11
…Now, each of those windows contains a different
user
control. These
user
controls
all can interact with data used in the…going to be somewhere between 20 - 30 different
user
controls
. My question: Is it more efficient for me …
user
controls
or to generate and destroy each
user
control as I need it? Using the static
controls
method, the
user
controls
…
Dynamicall adding user controls problems!!
Programming
Software Development
16 Years Ago
by patelb
…trying to dynamically add
controls
such as text boxes, radio buttons, check boxes, etc to a
user
control(ascx page). …buttons "a,b,c". Im generating the
user
controls
in a select case statement as follows: Select Case…I need to be able to dynamically generate
controls
onto the page according to that
user
defined string. Any ideas?
Dynamically Adding User Controls at Runtime
Programming
Web Development
16 Years Ago
by patelb
… trying to dynamically add
controls
such as text boxes, radio buttons, check boxes, etc to a
user
control(ascx page). Im… buttons "a,b,c". Im generating the
user
controls
in a select case statement as follows: [code=asp.…is? I need to be able to dynamically generate
controls
onto the page according to that
user
defined string. Any ideas?
Get data from dynamic user controls outside of page
Programming
Web Development
14 Years Ago
by sbrett
…basically a table that contains all of the
user
controls
that exist in a particular form). That part…forms, each with their own unique set of
user
controls
. What's the best way to gather that…values for all the inputs foreach (Control c in pnlMain.
Controls
) { if (c.GetType().Name.ToLower() == "…
Removing User Controls
Programming
Software Development
16 Years Ago
by 010Nick
… but I am now stuck. I have multiple
user
controls
on a form and I need a way to…ByVal e As System.EventArgs) Handles Button1.Click Me.
Controls
.RemoveByKey("UserControl") refresh_Form() End Sub Private Sub…called. “UserControl” and “UserControl1”. I have added the
user
controls
using code and was wondering if there is anything I…
Re: Removing User Controls
Programming
Software Development
16 Years Ago
by 010Nick
… Sub Add_controls() 'add two
user
controls
' Form1.Mycontrol.Location = New Point(0, 0) Form1.
Controls
.Add(Form1.Mycontrol) Form1.Mycontrol1…Control) 'remove a control' If Form1.
Controls
.Contains(_Countrol) Then Form1.
Controls
.Remove(_Countrol) End If End Sub End…
Nested User Controls and SQL Datasource
Programming
Web Development
14 Years Ago
by MichaelWClark
…and decided that this time around I would make many
user
web
controls
as to have a very modular and customizable site… into my labels, then i also added some of my
user
controls
to this control. I added a "Carrier" …control it stops binding data.... I have tested other similar
controls
and they have the same result.... I dont get it…
Using a tree view and panel to display user controls
Programming
Software Development
14 Years Ago
by zachattack05
… a tree view and a panel. I have created multiple
user
controls
, each to be displayed in the panel when a certain… display the correct
user
control when a node is clicked. All I can seem to reference in the Panel.
Controls
collection is…" so to speak, a tree view node to a
user
control? How would you go about doing something like this…
Drag & Drop User Controls in ASP.NET
Programming
Web Development
13 Years Ago
by mfozmen
… site that clients can easily drag & drop pre-defined
user
controls
and create a simple web site for themselves. Users will… also upload their data to these
controls
and the data will be stored in database or cache…
Adding user controls into an array?
Programming
Software Development
12 Years Ago
by TeaYou
… I need to make a GPA calculator. I have a
user
control for classes and another for the type of program… are in. I'm having trouble getting an array of
user
controls
to work mostly probably because I don't think I…, Courses5, Courses6} Where Course is my
user
control, and courses1-6 are on my second
user
control CourseTab. When I tried to…
Re: User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by yorro
UPDATE: Ok, I am finally getting it. But how do you edit values of
controls
within a
User
Control This code does NOT work [CODE=vb]UserControl1.Textbox1.Text = "New Text"[/CODE]
Re: User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by sknake
Open up the designer file for your
user
control. The head of the file will look like: [code] &… let you do what you are describing. I created a
user
control, added a panel, and put a button and a…] [edit] Oh -- You are using the class name of the
user
control, ie [icode]UserControl1[/icode]. You need to use the…
Re: User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by yorro
… this helps.[/QUOTE] What if I am not using the
User
-Control to communicate back? What if I am using the…
User
-Control as the form itself and using the actual form …as a container for the
User
-Control to be placed? Do I still need events or…
Re: User Controls as Forms within a Form
Programming
Software Development
15 Years Ago
by CodeDoctor
… to communicate back? What if I am using the
User
-Control as the form itself and using the actual form …as a container for the
User
-Control to be placed? Do I still need events or… was trying to show the concept of encapsulation of a
User
Control. Encapsulating what is needed to be done seperately from…
Re: User controls not showing up in General dropdown
Programming
Web Development
13 Years Ago
by dyahalifda
Anyone here??? My
controls
are missing...>.<
Re: User controls not showing up in General dropdown
Programming
Web Development
13 Years Ago
by sufyan2011
… me the sample page where you couldn't see the
controls
. There is no problem on my end.
User Controls
Programming
Software Development
13 Years Ago
by Cameronsmith63
… addTerminalsToolStripMenuItem_Click(object sender, EventArgs e) { AddTerminals AddTerm = new AddTerminals(); this.
Controls
.Add(AddTerm); } private void scheduleTerminalsToolStripMenuItem_Click(object sender, EventArgs e) { SchedTerminals…
User Controls
Programming
Software Development
13 Years Ago
by skatamatic
… create a .Net form full of DevExpress
controls
into something easy to work with. DevExpress
controls
are the opposite of this, most… a needle and a display box are actually 10 different
controls
combined. I am looking to simplify this into 1 control…. I would also like to add some UI to the
controls
at design time (like for a tab control, to be…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC