control

asp.net ajax toolkit combobox doesn't work in hidden div

I have a combobox inside a hidden div which I use css display = none to make it invisible, but when I make the div visible by setting display = block, the combobox just show the input and its button and ul list all have css as display = 'none', visibility ='hidden'. I can tell it is done by combobox inbuild javascript because I tried t...

problems with user control page

I am starting to give up troubleshooting this issue I had... I had an .ascx page and had the following user control in it: <td> <Club:DatePicker ID="dp1" runat="server" /> </td> however in my code behind when I tried to write methods: public System.DateTime startDateTime { get { ...

Is the FPU control word setting per-thread or per-process?

I need to change the FPU control word from its default setting in a multithreaded application. Is this setting per-thread or per-process? Does it have different scopes under Mac OS X and Windows? ...

How could I make WPF textbox control exceed the maximum size limit?

How could I make WPF textbox control exceed the maximum size limit? Don't tell me to use richeditbox or AvalonEdit control, since the richeditbox would be performance issues while has large amount of content inside. Thanks ...

ASP.NET/VB.NET problem solving help!

Hi folks, Got a problem I need help with. Basically I'm gonna develop a form (part of a bigger web app) that lists a load of clients and there business contact, tech contact 1, and tech contact 2. The idea is rapid data entry. So one form shows each client with their contacts in dropdowns and I we can change each one then click a save...

How does the Control class, provide the ForeColor, BackColor and Font default values?

I know that component-model indicates whether a property has a default value or not, by means of ShouldSerializeValue method of PropertyDescriptor. The base windows-forms Control class, has some properties like ForeColor, BackColor and Font, that defaults to the same value of the parent, but I could not find any TypeDescriptor or Proper...

Report Abuse in Twiki website

I want to include report abuse button in my website. But couldn't find any such thing in the twiki documentation. Read the entire stuff on twiki variables, access controls, web preferences, but couldn't find anything about such or similar type of button. ...

Limiting the number of variables that one can use in twiki

Can I somehow limit the number of variables that a user can have access to somehow. Thanks in advance for replying. ...

Dynamically creating controls in MFC (Collection question)

Hello all, I have some custom control inside of which i should create radiobuttons or checkboxes. The count of child controls is available only at runtime (it loads some file from which it gets this count). So i need to create variable number of controls. Which collection i should use for this purpose? Solution 1: simply use std::vec...

$.ajax not loading data data everytime from server

I have written a simple jQuery.ajax function which loads a user control from the server on click of a button. The first time I click the button, it goes to the server and gets me the user control. But each subsequent click of the same button does not goes to the server to fetch me the user control. Since my user control fetches data fr...

Why do so many wpf controls implement CLR properties instead of dependency properties ?

Hello, is it because the controls programmers are lazy, too hard to implement or not knowledgeable? Wether they are custom controls from 3rd party vendors or Microsoft itself, very much controls have often clr properties instead of DP. Result is I can not bind to them and is wpf not all about binding? :/ My next side question would be...

Control links2 by python

Hi. Is there any way to control links browser from python? I need to make some bot, twill don't work on my page, Selenium need's X server. Maybe other way to do it? ...

TreeView Control Problem

Hi all, I have a public folder on the server that contains recursively nested sub folders. In the various Leaf folders contains Images. I wanted to create a server side file browser that will display the Images to the user. I am using the ASP.NET TreeView Control. I create the tree nodes using PopulateOnDemand. If the user click on a ...

Trigger user control post back from client side

Can a post back to the user control be triggered from javascript (on the client side) without updatepanels? What I am trying to achieve is this Initially the page and the user control are loaded with default values The parent pages makes a PageMethod request When the data is available (from the PageMethod request), the user control h...

How to align WPF Expander control toggle button

Hi I was wondering is it possible to align the toggle button on a WPF expander control to the far right side? ...

Insert Control into ASP.NET Menu Control?

I have a site that uses a menu control tied to a sitemapdatasource which calls from a xml sitemap file. I want to add to this menu a Login/Logout control. Is this possible? Dave. ...

Image gallery control for ASP.Net with filtering capabilities

I'm writing an ASP.Net application which needs to display a large number of thumbnails, preferably in a paginated format. These thumbnails will be stored on the server's hard disk, but will have their filenames listed in a SQL Server database. What I want to do is to be able to filter the images being displayed based on criteria within...

control method in visual basic

what is control method in vb ...

How to recognize touch events and control a script object inside UIWebView?

Situation: I have an UIView with an UIWebView in it. When the viewDidLoad the Javascript Object inside the UIWebView is called (Microsoft Seadragon AJAX JS). For your Understanding: Seadragon loads a specified megapixel image(JPEG) and in a Desktop Browser like Firefox i can Zoom into the image and I can drag the crop for example from t...

Implementing maxmize a control to occupy the whole client area in winforms?

I just can't give a good title to my question, sorry. I have 3x3 picture boxes on a form, what I want to do is when the user double click on one of the 9 picture box, I want to make the clicked picture box take the whole area, kind like a zoom effect, any idea how to implement this effect? ...