I tried gamma ramp, but it simply changes the temperature of the image, while i need some kind of analogue to the brightness control of a display itself.
I would like to have a regular textbox on my form, where the selected text is still highlighted even if you use another control, e.g. push a button.
Does anyone know a way to achieve this (without using a RichTextBox which is not suitable for what I am doing).
Thanks in Advance
What is good book for industry level C++ programming?
I am not looking for C++ book for beginners which talk about data types and control structure. I am looking for more advance book.
For example, how to build system application using C++.
Any kind of guidance will be very helpful.
Thank in advance.
In the following code, when the ctor of X is called will the ctor of A or B be called first? Does the order in which they are placed in the body of the class control this? If somebody can provide a snippet of text from the C++ standard that talks about this issue, that would be perfect.
class A;
class B;
class X
{
private:
A a;
B b;
}
Quoted from the comment under this answer:
For a lot of mobile platforms Java
isn't an ideal choice anyway as there
isn't fine enough control over freeing
resources.
It seems C++ is the best, your opinion?
Hi friends,
I want to some how control the visibility of some columns in my advance data grid. I have a data provider with 115 coumns out of which I want to hide few columns. I know the column index and header field of these columns. Is there some property in Advance data grid where I can specify this directly?
Thanks in advance.
I have a control which is listened for both mouseDown and mouseDoubleClick events. However when mouseDoubleClick occure, I don't need mouseDown event to be handled. (Now both events fired when doubleClick happens)
How can I stop handling mouseDown event when mouseDoubleClick occured?
I want to show some bold and some simple word within the same sentence.If I use the textbox
then every word will be simple, not some bold and some simple so I want a control's text
property in that I can write some bold and some simple word within the same statement
Is it possible to actually use the type passed as a template for control flow? I'd like to write a function that uses templates, which in turn calls another function based on the type passed:
template <class T> void test_function (T var)
{
//Do stuff
if (T == char) {
bar (var);
} else {
foo (var);
}
//Do even more stuff
}
If not, I'll have to fallback to enums...
Hello,
I'd like to know if the executing thread is the one that created a given control instance (to prevent cross-thread if it's not).
Is that possible ?
Thx.
I'm working on a webform that has about 15 user controls, separated by context (comments, locations, members/leaders, etc).
If each control can render individually (using real or test data), does it make sense to have a seperate "functional" test page to test them in isolation or is there a better way?
i need to design a report that will print text on specified x,y coordinates
for example, i will input (50,50), (60,60), (70,70) and i will have my program print text at those specific coordinates on the report. in total there will be about 50 different coordinates.
how do i achieve this? should i be using a label control or a textbox? should i be creating the controls dynamically or should i already have controls set at the specified regions?
Hi,
I'm looking at market stats here for sdk distribution:
http://developer.android.com/resources/dashboard/platform-versions.html
saying that 31% of marketplace users are still running 1.5. Is it true that an OS update went out for G1 and myTouch users? I'm wondering why so many people are still running 1.5 if so? Just curious because I'd like to use th setView() method introduced in 1.6 for TabSpec, but not if so many people are still using 1.5, I might have to roll my own control,
Thanks
I have written some handlers binding the jQuery .change event to the controls on my page. One of the controls has the ReadOnly=readonly attribute set. The .change event is not firing for just this control.
I have had a Google but can see nothing obvious. Any ideas?
I am using the asp.net with c# and using the update pannel as well as flash control i am getting the error sometime not all time and no page navigate after then plz help me out
following is the massange on the pop up window:-
"Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0"
Please Help me out sence may on the demo time the application may carsh
I need to display a list of ActiveX controls for the user to choose. It needs to show the control name and description.
How do I query Windows on the installed controls?
Is there a way to differentiate controls from COM automation servers?
Hi,
Can anyone please tell if there is a simple and easy to use treeview control in php which support checkboxes?
I am looking at something that can work in IE 7 please.
I should be able to get the selected values etc.
Thanks.
Hi, All
I want to change the image in my application screen periodically.
how can i implement it ?
is there any timer control in BlackBerry ?
waiting for your suggessions...
thanks in advance...
I am working on the Login module of my Struts2 app. I have created the Login Page, and a home Page(which is rendered by Login.action). Now i want to add another feature, forgot password which after performing its business must call the Login.action so that the user need not have to Login explicitly. what should i code and where so that as soon as the ForgotPassword.action finishes its work it passes control to Login.action.
Hi!
How to create combobox control with non-selectable items? For example, such groupnames or categorynames which visually divide items in dropdownlist into some groups or categories.
WinForms