2
votes
2answers
98 views
Decryption type and breaking (AES 128?)
Hi,
My question has 2 parts. The first one is "what possible type of encryption i am on" and the other is, "what is the chance of breaking it" (as soon as the encryption algorithm …
0
votes
1answer
22 views
Break the Iframe
I have an iframe on a landing page and I want to break the frame upon the viewers submit. When the viewer goes to the second page the frame cuts the image on the page is there a wa …
8
votes
12answers
737 views
How to break out of a loop from inside a switch?
Hi,
I'm writing some code that looks like this:
while(true) {
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
…
0
votes
1answer
31 views
Jquery prevent repeating animations without breaking my dropdown?
http://mmowned.org/dragon/slm/menu9.html
In an attempt to solve the animation queing in the old version (menu7.html) I tried using .stop() in the dropdown menu.
Problem is when yo …
0
votes
3answers
67 views
Cancel a timed loop in JavaScript?
I'm trying to setup a function in JavaScript to fade in or fade out some elements on my page. The fade themselves work fine, but my problem occurs when one of them tries to cancel …
0
votes
4answers
94 views
Problem using break command in Python tutorial
I'm following the python tutorial at their site and I'm currently at the break continue section. I just tried this sample code.
>>> for n in range(2, 10):
... for x i …
2
votes
9answers
235 views
How to break 2 loops in javascript?
I tried this:
for(i=0;i<5;i++)
{
for(j=i+1;j<5;j++)
{
break(2);
}
alert(1)
};
only to get:
SyntaxError: missing ; before
statement
8
votes
13answers
572 views
What is a neat way of breaking out of many for loops at once?
Suppose I need to break out of three or four nested for loops at once at the occurence of some event inside the innermost loop. What is a neat way of doing that?
what I do is use …
1
vote
4answers
73 views
Object required
function OnImageClick ()
{
var url;
switch (picNumber) {
case 0:
url = "http://www.zagreb.in/horoskop/rak.html";
break;
case 1:
url = "http://www.zagreb.in/horosko …
1
vote
1answer
106 views
is there a equivalent of Java’s labelled break in C# or a workaround
I am converting some Java code to C# and have found a few labelled "break" statements (e.g.)
label1:
while (somethingA) {
...
while (somethingB) {
i …
3
votes
3answers
131 views
yield break; - crazy behaviour
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace ConsoleApplication4
{
class Program
{
static void Main (stri …
0
votes
2answers
157 views
PHP - Break out of a frame
Is there a way to break out of a frame using PHP? I have done it with JavaScript, but I would really prefer to use PHP instead. Thank you.
0
votes
2answers
285 views
PHP long string without newline
Hi,
I have a long string in php which does not contain new lines ('\n').
My coding convention does not allow lines longer than 100 characters.
Is there a way to split my long st …
1
vote
4answers
73 views
Break tag inside of a method
I have a switch statement that executes some logic over and over. Rather then use cut and paste I wanted to put it into a function, but I am failing badly at this.
This is what I …
5
votes
9answers
547 views
Using break in nested loops
Hello everyone,
Quick question, is it proper to use the break function to exit many nested for loops? If so, how would you go about doing this? Can you also control how many loop …
