Showing related tags and posts across the entire site.
-
I am trying to load a multicolumn C1DropdownControl on my Windows Form. All controls on the form are unbound, so data binding is not an issue. However, I have the following (SQL Server 2000) table from which I need to lookup the values in order to load into the dropdown list: tblPerson table, related...
-
I have created a dropdowncontrol and stuff into that control a form the purpose is to allow the use to pick from a list of colors. But i do not wish to have a user enter in text into that box. Im using the text area to display the color currently chosen to the user. So is there any way to stop text being...
-
Is it possible to prevent a C1Input.DropDownForm from automatically closing when it loses focus? I have a custom C1Input.DropDownForm that a user will need to enter data into but sometimes a user may need to switch to another application and then back. Currently when the user switches to the other application...
-
Currently this isn't possible to do nicely. I have some suggestions: You can force the dropdown to be open anywhere in your app with C1DropDownControl1.OpenDropDown() The drop down is a form itself, so you can manipulate it's visibility with its Show method. But you'll have to play around...