0
votes
2answers
32 views
Debug, what’s wrong with “$(’#q li:last’).remove();”
I want to remove the last <li></li>, below is the code:
<div id="q">
<ul><li>
<table><tr><td>Question 1</td><td> …
1
vote
4answers
55 views
C# show browsable child properties in designer
Hi,
I'm using .NET C# with standard WinForms, not WPF.
I have this situation.
I'm creating a user control for a month calendar, similar to the .NET one but with a little more func …
0
votes
1answer
75 views
Jquery mouseover/mouseout triggering inconsistently
I have two sortable lists, one being nested, with a mouse over effect on the li elements of the nested sortable list. My problem is that the mouseover and mouseout functions are b …
0
votes
1answer
64 views
Remove Javascript/ChildElement from WebBrowser Control
I am using below code to inject javascript
HtmlElement head = _wb.Document.GetElementsByTagName("head")[0];
HtmlElement scriptEl = _wb.Document.CreateElement("script" …
2
votes
3answers
110 views
In perl, killing child and its children when child was created using open
Here's my code, with error handling and other stuff removed for clarity:
sub launch_and_monitor {
my ($script, $timeout) = @_;
sub REAPER {
while ((my $child = …
18
votes
8answers
31k views
jQuery $(this) selector and children?
I'd like to use a selector to select the child img of the div I'm clicking on this example:
<div id="..."><img src="..."></div>
To get t …
-2
votes
0answers
33 views
ASTNode (Generating Error)
public abstract class ASTNode {
public abstract Object visit(Visitor v, Object info) throws LogoException;
}
public abstract class ASTNode0 extends ASTNode {
LogoVal va …
0
votes
0answers
16 views
Triggers on ScrollViewer child controls
I have a the following code for a ScrollViewer in my Silverlight app. The BasketSymbolsView control contains controls that have custom double click triggers applied to them. For …
0
votes
3answers
178 views
jquery if div id has children
if (div id=myfav has children){
do something
} else {
do something else
}
The if condition is what's giving me trouble. I tried all the following:
if ( $(' …
2
votes
3answers
146 views
C# - Prevent duplicate MDI children forms
Is there a way to prevent the opening of a certain form within an MDI container if that said form is already opened? Thanks.
33
votes
40answers
2k views
Suggestions on starting a child programming.
What languages and tools do you consider a youngster starting out in programming should use in the modern era?
Lots of us started with proprietary Basics and they didn't do all of …
0
votes
2answers
64 views
Silverlight Canvas children collection changed
Is there a way to Catch if the childrencollection of a canvas in Silverlight has changed? (when a child is added or removed)
I know the ObservableCollection has such an event, how …
19
votes
26answers
2k views
“Programming” for a 9 year old
I am looking for recommendations on a web site/software for providing an introduction to programming concepts for my 9 year old.
I remember using Logo/turtle graphics at a simil …
1
vote
2answers
67 views
jQuery vs. prototypeJS; size children
I currently work on a magento webshop, which loads PrototypeJS as framework.
However i need jQuery at some point to do some custom stuff.
jQuery is loaded after prototype and run …
0
votes
4answers
188 views
How can I get the child windows of a window given its HWND?
I have the handle for a given window. How can I enumerate its child windows?
