Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …](https://github.com/PHPMailer/PHPMailer), it gives you much better control over it and more advanced email options - I copied the… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani …? Without access to the server, perhaps through a web-based control panel like cPanel, etc.? At first glance, I see that… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … to access error logs or how can a web based control panel like cPanel be obtained ? Control Array Programming Software Development 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 by sotvisal Control Array Re: What is the Advantage and Disadvantage of using Control Array? Programming Software Development 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 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 by bharath54321 How to create control array in swings............... Re: Control Array in swings Programming Software Development by mKorbel what is/are control Array in/for Swing Re: What is the Advantage and Disadvantage of using Control Array? Programming Software Development 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 by LizR Same as you would for any variable, int[] i = new int[9]; Re: Control Array Programming Software Development by shers Tried all methods, but not working. Attached is the ocx file. Re: Control Array Programming Software Development by shers The ocx. Re: Control Array Programming Software Development by LizR How about you post the code you have, not the ocx, its most likely the issue Re: Control Array Programming Software Development 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[] …