Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
controls
- Page 1
Re: how to lock control in vb6 by given code
Programming
2 Months Ago
by rproffitt
Controls
by default are locked in place (position) so that's …
how to lock control in vb6 by given code
Programming
2 Months Ago
by Syed Zubair Ali
i have a project where i have to given code to system to lock different
controls
by using code lines in vb6. please guide.
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
…); label9->Size = System::Drawing::Size(300, 20); this->
Controls
->Add(label9); wchar_t ComputerName[MAX_COMPUTERNAME_LENGTH + 1]; DWORD cbComputerName = MAX_COMPUTERNAME_LENGTH…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
1 Month 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: Controls do not have graphics context?!!!
Programming
Software Development
11 Years Ago
by ddanbe
Controls
like Label and Button have a Paint method. You can override that method if you want to change the drawing behaviour.
Re: Controls next to each other
Programming
Web Development
11 Years Ago
by JorgeM
…sure if you are already aware, but the ASP.NET
controls
are processed by the ASP.NET engine and pure HTML… was converted into an `<input />` element. How these
controls
are placed on the screen depends on your styling and… the behavior of the
controls
. For example, div elements are block level elements so …
Controls next to each other
Programming
Web Development
11 Years Ago
by Cameronsmith63
…; + i.ToString(); Step.TextMode = TextBoxMode.MultiLine; Step.Text = a; Panel1.
Controls
.Add(Step); i++; } } } </script> <html xmlns="…
Controls added to asp:panel not persisting on PostBack
Programming
Web Development
14 Years Ago
by zilonox
…. Through the use of the form, additional
controls
may be dynamically added to the form. The…amp; intLineNum lb.Text = intLineNum Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, New LiteralControl("<br />…;")) Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, (lb)) End Sub End Class …
Re: Controls added to asp:panel not persisting on PostBack
Programming
Web Development
14 Years Ago
by chiragsathit
…. Through the use of the form, additional
controls
may be dynamically added to the form. The…amp; intLineNum lb.Text = intLineNum Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, New LiteralControl("<br />…;")) Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, (lb)) End Sub End Class …
Re: Controls added to asp:panel not persisting on PostBack
Programming
Web Development
14 Years Ago
by zilonox
… use page_load or page_init event to add
controls
dynamically.[/QUOTE] Fair enough. I altered … intLineNum lb.Text = intLineNum Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, New LiteralControl("<br /&…gt;")) Me.divNav.
Controls
.AddAt(Me.divNav.
Controls
.Count, (lb)) End If End …
Re: Controls added to asp:panel not persisting on PostBack
Programming
Web Development
14 Years Ago
by zilonox
…ToString() txt.Text = i.ToString() PlaceHolder1.
Controls
.Add(New LiteralControl(" >…; ")) PlaceHolder1.
Controls
.Add(txt) Next End Sub Private… = ViewState("COUNT") PlaceHolder1.
Controls
.Add(New LiteralControl(" &…
Controls on form disappears when auto-generated controls code modified
Programming
Software Development
19 Years Ago
by DotNetUser
… the auto-generated code for a control in InitializeComponent(), the
controls
on the form disappears. When I tried to add them…'s already there. Eventhough the form no longer has the
controls
, it does appear when I execute the code. Is there… to remove all the control's code and readd the
controls
? Are there rules of things not to do to avoid…
Re: Controls added to asp:panel not persisting on PostBack
Programming
Web Development
14 Years Ago
by kvprajapati
[b]>
Controls
added to asp:panel not persisting on PostBack [/b] And that is the main reason that one should have to use page_load or page_init event to add
controls
dynamically.
Controls sintax
Programming
Software Development
18 Years Ago
by bybruno
… with the following code: [CODE]For i = 0 To Me.
Controls
.Count - 1 Next i[/CODE] this detect all the… the program but now i want know what
controls
are menu and others that not. there is same sintax …like [INLINECODE]
Controls
(1).type = command1 or
Controls
(1).type = check1[/INLINECODE] the objective is select…
Controls in groupBox "spilling out" of Border
Programming
Software Development
12 Years Ago
by Michael27
…); btn.Text = (i + 1).ToString(); btn.Width = 40; gBox.
Controls
.Add(btn); Application.DoEvents(); } } Based on the number param in… is my problem, if i select 16 or 32
controls
kinda spill out of borders of groupBox, i need …
Controls added to panel are moving down when repainted
Programming
Software Development
15 Years Ago
by Geekitygeek
… a form to which i have added a selection of
controls
with (x,y) coordinates. The panel has Autoscroll enabled…. If there are enough
controls
to require a scrollbar, and the bar has been scrolled… down when the paint event fires, the
controls
all move down when the panel paints. Each time …
Re: Controls added to panel are moving down when repainted
Programming
Software Development
15 Years Ago
by sknake
… set the scroll position to zero after clearing the
controls
, add your
controls
, then scroll it back where it was. [code] private… pos = panel1.AutoScrollPosition; //retain the scrolled point panel1.SuspendLayout(); panel1.
Controls
.Clear(); panel1.AutoScrollPosition = Point.Empty; //clear the scrolled point for…
Controls[DataGrid/TesxBoxes/Label] outside UpdatPanel not updating/populating
Programming
Web Development
13 Years Ago
by manraj82
…to populate another grid[Grid2] and some other
controls
[Text and Labels] when a row in … 1 was clicked . The Grid2 and other
controls
used to get populated/updated on the OnItemCommand …work fine if I place Grid2 and other
controls
in the same Update Panel but the page…in a way that I cant have those
controls
in the same UpdatePanel as the first …
Re: Controls added to panel are moving down when repainted
Programming
Software Development
15 Years Ago
by Geekitygeek
… CurrentPoint = panel1.AutoScrollPosition; panel1.SuspendLayout(); panel1.
Controls
.Clear(); CurrentY = 0; for (int i…; browser.Location = loc; panel1.
Controls
.Add(browser); panel1.
Controls
.Add(title); CurrentY = browser.Location…
Re: Controls sintax
Programming
Software Development
18 Years Ago
by Comatose
[CODE]For Each ctrl In
Controls
If TypeOf ctrl Is Menu Then msgbox ctrl.name & " is a Menu!" End If Next ctrl[/CODE]
Controls collection question
Programming
Software Development
15 Years Ago
by FallenPaladin
… the collection and want to access a number of other
controls
that relate to this, they all have a common denominator… to a standard name. Is there anyway to access these
controls
without continually iterating through the…
Controls position when is shown in mdiParent Form . How to Resolve this Issue?
Programming
Software Development
15 Years Ago
by nauman_gcu
…pattern and having TableLayoutPanel as container on it for other
controls
to be placed on it and it is generating an… anonymous problem regarding
controls
movement in which they changes their position when set as…then it is working fine and if not then the
Controls
like lable and others are changing their location when …
Controls & BackgroundImage
Programming
Software Development
13 Years Ago
by Taximus
… the form. Did it. Looks perfect. Then I dropped some
controls
on my form. Looks great. But I have this strange… it back at the begining (0.5-1.5 sec.)
controls
appear as black rectangles but then they look fine (as… their labels and colors). I have standard color for my
controls
(Control color). I don't know why I get this…
controls shrink and grow as form size changes
Programming
Software Development
11 Years Ago
by Papa_Don
…! I've seen one short discussion of ensuring that the
controls
within a form will shrink, grown and stay in their… there settings in the form properties that will allow the
controls
, labels, etc., to shrink and grow as the form size… changes? Will these
controls
and labels stay in their relative position as the form…
Controls on Activex Controls (Datagrid,Tab) in Win32 C (Dev C++ )...
Programming
Software Development
18 Years Ago
by Shiva_nan
…] But i dont know how to add BUTTONS, LABELS,COMBOBOX
Controls
to each tab. I searched in lot of sites .But… want to do is have a control over these Activex
controls
( Tab,Datagrid).. Please help me to do this.. [COLOR="…
Re: Controls on Activex Controls (Datagrid,Tab) in Win32 C (Dev C++ )...
Programming
Software Development
18 Years Ago
by Shiva_nan
…] But i dont know how to add BUTTONS, LABELS,COMBOBOX
Controls
to each tab. I searched in lot of sites .But… want to do is have a control over these Activex
controls
( Tab,Datagrid).. Please help me to do this.. [COLOR=purple…
Re: Controls behind ImageBox
Programming
Software Development
15 Years Ago
by vb5prgrmr
… methods are drawn. The next layer layer is where graphical
controls
are rendered and this is where the image control lies… no hwnd). The top layer is where windowed
controls
are rendered (anything with a hwnd). So, you can use …
Controls Inside UltraGrid (Infragistic Controls)
Programming
Software Development
13 Years Ago
by shilpa_gurnani
… we have a UltraPanel and UltraPanel Contains UltraCheckEditor.All these
Controls
m creating Dynamically and are added as EditingControl. In short… I have
controls
inside cell of the ultragrid. Now I want to knw…
Controls on a form.
Programming
Databases
16 Years Ago
by lancekmc
… way i can bypass the 174 max limit num for
controls
per form because when i get to some point i… can have the
controls
yes but i can not read values from them e…
Re: Controls collection question
Programming
Software Development
15 Years Ago
by ddanbe
You could use : [CODE=csharp]if ( Myform.
Controls
.Contains(MyButtonNr1) { //do something }[/CODE]
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