Controls may be refer to Microsoft ActiveX controls which is a simple OLE object that supports the IUnknown interface.

learn more… | top users | synonyms

0
votes
1answer
30 views

Unable to find a control by name

I'm writing an app in C# and one of the requirements is to programmatically localize the text/tooltips of the UI. I am reading in the locale info from XML into a variable. I need to be able to ID the ...
-1
votes
0answers
18 views

How to use iOS Lockscreen music controls to control my app [duplicate]

Would like to connect my audio app to iOS Lockscreen music controls, so when the iPhone screen is locked, after double pressing the Home button, the music controls can control my audio app's ...
2
votes
1answer
50 views

Getting Controls From a Page Object

I am new to .Net platform and I am stuck in retrieving controls from .aspx pages since two days. I am trying to get all the controls from all the .aspx pages in my website. So for that I create the ...
0
votes
1answer
18 views

Referencing Controls on main form and a form opened from the main form

I have 2 forms. The first one, in _Load executes several statements such as the one below, storing control references in arrays. Set dateButtonsArray(1) = Forms("DepositsForm").[Date1] Through an ...
0
votes
1answer
19 views

this.Controls doesn't contain all controls

One text box in particular has been skipped. That textbox with ID "q3TXT" is inside a panel which is hidden at the PageLoad method. Yet it becomes visible before the function that collects controls. ...
0
votes
3answers
55 views

Alternative to ASP.NET drop down list

Regardless of what I do or try drop down list isn't just working, <asp:DropDownList ID="drop1" runat="server" AutoPostBack="true" enabledviewstate="true" OnClick="Drop1_SelectedIndexChanged" /> ...
0
votes
3answers
32 views

Create a Details Form from a GridView c#

Possibly a complex question - but here's hoping I have a generic data grid on a single form (displays whatever table I want from a dataset) simply by swapping tables in the dataset. I want to ...
2
votes
0answers
83 views

Drop Down List resets

My drop down list resets to default when I try to select a item, and it also doesn't trigger's code behind method when I put a line break and try to debug it: Here's markup, <script ...
1
vote
3answers
30 views

How to get child control?

I have TabControl that contain 4 subTabs. Each of the tab contain picture box cotrol. I need to get the picture box control of the selected Tab Control. Any idea how to implement it?
1
vote
2answers
49 views

Drop Down List Selected Index changed not working in Update panel

I have a drop down list in UpdatePanel_2, it gets populated when Button_1 is clicked in UpdatePanel_1. My ddlist markup is, <asp:DropDownList id="drop1" runat="server" EnableViewState="true" ...
2
votes
1answer
43 views

How to keep “select” as item[0] for drop down list

I have a drop down list in UpdatePanel_2, it gets populated when Button_1 is clicked in UpdatePanel_1, when DropDownList is populated, it removes my "Select" item not sure why, My Drop down list ...
0
votes
1answer
37 views

Drop Down List not getting populated on partial post back

I am trying to populate a drop down list on partial post back, not sure why it's not working. this works, protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) ...
0
votes
4answers
36 views

Easiest Java layout process

In Java, what is the easiest way to do the following layout: A Label and a Textfield, side by side in the centre at the top of a Panel A Label and a Textfield side by side (as above) but on the next ...
0
votes
1answer
44 views

Setting the ValueMember of a combo box is causing an error

I'm trying to set the value member of a combo box. Two lines above this has near identical code for another field and it works fine. cboCommodity.DataSource = rwDB.getCommodities(); ...
0
votes
1answer
32 views

Custom Stop Button HTML5 Video

So im trying to make a little video with custom controls, it is the first time, so i have no idea what im doing. but i have godt the play pause putton to work, but how do i make a stop button? My ...
0
votes
1answer
36 views

VB.net Create controls at runtime using class?

Hi I am looking to create controls at run time but with a bit more complexity: I have collection of controls that I want to duplicate at runtime and then access, say: 2 text boxes 2 labels 1 ...
0
votes
1answer
88 views

How declare Textbox value (using Controls.Find) in public partial class without error?

