Tagged Questions
The breaks tag has no wiki summary.
34
votes
3answers
65k views
How do I break out of a loop in Perl?
I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying:
Bareword "break" not allowed while
"strict subs" in use at ...
13
votes
2answers
4k views
'break' equivalent keyword for VB
Just moved over to the VB team here at work.
Quick easy one for my 1st question.
What is the equivalent keyword to break in VB, i.e., to exit a loop early but not the method?
Cheers!
12
votes
5answers
2k views
“Undo” feature in Visual Studio 2008 stops working
I'll be coding along in Visual Studio 2008, and eventually I make a mistake. I press CTRL-Z to undo and NOTHING HAPPENS. I'm not talking about anything complicated, like undoing a search and replace ...
6
votes
7answers
4k views
Which browsers support page break manipulation using CSS and the page-break-inside element?
I'm trying to use the page-break-inside CSS directive, the class of which is to be attached to a div tag or a table tag (I think this may only work on block elements, in which case it would have to be ...
4
votes
12answers
1k views
How long do you program before you (need to) take a break?
I'm only a hobbyist programmer, so maybe my body isn't used to it. But I've found that I can only code for a few hours (usually 3) before I need to take a break.
I move around quite a bit while I'm ...
4
votes
3answers
987 views
Ruby blocks/Java closures in C
I've been trying to understand how Ruby blocks work, and to do that I've been trying to implement them in C (^_^).
One easy way to implement closures is to pass a void* to the enclosing stack to the ...
2
votes
1answer
41 views
Design Breaks in IE7 and Links Don't work in Firefox
I seem to be having two problems:
My top nav bar links don't work in Firefox
The design breaks in IE7.
Any help would be much appreciated! I have validated it, and I know the slider and video ...
2
votes
1answer
80 views
SetItemCheckState breaks foreach! Help?
I'm new here and have a question about C#'s CheckedListBox.
I built the CheckedListBox with data from a SQLite Database file.
I want the user to check or uncheck items and in doing so it updates in ...
1
vote
2answers
90 views
Doubling breaks after removing <br> and leaving just text
After I perform following:
var noTags = document.createElement("DIV");
noTags.innerHTML = html;
noTags.textContent // <- I put this into any textarea
and this text:
text test ...
1
vote
3answers
131 views
Not seeing line breaks in CSS code .load()ed via jQuery
I am using jQuery to .load() the contents of a CSS file into a div. But when the contents of that file are loaded, all the line breaks, tabs, etc. are gone. Is there a way to do a load of a css file ...
1
vote
4answers
249 views
How can I properly parse my file? (Using break/continue)
I have the following data that looks like this for example:
34 foo
34 bar
34 qux
62 foo1
62 qux
78 qux
These are sorted based on the first column.
What I want to do is to process ...
1
vote
5answers
258 views
Work Breaks & Eye condition [closed]
I've found this tips great. But some years ago, I had some programs that popped up an alert every hour or so (Tea Break or something like that was the name of the program).
Does anybone know a good, ...
0
votes
2answers
90 views
Javascript to reduce line breaks to two?
I'm using the following javascript:
if (theSelection)
{
for (var i = 0, l = theSelection.length; i < l; i++)
{
if (theSelection[i] == '[' && theSelection[i+1] == ...
0
votes
1answer
126 views
Prototype Ajax.Request not working in google chrome browser version 14.0.835.163 onwards
I have been using prototype's Ajax.Request for making ajax calls.
With the new versions of google chrome browser,this call seems to be breaking.
The onLoading function of Ajax.Request seems to be ...
0
votes
1answer
48 views
WPF TreeView virtualization breaks as soon as anything is added to the window
Virtualization works when the TreeView is the only thing in the Window. For example:
<Grid>
<vw:FontTreeView x:Name="fontTreeViewControl" VerticalAlignment="Stretch" ...
0
votes
1answer
126 views
Working hyperlink breaks upon page redirection back to original page
I am playing a sound by the click on a link, I know not beautiful but it works.
Well ran into a new problem today sound did not play the first time I clicked the link... But back to the question at ...
0
votes
4answers
2k views
Help Reading Line Breaks In A Text File
I have a TXT file that i need to import via an application, but for some reason i need to open it in wordpad first and then save it before importing it. I'm guessing it has to do with Line Breaks. ...