Tagged Questions
In general controls are interactive elements of the user interface.
38
votes
6answers
14k views
How do I capture SIGINT in Python?
I'm working on a python script that starts several processes and database connections. Every now and then I want to kill the script with a Ctrl-C signal, and I'd like to do some cleanup. In Perl I'd ...
30
votes
6answers
38k views
Asp.net - Add blank item at top of dropdownlist
Why is the dropdown not showing my blank item first? Here is what I have
drpList.Items.Add(New ListItem("", ""))
With drpList
.DataSource = myController.GetList(userid)
.DataTextField = ...
13
votes
3answers
9k views
Best Wizard Control for .NET Windows Forms?
I'm looking to add one or two wizards (you know, a simple dialog with multiple pages that walks a user through a process, step by step) to my WinForms application. I'm just curious of what controls -- ...
12
votes
2answers
2k views
Is it appropriate to extend Control to provide consistently safe Invoke/BeginInvoke functionality?
In the course of my maintenance for an older application that badly violated the cross-thread update rules in winforms, I created the following extension method as a way to quickly fix illegal calls ...
10
votes
3answers
1k views
C# winform check if control is physicaly visible
Is it possible to determine if at least one pixel of a control can be seen (by a property or maybe using event notification).
NB : I am not looking for the Visible property that can return true even ...
10
votes
2answers
819 views
Working with version control on a Drupal/CMS project
I was wondering how teams that develop sites using Drupal (or any other CMS) integrate version control, subversion, git or similar, into their workflow. You'd obviously want your custom code and theme ...
10
votes
1answer
9k views
Silverlight 3 - ScaleTransform or other method to zoom in a Canvas?
I need to be able to zoom in and out of a Canvas using the mousewheel. I have successfully set up the mouse wheel handlers and am currently using a ScaleTransform to apply the zoom; however, the ...
9
votes
3answers
150 views
Is there an out-of-box PHP solution to do revision control for database fields?
I'm looking for something that I can use to do versioning in PHP (not for code). I'd like to do revision control for a text input users edit.
I've found something great for Ruby ...
9
votes
7answers
3k views
Prevent class inheritance in C++
Recently one of my friend asked me how to prevent class inheritance in C++. He wanted the compilation to fail.
I was thinking about it and found 3 answers. Not sure which is the best one.
1) Private ...
9
votes
3answers
2k views
Google like edit/combo control for Delphi?
Everyone probably knows what I mean, but to clarify the control would need to:
Fire an event when user edits the text. The event would provide a SuggestionList: TStrings which you could fill with ...
8
votes
1answer
134 views
Do Metro controls reuse the same codepath at low level even if controls are created from HTML/JS or XAML?
Suppose I create two metro apps,
one with an HTML view which has
<input type="text"/>
another with a XAML based view
<TextBox/>
Does the underylying implementation map to the same ...
8
votes
3answers
846 views
Controling a matlab script (Pause, Reset)
Hey guys, I am trying to create a matlab script (m-file) which shall be controled by an external VBA script.
The matlab script shall do the same operation every time (even params change, but this is ...
8
votes
3answers
577 views
Linux: write a C program that 'controls' a shell
Suppose we have a shell running on terminal, let's say, /dev/pts/1. The shell is already running and we can't restart it.
Now we want to write a C program that will 'control' the shell, i.e. which ...
8
votes
3answers
773 views
When to use UserControl vs. Control in Silverlight?
I'm just getting my feet wet in Silverlight, and don't really understand the differences and pros/cons of creating a UserControl vs. creating a Control for the same task (as in when you right click on ...
8
votes
4answers
2k views
Stop/Start service in code in Windows 7
I am trying to write a app and service which monitor a given set of services and a) makes sure they are running and b) based on certain criteria, restart them as needed.
I keep running into an access ...
8
votes
15answers
1k views
What Are Some Decent ISPs That Host Subversion
I want a recommendation on an ISP which has Subversion installed so I can get a repository started. So far I found out discount.asp doesn't have that on their servers and will not support it. So I'm ...
7
votes
4answers
2k views
What is the keyCode for left and right ctrl key?
I'm coding a function in jquery that executes if ctrl+R is pressed but I can't seem to find out what the left and right ctrl keycodes are....can someone please help?
UPDATE
///this works
...
7
votes
3answers
504 views
How can I control an interactive Unix application programmatically through Perl?
I have inherited a 20-year-old interactive command-line unix application that is no longer supported by its vendor. We need to automate some tasks in this application.
The most troublesome of these ...
6
votes
3answers
146 views
Is there an alternative to the OnChange event that is raised on any action in Delphi?
From the Delphi XE documentation:-
Note: OnChange only occurs in response to user actions. Changing the Text property programmatically does not trigger an OnChange event.
Are there any other ...
6
votes
1answer
221 views
How to get around the memory leak in the .NET Webbrowser control?
This is a widely-known, old issue with the .NET Webbrowser control.
Summary: Having the .NET webbrowser control Navigate to a page increases memory usage that is never freed.
Reproduce the memory ...
6
votes
5answers
467 views
WPF Control Flip
I've got a control that is mainly comprised of an image and a button. I want to display the image meta data on the back of the image and have the control flip horizontally when the button is pressed:
...
6
votes
1answer
296 views
Animate 'Style' property of Control using ObjectAnimationUsingKeyFrames in WPF
I am trying to animate 'Style' property using ObjectAnimationUsingKeyFrames. When I run the sample below, I just see empty window and there are no any exceptions.
Almost the same sample works in ...
6
votes
1answer
3k views
Formatting Microsoft Chart Control X Axis labels for sub-categories to be like charts generated in Excel
I am having issues attempting to replicate a chart that has been generated in Microsoft Excel 2007 by using the Microsoft Chart Control for .Net
The chart is showing the TOP 5 entries for each Month ...
6
votes
4answers
274 views
Evaluate beyond one level within Hold in Mathematica
The mathematica documentation on Evaluate at possible issues says:
Evaluate works only on the first
level, directly inside a held function
Why does Mathematica have this limitation? So if I ...
6
votes
2answers
2k views
Compilation Error when using AJAX Control From AJAX ToolKit
I tried using AJAX Control for my first time after I installed the AJAX Toolkit for ASP.NET. I created a new ASP.NET website and added the ConfirmButtonExtender.
After I run it without changing ...
6
votes
3answers
159 views
~1s latency control app: is this suitable for Java?
At my work we recently finished the system architecture for a control application which has a maximum latency of roughly one to two seconds. It is distributed on small ARM on-chip boxes communicating ...
6
votes
9answers
2k views
Avoid calling Invoke when the control is disposed
I have the following code in my worker thread (ImageListView below is derived from Control):
if (mImageListView != null &&
mImageListView.IsHandleCreated &&
...
6
votes
10answers
10k views
C# Get control by name
I have a ToolStripMenuItem called "myMenu"
How can i access this like so:
/* normally i would do: */
this.myMenu... etc
/* but how do i access it like this: */
String name = myMenu;
this.name...
...
6
votes
2answers
8k views
How do I customize the WPF StatusBar layout?
Adding more than one child to a WPF StatusBar results in poor layout with little option to customize. For example, this code:
<StatusBar>
<StatusBarItem>
...
6
votes
3answers
2k views
Why is DrawString exhibiting unexpected behavior in C# Winforms?
I have subclassed a control in C# WinForms, and am custom drawing text in my OnPaint() handler.
The font is set to Courier New using the following code in my form:
FontFamily family = new ...
6
votes
6answers
6k views
VLC remotely control from C#
i'm trying to control the VLC Media Player from C#. I tried getting a handle on the window with the FindWindow() command from .Net but as i found out the name of the window changes every time a file ...
6
votes
4answers
6k views
Silverlight XML editor / syntax highlighting
I am looking for a Silverlight text editor control that provides XML syntax highlighting. I found a few answers in Winforms or WPF, like here on Stackoverflow, but I didn't manage to convert them to ...
6
votes
8answers
8k views
What is the best way to connect remotely to a mac
I'm trying to remotely control a macintosh computer. I know that in the windows world, you can use Remote Desktop to connect from one windows computer to another windows computer. This works ...
5
votes
3answers
139 views
Is there a way to determine if a Linux PID is paused or not?
I have a python script that is using the SIGSTOP and .SIGCONT commands with os.kill to pause or resume a process. Is there a way to determine whether the related PID is in the paused or resumed ...
5
votes
2answers
1k views
.NET Chart Control - Axis X Text Rotation
How do I rotate the text orientation of the text on the X Axiz of the Microsoft ASP.NET Chart Control? I am using .NET 4.
Is this done under the Series?
5
votes
2answers
133 views
Low latency capture of button click
I want to have a physical button (not a software button) that I put into my custom rig. When I click this button, I want to receive a signal in my software e.g. by registering my callback function.
...
5
votes
6answers
1k views
Windows Phone 7 Map Control with custom layer in offline mode
Hi WP7 mobile passionate developers!
I'm trying to use the default provided Bing Map control from Windows Phone controls.
Specifically I'm trying to use a custom TileSource to provide a custom made ...
5
votes
1answer
455 views
control flow graph generator for c# code
i need a tool that takes c# code and generate the control flow graph of the code
if there's something like this in visual studio ............ do please point it out to me
thanks
5
votes
3answers
5k views
How can i change the Java Runtime Version on Windows (7)
How can i change the Java Runtime Version on Windows.
i installed java7 for some tests, now i need as system default the old java6, but i dont want uninstall the java7 (need it for later tests). can ...
5
votes
2answers
193 views
Mercurial - Is it possible to merge changes from the trunk to a branch, within the same repo?
Mercurial - Is it possible to merge changes from the trunk to a branch, within the same repository?
If yes, is it possible with TortoiseHg?
5
votes
3answers
312 views
How Does One Make Scala Control Abstraction in Repeat Until?
I am Peter Pilgrim. I watched Martin Odersky create a control abstraction in Scala. However I can not yet seem to repeat it inside IntelliJ IDEA 9. Is it the IDE?
package demo
class Control {
def ...
5
votes
1answer
735 views
Conditional Styling In Silverlight?
While I'm fine with standard control styling in silverlight I have recently began using more dynamic methods of fetching data to be displayed in items controls. One of the controls I am reworking is a ...
5
votes
5answers
315 views
Re-Inventing The Label Control
I need to reinvent/recreate the Label Control from scratch to add my own mojoness to it. Yes, I know what you're thinking (and if you're not thinking that, shouldn't you be?).
Can somebody point me ...
5
votes
1answer
4k views
For each <item> in CheckedListBox. <item> returns as Object and not as Control
I have a CheckedListBox previously populated. I want to loop with a "for each / next" through all items in the CheckedListBox and do a lot of "stuff" with each iteration element of the checkedlistbox. ...
5
votes
1answer
753 views
C# Enum List/Collection on User/Web Control design time support?
I've been banging my head against a brick wall over this little problem since thursday and I'm still no nearer to an answer than I was back then.
I have a user control which has a property like this:
...
5
votes
2answers
980 views
WPF: Display HTML-based content stored in resource assembly
In my WPF project I need to render HTML-based content, where the content is stored in a resource assembly referenced by my WPF project.
I have looked at the WPF Frame and WebBrowser controls. ...
5
votes
1answer
2k views
iPhone SDK: control websites in UIWebView programmatically
I need to control a website that is loaded into a UIWebView like sending post data and using get requests. After each request the response should be loaded as a string into a variable.
The reason for ...
5
votes
4answers
1k views
What event can be captured when an HTML hidden input value is set / changed
HI,
In JavaScript when value is set to a hidden input control, which event is fired?
5
votes
1answer
679 views
(C#) Does SuspendLayout cascade to child controls?
C#: Does SuspendLayout cascade to child controls?
Do I have to iterate the child of the control myself to call suspendlayout on them?
and on their grand child? grand grand child?? grand grand grand ...
5
votes
2answers
1k views
How do I “hide” controls that my control uses from the toolbox?
I have developed a control in C#. Among other things this control can popup other controls at runtime. When you include the assembly in Visual Studio, the control that I created shows up, but the ...