Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
continue
- Page 1
McCharts - ArkTS
Programming
Software Development
2 Months Ago
by 杨_659
…. Draw the y axis. Next is our y axis, and
continue
to analyze the overview diagram. From the figure, we can…
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
2 Months Ago
by Anonymous_2133
I have always been a fan of the Office 2000 shortcut bar. It has been on my windows desktop since I got it, up until Windows 10 19H2 (RIP). If you are still looking for a replacement, try searching for "Quick Pick" by "Automation in Motion". Use the double quotes or you will have to wade through many pages of irrelevant results.
Re: Custom Media Server
Hardware and Software
Linux and Unix
1 Month Ago
by Vince_6
I used Plex and a Mac for years to stream to my TV. When I switched to linux, PLex ran but couldn't find my media directories. I finally found a product called Emby. It has a server that runs and aps for many different divices. It even has one for my FireTV. Works great.
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
1 Month Ago
by themadrastiffin
The shortcut bar in MS Office may not appear, may not open or may run slowly if you restart, repair or reinstall the program.
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
1 Month Ago
by asadalikhan
Nick, this issue sounds like a file association problem. Your URL shortcuts on the shortcut bar are likely opening with the wrong program (like a printer handler). Here’s a quick fix: 1. Go to Control Panel > Folder Options > File Types 2. Find and select .URL 3. Click Advanced and ensure it’s set to open with Internet Explorer (…
Re: Problem with MS Office shortcut bar
Hardware and Software
Microsoft Windows
1 Month Ago
by asadalikhan
Nick, it’s likely a file association issue. Reassign `.url` files to open with Internet Explorer in Folder Options > File Types. That should fix the shortcut bar behavior.
Re: continue after throwing exception
Programming
Software Development
15 Years Ago
by Ancient Dragon
continue
program exception in the catch block. [code] void foo() { cout &… an excetption Exception caught Ending program Press any key to
continue
. . . [/quote] [edit]And what ^^^ said. He beat me to it…
Continue statement and alternatives
Programming
Software Development
16 Years Ago
by zoner7
… is that, in the below code, the
continue
statements effectively do nothing and put my code right…Board [row][column] == Board [n][column]) { if (n == row) {
continue
; } return false; } HERE if (Board [row][column] == Board [row][…
Re: Continue statement and alternatives
Programming
Software Development
16 Years Ago
by bugmenot
…My suspicion is that, in the below code, the
continue
statements effectively do nothing and put my code right …before the return false statements.[/QUOTE] No. "
continue
" skips the remaining iteration of the loop (in this… (at least for the first big if block, "
continue
" would skip the second big if block entirely). …
Continue/Break program flow controlls
Programming
Software Development
16 Years Ago
by Superfat
… i keep getting an error: [code]
continue
statement not within a loop or a switch…n" << "Press Y to
continue
."; int loopcount = 20; char yes; cin…lt; endl; } while(loopcount--); { if(loopcount < 0); {
continue
; } if(loopcount == 0); { break; } } system("PAUSE"…
Re: Continue statement and alternatives
Programming
Software Development
16 Years Ago
by Nick Evan
…;621213]My suspicion is that, in the below code, the
continue
statements effectively does nothing and put my code right before…
Re: continue and scanf
Programming
Software Development
14 Years Ago
by pheininger
…0 || day > 31) { printf("Invalid Date\n");
continue
; } sprintf(day_str, "%2d", day); read_line(msg_str, MSG_LENGTH); … long the way. For example, the following code eliminates the
continue
. [code] /* Get a day between 0 and 31. */ do …
Continue double value
Programming
Software Development
15 Years Ago
by qkslvr1621
…' keep adding to itself after the do you want to
continue
question. Right now it clears it everytime after it asks…;< endl; cout << " Do you want to
continue
(Y/N)? "; cin >> answer; } while (answer == 'Y…
continue not working in a for loop
Programming
Software Development
14 Years Ago
by plasticfood
[CODE]for(int i = 0; i < floorNum; i++){ if(floorNum == 12){
continue
; { statements; statements; statements; }[/CODE] ------------------- if there anything wrong with this statement? i've tried using a while loop and the
continue
statement would work and skip number 12, but this doesn't work.
Continue and break statement
Programming
Web Development
13 Years Ago
by aecha
… it possible to do break statement first then to the
continue
statement? Like example, I want to do counting and have… a break at the certain time then
continue
the counting back and stop back.Is it possible for…
Re: Continue and break statement
Programming
Web Development
13 Years Ago
by aecha
… rest time I don't want the system counting and
continue
the counting after the break.I don't have any… so that they can start counting and have break and
continue
automatically without interfere any user.Can you help me?I…
Continue loop
Programming
Software Development
10 Years Ago
by mustafa.bahaa
… i was trying to do simple do you want to
continue
loop using do while loop the problem is the program… is even\n"); printf("Do you want to
continue
(Y / N )? "); scanf_s ("%c", &answer); } while…
continue(y/n) problem?
Programming
Software Development
10 Years Ago
by DS9596
It lets me
continue
the loop but it won't let me enter a …; << Wc << endl; cout << "
CONTINUE
(y/n)? "; cin.get(response); } while(response == 'Y' || response…
Re: Continue double value
Programming
Software Development
15 Years Ago
by Protuberance
…;< endl; cout << " Do you want to
continue
(Y/N)? "; cin >> answer; } while (answer == 'Y…
Re: continue not working in a for loop
Programming
Software Development
14 Years Ago
by Narue
You probably want to compare i against 12 rather than floorNum: [code] #include <iostream> int main() { for (int i = 0; i < 20; i++) { if (i == 12)
continue
; std::cout<< i <<'\n'; } } [/code]
Re: Continue loop
Programming
Software Development
10 Years Ago
by aizam76
… is even\n"); printf("Do you want to
continue
(Y / N )? "); scanf_s ("%c", &answer); } while…
Re: Continue loop
Programming
Software Development
10 Years Ago
by Hiroshe
… to end the program. */ printf("Press any key to
continue
..."); getchar(); return 0; }
Re: continue(y/n) problem?
Programming
Software Development
10 Years Ago
by NathanOliver
… it never gets executed and then you are asked to
continue
again. To fix this you need to get rid of…
Continue to url after form submit
Programming
Web Development
17 Years Ago
by tlctara
… the form to the server (it does), but then to
continue
to a payment page. I can't figure out how…
continue after throwing exception
Programming
Software Development
15 Years Ago
by thornside
Hi, I need to know how to
continue
execution of code after throwing an exception. Has it got to do with where I place the throw statement? Thanks in advance.
continue and scanf
Programming
Software Development
14 Years Ago
by creeps
…; 0 || day > 31) { printf("Invalid Date\n");
continue
; } sprintf(day_str, "%2d", day); read_line(msg_str, MSG_LENGTH); for…
Re: continue and scanf
Programming
Software Development
14 Years Ago
by creeps
…; 0 || day > 31) { printf("Invalid Date\n");
continue
; } sprintf(day_str, "%2d", day); read_line(msg_str, MSG_LENGTH); for…
continue session
Programming
Web Development
14 Years Ago
by freddyvorhees
Hello! I want to
continue
a session even after the browser was closed. What I want to do is to remember the host, username, password, of mysql. Whats the trick?
Re: continue session
Programming
Web Development
14 Years Ago
by maba001
[QUOTE=freddyvorhees;1358338]Hello! I want to
continue
a session even after the browser was closed. What I …
Re: why continue is not working inside if statement ?
Programming
Software Development
13 Years Ago
by adarshcu
continue
and break are for loops. Not for condition statements.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC