Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
control-array
- Page 1
McCharts - ArkTS
Programming
Software Development
1 Month Ago
by 杨_659
… spacing of the canvas (cSpace). It is mainly used to
control
the distance between the content area and the outer frame… off. 3. Font size (fontSize). It is mainly used to
control
the font size of the entire painting content, globally, to… same as the font size. 5. Chart data (data). An
array
used to store the content of the chart, where name…
Control Array
Programming
Software Development
16 Years Ago
by shers
Hi, I'm working on C# with COM. I have a COM OLE
control
that I wish to create on the form as
control
array
during runtime, as the number of cotrols depends on the number of files in the corresponding folder. How do I go about it? I'm attaching a pic of the form as to how I want it to be. Thanks
What is the Advantage and Disadvantage of using Control Array?
Programming
Software Development
15 Years Ago
by sotvisal
Control
Array
Re: What is the Advantage and Disadvantage of using Control Array?
Programming
Software Development
15 Years Ago
by invisal
Control
array
simply is a group of
control
that share the same name, same type, and same event … the amount of code. [*]Able to create new element to
control
array
at run-time. [*]Consuming less resource than creating multiple regular…
Re: Control Array in swings
Programming
Software Development
14 Years Ago
by bharath54321
[QUOTE=mKorbel;1521375]what is/are
control
Array
in/for Swing[/QUOTE] I want to create a
control
with the same name but the index is different ......... In vb.net or vb i did. but in java i dnt know sir....
Control Array in swings
Programming
Software Development
14 Years Ago
by bharath54321
How to create
control
array
in swings...............
Re: Control Array in swings
Programming
Software Development
14 Years Ago
by mKorbel
what is/are
control
Array
in/for Swing
Re: What is the Advantage and Disadvantage of using Control Array?
Programming
Software Development
15 Years Ago
by invisal
[QUOTE=sotvisal;943447]Thanks, but what about Disadvantage?[/QUOTE] I have not seen any significant disadvantages of using
control
array
except it slightly increase difficulty in managing your controls. Moreover,
control
array
is not applicable in every program.
Re: Control Array
Programming
Software Development
16 Years Ago
by Ramy Mahrous
Like you create an
array
from a simple data type, Get the number of files in the folder, and create the
array
at runtime.
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
I have code to get the number of files in the folder. But, don't know how to create
array
. Could you help me please?
Re: Control Array
Programming
Software Development
16 Years Ago
by LizR
….FullName; [/code] The obvious thing is you never added the
control
to anything, so I bet none are showing up.
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
… groupbox, how do I write code to bring the next
control
to the next row?
To modify control array for VB.net
Programming
Software Development
13 Years Ago
by uamahmood
…found this code for using
control
array
in VB.net, but this… whereas in my case within tab
control
i have created group boxes and within…text boxes which i have used for
control
array
. Please help me out regarding the …the suffix is an integer (index of the
array
) If IsInteger(strSuffix) Then If Val(strSuffix)…
Problem with Control array
Programming
Software Development
12 Years Ago
by //Gonz
Hello Daniwebbers I have a 2 dimentional
control
array
which gets added to it programatically. There's a lot … an object." error when the first
control
is added.
Control
array
is initialised:
Control
[ ][ ] TControls = new
Control
[6][]; Controls are added: t = 1; TControls…
Auto-renumbering control's?Control Array?
Programming
Software Development
14 Years Ago
by Anigmalee
… add/delete few textbox, then i need to change the
control
name one by one by entering the name by hands… them manually.) Question: If there a ways that create a
control
array
in VB 2008 express edition? which can set the name… Buttongroup(1) for textbox1? (which means set a group of
control
in one name) I'm quite new in VB, sorry…
Re: Auto-renumbering control's?Control Array?
Programming
Software Development
14 Years Ago
by kvprajapati
… add/delete few textbox, then i need to change the
control
name one by one by entering the name by hands… them manually.) Question: If there a ways that create a
control
array
in VB 2008 express edition? which can set the name… Buttongroup(1) for textbox1? (which means set a group of
control
in one name) I'm quite new in VB, sorry…
ERROR 340: Control array element 0 doesn't exist
Programming
Software Development
15 Years Ago
by big_ch98
I keep getting that error when I open my form in which I have
control
that are dynamically created. ERROR 340:
Control
array
element 0 doesn't exist
how to create Control Array in VB.net at design time(its urgent)
Programming
Software Development
11 Years Ago
by sheelap
hello friends i cant find the solution to create
control
array
in vb.net.for e.g i want to create … coding is cumbersome task.so if we use button's
array
like in VB 6.0,by setting its index property…
Check Box Control Array Problem
Programming
Software Development
16 Years Ago
by Ravi Kant
…;" End Sub I want to do the same with
control
Array
: My Code : If Check1(Index) Then Text1.Text = Check1(Index…
Adding values textboxexs in control array
Programming
Software Development
15 Years Ago
by mashuaibu
Dear Valued Members, I have many textboxes in
control
array
. Each of them holds numerical data. I need a visual basic 6 code, few lines preferably, that will enable me to add the values. The values are of the same data type. Kind regards.
Re: Control array
Programming
Software Development
20 Years Ago
by Comatose
…to differ. While VB.net does offer inheritance... creating a
control
array
takes pages and more code. The actual term "…;
control
array
" doesn't even account for anything in .NET. … that describe the differences between a VB6 Instantiation of a
control
, versus VB.Net's. In order to avoid any…
Re: Control array
Programming
Software Development
20 Years Ago
by Seyha Eng
…to differ. While VB.net does offer inheritance... creating a
control
array
takes pages and more code. The actual term "…;
control
array
" doesn't even account for anything in .NET. … that describe the differences between a VB6 Instantiation of a
control
, versus VB.Net's. In order to avoid any…
Re: Control Array in swings
Programming
Software Development
14 Years Ago
by JamesCherrill
You can create an
array
of swing components exactly like an
array
of any other class, eg [CODE]JButton[] myArrayOfJButtons = new JButton[6]; // creates empty
array
for 6 JBUttons for (int i = 0; i < myArrayOfJButtons ; i++) { myArrayOfJButtons[i]= new JButton... // put a button into the
array
[/CODE]
Re: Control Array
Programming
Software Development
16 Years Ago
by LizR
Same as you would for any variable, int[] i = new int[9];
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
Tried all methods, but not working. Attached is the ocx file.
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
The ocx.
Re: Control Array
Programming
Software Development
16 Years Ago
by LizR
How about you post the code you have, not the ocx, its most likely the issue
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
Here's the code. [CODE]namespace BM { public partial class MainFrm : Form { private SLIDELib.Slide[] slide; private int sldNum; public MainFrm() { InitializeComponent(); DirectoryInfo di = new DirectoryInfo(@"C:\Test"); DirectoryInfo[] …
Re: Control Array
Programming
Software Development
16 Years Ago
by Ramy Mahrous
[icode]this.Controls.Add(......)[/icode]
Re: Control Array
Programming
Software Development
16 Years Ago
by shers
oh yea.... But the error starts at slide[numFile].Width = 125;
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