o
k
q
u
e
s
t
i
o
n
s
.
c
o
m

Dynamic Controls -

Dear Friends...

i'm developing a software that has a webbrowser in it but i have some issues with it..
my problem is that i want to add tabs to it dynamically and add a new webbrowser component to each tab that is created, i've already done the adding tab but i can't add the webbrowser to the added tab... in general i want it to be like when user clicks a button it automatically adds a new tab with a new webbrowser in it, but now my program can only open a new tab...

please help me with this..

thanks
A.B

 

how to validate user input in dynamic controls -
hi, Iam trying to validate dynamic controls.This form has dynamically created controls and gets the user input which should be validated.it has to validate email,phone number,state,zip etc.i have written procedures for these validations but having problems impleminting it.how do i us


toolbar style buttons & dynamic controls -
I'm wondering what is the smallest, quickest way to creae a button like those found on MS toobars, such as the quick launch bar. And also how I can dynamically add new controls at runtime. I'm using vb6 and I think that dynamic controls are supported. TIA. -Adam


how to create dynamic controls in asp -
can we create dynamic controls in asp i am new to asp can any one tell me how to create dynamic labels or any controls in asp and give me any sample code if u have


Generating dynamic Web Controls -
Hi Everyone, I am not able to figure out how to generate dynamic web controls (textbox, dropdownlist etc) at runtime and assigning different names to each of web controls at runtime using ASP.net. This thing was easily done in ASP but could not know how to do ASP.net. Pls help me ou


[2005] Dynamic Controls and Their Persistence -
I created some run-time controls that function terrific. My problem is that when the user presses a button option to view a totally different screen (in this case a screen-sized UC) and then returns the dynamic controls are gone. What's going on in the CPU when it deals with design


Scrolling the client area -
I'm trying to scroll a set of dynamic controls that are overlayed onto a graphics background. All of the graphics and dynamic controls are placed onto the main client area of my app. Does VB allow the client area to be scrolled, and do I have to re-compute where to draw my existing g


Adding dynamic controls -
I have always added dynamic controls like so: Label l = new Label(); l.Text = "Label 1"; this.Controls.Add(l); on Page_Load. But if I try to add a Button dynamically, I get an error saying it has to be nested in a <form>. So I checked the HTML source and s


Dynamic population of VB6 tabs -
Hello - I'm looking for some hints on the dynamic population of tabs with user controls please. I'm working on a generic VB6 active X tab control that is to be launched from a C++ property page and it is to work as a extension to the property pages for various different features. W


Dynamic Button -
What I am trying to do is create a dynamic button on the form then when I click that dynamic button I want a message box to be poped up. I am getting the dynamic button allright but when I click the dynamic button I am not getting the msgbox. the code is as follows _______________


When Adding Dynamic Controls, Drawn Below Other Controls -
I am trying to add dynamic buttons to a form that has a map, and I want to add these buttons on top of the map, but when the system draws them they are drawn below the map. In fact, they are drawn underneath any static control that is already in the form. Is there some parameter I can


[02/03] Dynamic Tabs and Controls -
Hello, I have managed to create dynamic tabs on my app and include controls in them! The problem is how do i "access" the controls in each tab? For example when i have 4 tabs and i load 2 radio buttons on each of them RadiobuttonID1 and RadiobuttonID2 how can i write code to


Add Dynamic controls to existing control array -
Is it possible to add dynamic controls to an existing control array? I have 5 hard coded textboxes, and the ability to add dynamic ones My control is is txtPath (0-4) and I really hate the way vb6 does the object name. It doesn't allow me to do: Code: Set ctlText = Controls.A


dynamic web controls -
how can i add about 50 checkbox controls to a web page dynamically and have them with events? is this a possibility?


Excel 2003 - Data type for spinbutton -
Is there a datatype assigned to spin buttons (and other controls)? I have a spin button maximum that I'm trying to set to a dynamic number that gives an overflow error when that dynamic number = 2,366,547,500 (I'm not sure what point it crashes, but it appears to be a long datatype


dynamic control -
How do you add dynamic controls to the form. Furthermore, I have a legally purchased 3rd party control. How do I dynamically load this onto a form ??? Can we only load vb controls dynamically ?


Event handling on dynamic controls -
Maybe I'm trying to run before I can walk, but I've figured out how to dynamically add controls to a form, but I can't figure out how to handle the events they trigger. for each selected item Dim ID As New CheckBox ID.Left = 12 ID.Top = x


dynamic -
morning, im working on dynamic forms and im facing real big problems.. I am creating an application similar to visual basic. so when i create a dynamic control (run-time), I want its properties to appear in the buttom left corner as in VB. i created MSFlexGrid and its filled ac


[2005] Setting e.Handled -
I have several dynamic controls on a form, each with 2 Event Procedures; GotFocus(), and Leave(). These dynamic controls, when created, set the tabindex automatically starting with 0, hence, after the controls are loaded...the control with 0 tabindex has the Focus. My problem is th


[02/03] Dynamic UI Creation -
Hey Folks, Looking to create a dynamic UI based on a listbox. The list box is populated with database table names. You click on the one you want and the controls are created on th escreen and databound to the table. Now I have to be able to arrange them in some pre-s


Accessing controls by name -
How do I access a control on a form by name i.e. something on the lines of: frmMain.Controls("btn1").Text = "Hello" where the name will be dynamic e.g. "btn" & CStr(intCount). The Controls method requires an integer index, how do I do the look


