controls

Are there any open source FLV players with minimal player controls?

Can anyone please suggest an open source FLV player which has a minimal set of player controls? I have a client requirement to overlay FLV videos with DIV contents. When the div overlays the FLV then most of the FLV players end up having their player controls obscured by the div content. I basically need an FLV player which has a play...

how can i visible an invisible control with jquery (hide and show not work)

hi my dear friends ... How can I change the visibility of a control with jQuery? I have a control that its visible property to false...(not css) When I used show() function for it nothing happened, it seems that hide() and show() methods are for css set of a control , not visible property... Thanks for your answers, Best regards ...

How to create a RichTextbox control from scratch?

I need to know is it possible to create a textbox or richtextbox in C# from scratch, not extending anything, just building from root up? how can it be done? ideas? ...

How to disable the third zoom button in webview of Android ?

I want to disable the third button that creates a rectangle to zoom in other than +/- buttons in my WebView which uses builtin zoom controls. How can I do that ? I am able to do this for WebView without using built-in zoom controls by myWebview.getZoomControls().getTouchables().get(2).setVisibility(View.INVISIBLE); But how to do the ...

How do i create nice looking controls?

hi guys, I found a nice controls used by a software so wanted to use or build similar nice looking controls for my applications in vb.net First Sample control is nice rounded cornor group box [ i guess so ]: http://sachicomputer.com/kabin/samples/control1.jpg and second control is nice looking tab control: http://sachicomputer.com/ka...

Windows.Forms control like "properties" table in VS.

I need a table control where one can edit properties by various ways, just like editing properties in Visual Studio (it's for XML editing). Does anybody know about something like that, written by others, or maybe a solution from MS itself? ...

Where can I find an infinite canvas control for Silverlight?

Are there any Silverlight controls available to perform this dynamic DeepZoom trick that Canvas for OneNote does? By trick I mean hosting the interactive UserControls in DeepZoom, and allowing them to be independently resized. http://www.officelabs.com/projects/canvasforonenote/Pages/default.aspx ...

How to assign a numbering scheme to TreeNodes based on position

I have a TreeView control in a Windows Forms application that is displaying my own subclass of TreeNode. I need to display a number along with each node's text indicating its position in the tree, like 1 for the root, 1.1 for its first child, 1.2 for its second child, etc. I'm using C# with .NET 2.0 The best that I can come up with is, ...

WPF A good way to make a view/edit control?

Hi, this is just a question to discuss - what is the best way to make a view/edit control in WPF? E.g. we have an entity object Person, that has some props (name, surname, address, phone etc.). One presentation of the control would be a read-only view. And the other would have the edit view for this same person. Example: <UserControl x:...

A Delphi Custom Control: A TRichEdit with a TLabel Above It

Hello, I want to create an custom control (descendant of TRichEdit). I simply want add some text above the editfield. I've created my own control and I override the constructor to create a TLabel for the caption. It works, but my problem: How is it possible to move the label above the richedit? When I set Top := -5 the label begins to d...

Sizing problems when using custom WPF dialog control

I am defining a custom control in WPF which serves as the base class for multiple dialog windows which all leverage shared services (positioning, Ok and Cancel buttons). The custom control is defined as follows: public class ESDialogControl : Window { static ESDialogControl() { DefaultStyleKeyProperty.OverrideMetadata(ty...

Two Button Columns on a GridView Control

I have a grid view will two different button columns. I want to perform a different action depending on what button the user presses. How in the SelectedIndexChanged event do I determine what colmun was pressed. This is the code I use to generate the columns. grdAttachments.Columns.Clear(); ButtonField bfSelect ...

WPF How to add and perform events on those controls generated during Runtime

For example, I have an empty tabControl in my Windows during the compile time, and I have an undetermined amount of images need to be added onto the tabControl, so I used loop + tabControl.Children.Add("image1 to x") to add those images... but after that during runtime, I want to perform events on those image controls, such as dragging t...

Opinions on commercial MVC controls

We are interested in the communities opinions on commercial MVC controls ie Telerik, Syncfusion. Which is fast, easy to use, stability, documentation, support and all that good stuff. We are about to start our second MVC project and are currently doing research into improving functionality and speed of development to 'standard' MVC. A...

Google maps Geometry Controls from GMaps Utility Library

hi everybody, i'm working on google maps in specifically on geometry controls the point is, in this example when I click in line or polygon infowindow show up, but the language is english (by default I think) can I change the language? in the tooltips i can replace the text, but in this particular case i have no place do replace it, t...

ipad page curl control for customisation

I have noticed that on the iPad the google maps app has a very cool page curl control that sits in the bottom right hand corner that allows the user to change configuration settings. Is this control accessible for everyday developers, or was in built specifically for google maps on the iPad? Thanks ...

Prevent controls from being redrawn in C#?

I have a form that contains a lot of runtime generated controls (image, button, panel,...), about 100 controls (I'm making a card matching game so there is a lot of controls in the form). I place the generating code into the constructor and each time the app starts, it took about 3-5s to load all the controls completely. If I bring an...

what 3rd party control is used for the menu in inFlow Inventory applications

I want to implement a menu similar to the one used in the inFlow Inventory application. I see that the mozbar.dll is referenced but i cant get it to work in my application, and it is probably beyond my skill level to implement. Does anyone have any suggestions for other controls that might replicate the look and feel of the menu used i...

add behavior to group of windows form controls

I'm trying to mimic the web fuctionality of having a label over a textbox that shows the type of value the textbox should contain. I can add the events individually but I'm wondering if there is a way to add 'Behavior' to a set of controls. Please see example code: private void labelFirstName_Click(object sender, EventArgs e) { Hi...

Control spacing in Swing

Are there guidelines for how much space controls in Swing should have around them? Also there is the question on how exactly to achieve that: Some layout managers have support for gaps between controls; some don't, where you then have to use EmptyBorder – which can be a pain as well since borders don't overlap and you may end up with too...