Hi i have code that create new variable for textbox that not exist yet, but can be created on runtime. it work great, see code bellow public void btnApagar_Click(object sender, EventArgs e) { ...
0
votes
0answers
62 views

C# adding control from another class

I want to add form controls dynamically to my form from another class which inherits the form class. Everything works fine but it does not add the controls at run time. Here is my sample code: ...
3
votes
1answer
75 views

Dynamically looping through controls has no effect

I have a GUI class. I pass a frmMain (form) to GUI contructor. Then I have the following method to access child controls: public void assignEvents(frmMain frm) { foreach (Control ctl in ...
0
votes
0answers
41 views

Dynamic C# Not rendering on page_load

I have a method which is intended to dynamically generate a series of divs based on the entry of a value from a dropdown list. However, I wish to reuse the same code to generate the tables on the ...
0
votes
2answers
63 views

Get values of dynamically created controls (comboboxes)

I've got panel on which by default are two comboboxes and one "+" button which creates two new combo boxes bellow the first one, I can create multiple (n) rows with two combo boxes and everything is ...
0
votes
1answer
45 views

Button click is not firing in a multiview?

I have one aspx page which contains 4 multiview controls and different views in each of them. In the first view which is the details view, I am entering some invoice details and checks the db for the ...
0
votes
3answers
51 views

Preventing a control from receiving focus when using the Tab key

How does one set a TextBox control so that it has no TabIndex at all. I want to make it so that the user can't tab into it. [explanation] The reason I asked this question is because I recently ...
0
votes
1answer
30 views

My picturebox won't move visual basics

i am trying to make my pixturebox move but it just wont. I've been doing identical code on another project just to test it and it works perfectly fine. Private Sub frmFirst_KeyDown(sender As Object, ...
0
votes
0answers
7 views

session state rest while creating dynamic controls

I have a web application that using form authentication the application creates user controls and pages dynamically at run time when I create new page or new user control the session state is reset ...
1
vote
1answer
40 views

VB.NET Drawing Text Above Controls

This is a really simple issue that I am having, but for the life of me I can't seem to get it to work. I've looked a round but haven't been able to get any similar solutions to work properly. ...
0
votes
2answers
32 views

Move to next form control from another class C#

Is there any way to call processTabKey(); from MyClass.cs which has helpers, and use it for each form that calls it, instead of making one method on each form? For example Form1.cs calls myMethod() ...
0
votes
0answers
9 views

What's new in ASP.NET web controls development [closed]

May be the world has moved to MVC, but i still like the webforms a lot because of it's simplicity. It's been long time i wrote webcontrols and wanted to know if people/dev's have found any new ways to ...
0
votes
2answers
65 views

Draw a rectangle around a control, C++ MFC

I have the code HWND hWndTmp = pDX->m_pDlgWnd->GetSafeHwnd(); hWndTmp = GetDlgItem(hWndTmp, pDX->m_idLastControl); CWnd *wnd; wnd = wnd->FromHandle(hWndTmp); RECT ...
1
vote
0answers
64 views

In visual studio 2010, when I open a form in design view - some numbers showing up next to each control

I keep seeing these odd looking numbers on just one of the forms in my application. Any idea why this appears - this doesn't cause any trouble in running the application, but I need to make some ...
0
votes
2answers
59 views

Is there a list of controls or controls container defined in an MFC dialog

I'm asking about a list or controls container in mfc dialog? i don't mean listing the child windows of the a dialog like this question Loop through MFC Child Dialogs, MDIFrames etc ,What i want is a ...
2
votes
1answer
38 views

.NET Designer issues shadowing properties as readonly in inherited controls

I am trying to create custom controls to provide some consistency to the design of an application. However when I shadow a property with a readonly alternatvie, I get designer errors at build time. ...
-5
votes
1answer
74 views

How can i disable moving between Tab Control tabs by mouse in c# [closed]

I want to move between tab on tab control using Navigation Buttons , and i don't want the user try to move between tabs using mouse , How can i do that ??
0
votes
1answer
72 views

SplitContainer panel to fit content automatically

I'm looking for pretty simple functionality, however I cannot find it (and surprisingly I cannot find anyone else asking this question). I've got split container with two panels - pretty simple ...
0
votes
0answers
22 views

how to solve text input and THREE.FlyControls interference?

if I want to have a text input inside my 3D scene without losing its focus when using flycontrols I have to add this line: controls = new THREE.FlyControls( camera, renderer.domElement ); with ...
0
votes
1answer
165 views

vb asp.net session variable not working?

I just want to control which button user clicked, so I use Session Variable to store that data because I have to create all dynamic control in the Page_Load (to allow event handler work properly). The ...
0
votes
4answers
35 views

getting all controls on a page

I need to set the readOnly attribute of my form controls(textboxes, radio buttons, etc) to readOnly = true or false based on a global variable. I was hoping I could loop through each type of control ...
0
votes
1answer
36 views

How to pass by reference a button's or other control's text

String ^% text = button->Text ; text = "something" ; Should change button's text, but it doesn't.
0
votes
0answers
19 views

why setting camera position after reset TrackballControls is not working?

I had this perfectly working (trackballcontrols) if(dist>2000) { controls.reset(); camera.position.z=1900; } } But now with r58, the camera's ...
0
votes
0answers
23 views

In C# Creating new Tabs, each with a new instance of a panel.

I'm working on an app that must do the following: User creates new tab. When a new tab is created, a new instance of a panel containing an assortment of controls (checkboxes, radio buttons, ...
0
votes
1answer
26 views

Remove the windows form controls on exit

I'm adding the form controls on loading the form manually: Me.FieldI = New TextBox() Me.FieldI.Location = New System.Drawing.Point(50, 10) Me.FieldI.Name = "FieldI" Me.FieldI.Size = New ...
9
votes
1answer
163 views

Why isn't my designer property serialized in the ASPX

In an attempt to create a custom data source that is supposed to be used in ASP.NET, I've created a custom data source class, a custom editor and a custom serializable class. What I fail to ...
1
vote
0answers
34 views

Preventing child controls from being drawn in a Panel

I am writing a Windows Forms control which extends Panel. Example: public class CustomPanel : Panel { } Say I add some standard Windows Forms controls to the panel, such as a Button, TextBox, ...
0
votes
2answers
73 views

How to Change a Gridview Control?

I have a C# ASP.NET project with a gridview. The gridview has a dataset as a datasource. The grid includes a date field, but when you edit that field, you have to type in the date, and can't select a ...
0
votes
2answers
28 views

using client side validation with telerik controls

Can you use client side validation with telerik controls? The examples show validation using standard html input controls. I have forms with RadTextBoxes, RadComboboxes etc and would like to add ...
0
votes
2answers
59 views

Access control element from static thread function

I ve read lots of information about this stuff and i tried this: class Server { ... public Server(int Port, ListBox ex_lb, PictureBox ex_pb) { ServerWork = new Thread(() => ...
0
votes
1answer
98 views

OpenGL ES 2.0 | GUI screen on top of game screen?

Ok so I want to make a game with openGL ES 2.0, but I have a problem with the controls. until now i made the controls just like any other sprite in my game, just draw it, and if the camera updates, ...
2
votes
3answers
97 views

C# Take ScreenShot of .net control within application and attach to Outlook Email

Does anyone know how to take a screenshot using C# and limit it to take a picture of a specific container/portion of an application. I do not want the whole screen or whole window of the application. ...
0
votes
0answers
28 views

why Three FlyControls are interfering with Three TrackballControls?

Am switching from FlyControls to TrackballControls, when I go from TrackballControls to FlyControls everything is ok, however, when I go from fly to Track, it seems as if the mousedownevent of the ...
0
votes
1answer
59 views

Copying a picturebox over into a panel (VB.net)

I have been doing some research and havent found out how to do this: I have a list of pictures inside a Panel and was wondering if when I click one of the pictures, it puts the selected image inside ...

1 2 3 4 5 51