New to .Net world -
hi correct me if i am wrong. i am planing to develop app which has a feedback for my customer and i want to do it in asp.net (web based) . my customer are of wide varity using diff products. now my feed back data (Q and Ans) are in database and need to generate the form dynamic


Dynamic Cube -
Is there someone know about dynamic cube in VB? how can we get the component of the dynamic cube? Do you have a good tutorial about dynamic Cube? THX......


Dynamic Control Arrays -
How can I write code for controls created at runtime? This is what I need: 1) I have a dynamic array of textboxes that will grow/shrink at runtime, so I can not declare it "WithEvents", VB chokes 2) I need to be able to write code for when the user clicks on the


Placeholder -
Recently I placed some threads (questions) about creating controls (dynamic) on a webform. I received a useful tip to use a placeholder. With this in mind , it is not very difficult to create controls from a xml file. But there is one big problems left : When I add two labels to


dynamic control on a sstab -
hello, i want to create a dynamic control, let's say a command button, on the second tab of a sstab control. how would i go? it may all be that the sstab is one same container, but VB does know which tab if you look in the .frm files. right now using the classign Controls.Add


Trouble accessing Dynamic Web Controls -
Hello, I am having trouble accessing dynamic web controls. Basically I am new to using dynamic controls. I have a large application to create, but I have started with a prototype. Basically, I have created 2 text boxes dynamically in the 'OnInit(EventArgs e)' function. The following


Dynamic Controls to SSTab -
Okay, how do I add controls to a specific page of a SSTab. Every time I try something, I get the error "... or wrong number of arguments". e.g. Set DynamicButton = Controls.Add("VB.CommandButton", "Command1", SSTab1.Tab(2)). Anyone have any ideas?


[2008] Dynamic form -
I'm currently working on a database application with rather more complex security than usual. In accordance with this, every form in the application will have to be somewhat dynamic. Is there any way that I can store the designer info of a form in an xml file, so that only certain co


Listbox Help !!! -
Hi, Currently i need to display information in a listbox from a text file. and when it is display in the listbox it shows the following: 172.20.144.5 00-00-00-00-00-00 invalid 172.20.144.6 00-50-8b-f5-dc-a8 dynamic 172.20.144.8 00-50-8b-f5-d6-da dynamic 172


SSTAB - Dynamic loading of controls onto tabs -
I can't get the Rich Text Box to load on the second tab. It always loads on the first tab. How can I get dynamic created controls to load on the tabs other than the first one? Code: Dim RichTextBox1 As Object Set RichTextBox1 = Me.Controls.Add("RichText.RichTextCt


Dynamically-created-controls Event firing problem -
Hey, I create controls (Texboxes and Buttons) dynamically from DB in Page Load. In every postback these controls are recreated which isn't needed for me. So I put my controls creating code in "If Page.IsPostBack = False Then" Now controls isn't created after I press but


frame scrolling -
Hello I have a problem in scrolling only a frame with other controls in a form. I am trying to place few label box controls at the top of the form and i create dynamic control array of labels at runtime. As this is dynamic, i want to place these control arrays in a frame and i want


Dynamic Controls & Events -
hi i hv a another question. can create 10 textbox in runtime? ans: yes now Can I access the Events,Properties & Methods in runtime after created those controls.? ans: yes but how? anand


Gurus ! Dynamic controls & retrieving values... -
HI all, I've come across a problem and I have no clue on how to resolve this : I ha ev a datagrid that must display dynamic fields & value : [Custom field 1] (label) : [Custom Field 1 Value] (textbox) [Custom field 2] (label) : [Custom Field 2 Value] (textbox) ... It works,


Dynamic control addition -
Lets say that i make a program that creates lots of dynamic controls,(not really lots, but more like 5 or 6),using something like this... 'an if statement goes here ControlName = InputBox("Give me the control name.", "Control Name") Set Boton = frmDro


can't create dynamic control array -
I'm using VB6 and want to create a set of text boxes dynamically at run-time. I've looked at the "controls.add" method, and I've dug through the help references on control arrays until I'm blue in the face and I've tried everything I can think of. For FORMS, I have no troub


Placing dynamic controls on TAB-control (SSTab) using VB 6.0 -
Hi, I am using Visusl Basic 6.0 and here is my problem. I am having trouble placing controls (check/list/text boxes etc) on a tab-control (SStab) during run time. I am able to create the objects, but I can not see them as they stay behind the tab-control. I tried making Tab-con


change read-only properties of dynamic controls -
how to change read-only properties of dynamic controls ? i get this error : Can't assign to read-only property Code: ' general declarations Private NewTextBox(999) As TextBox Private NewComboBox(999) As ComboBox ' Form_Activate Set NewTextBox(t) = Controls.Add("VB.T


How can I order dynamically created controls -
Hi, I am building form with dynamic insert of controls (such as Frame and Labels). I've tried to put Frame on the Form, another Frame on the Frame, and afterwards a Label on the last Frame by using the Controls.Add method. The problem is that the Label disappear to the back of the F


VB6 Dynamic Controls -
How do I programmatically create different PictureBox controls with properties set in code. For instance click on Command1, makes a PictureBox with Graphic1.bmp and then Command2 makes a PictureBox with Graphic2.bmp. This is the hardest thing that I have been able to come up against