-
Replied To a Post in Trump
>Good manners is a good thing, usually... Usually. We had a thing a few months back where Trudeau had an "altercation" in Parliament where he elbowed another member. He apologized … -
Replied To a Post in Norton Ghost 15
You can also set up schedules to do images. I do a full image on the first of each month and a differential every other day. I could also set … -
Replied To a Post in Develop a C++ program that finds the minimum of 4 even numbers
Whitespace, properly used, increases code readability. Whitespace, used improperly, decreases readability, and can often introduce bugs. -
Replied To a Post in Trump
>Canada values good manners more than the US I dunno. I would have thought that as well but after a few years of "my way or the highway" Stephen Harper … -
Replied To a Post in Norton Ghost 15
Once you have Reflect running you can go to Other Tasks -> Create Rescue Media From there you can create a bootable USB or DVD. The first time you do … -
Replied To a Post in Change Markdown Syntax Page
100th paragraph? What are you looking at? I see a short page with a few simple examples. -
Replied To a Post in help please
There is no "API" for c or VB6 or for any other language, for that matter. API stands for Application Programming Interface. The keyword here is "Application". You develop an … -
Replied To a Post in Specify a language or starting/ending line numbers to code?
Markdown syntax is not as flexible as BBSCode but it is much easier to use, especially for edits-after-the-fact - as anyone who had to do word processing in the pre-wysiwyg … -
Edited Specify a language or starting/ending line numbers to code?
Consider my post in this thread... https://www.daniweb.com/programming/software-development/threads/508038/how-to-change-this-program-to-fully-oop Consider this code... int main() { srand(time(NULL)); char enter; // game starts Player player; // title cout << "Welcome to Zombie War." << … -
Replied To a Post in Memorable Quotations
You can't con people, at least not for long. You can create excitement; you can do wonderful promotion and get all kinds of press, and you can throw in a … -
Replied To a Post in transactions and user table query
Please show us the schema of the two tables. -
Replied To a Post in If I donate, will the people who answer get part of money?
I'm not motivated by the rewards feature. I will answer a question if - The question is explained clearly - The OP has shown effort to answer it him/herself - … -
Replied To a Post in What is DOM?
Yes. It's the description of the structure and API (application programming interface) of a document. For details please see the [w3 description](https://www.w3.org/TR/DOM-Level-2-Core/introduction.html). -
Replied To a Post in Looking for a particular type of functional programming examples
I took APL in my second year of Comp Sci and loved it. I used it on almost all my numerical analysis courses after that (I still play with it … -
Replied To a Post in Looking for a particular type of functional programming examples
>They also say that once you learn how to think the C way you'll be able to program in every other single language because they are mostly the same. That … -
Replied To a Post in Caesar cipher in python
A Ceasar cyper encodes by shifting letters in one direction, and decodes by shifting in the opposite direction. `key` is the number of places to shift. If the user wants … -
Edited Caesar cipher in python
I am doing a mini project on Caesar cipher, I found one program but can't understand the 29th line "key = -key". Please help me. # Caesar Cipher MAX_KEY_SIZE = … -
Replied To a Post in Norton Ghost 15
>unless you were expecting a link to some pirated version In case the OP didn't notice, Macrium Reflect is **FREE** for personal use and does cloning (plus a lot of … -
Replied To a Post in What is CORS?
It's [this](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing). -
Edited email(), but not receive mail
function email($reqNo){ //Database Configurations $host = "some.url"; $username = "someuser"; $pass = "xxxxxx"; $db = "mydatabase_db"; //Customer Configurations $cName = null; $cEmail = null; $DBConnect = @mysqli_connect($host, $username, $pass, $db) … -
Edited Read from Text file into Struct Array C++
Hello, So I am trying to read a text file into an array, but I am having issues breaking it up properly. Here is my text file: 0 Car Fixed … -
Edited email(), but not receive mail
function email($reqNo){ //Database Configurations $host = "some.url"; $username = "someuser"; $pass = "xxxxxx"; $db = "mydatabase_db"; //Customer Configurations $cName = null; $cEmail = null; $DBConnect = @mysqli_connect($host, $username, $pass, $db) … -
Edited Which design pattern to use
Hi guys, as I have never used any design pattern I thought I might try to learn something by developing a small application. What I'm thinking is something like a … -
Replied To a Post in Trump
We have guy up here in Canada, Kevin O'Leary, who is a former panelist on two venture capitalist "reality" TV shows. He is currently running for leader of the Progressive … -
Replied To a Post in If statement Error ?
Further... The `if` statement expects an expression that evaluates to `true` or `false`. The statement if (app.activeDocument.pathItems[0].filled == true) could be better written as if (app.activeDocument.pathItems[0].filled) -
Replied To a Post in Questions on Objects and Classes
For public void adjustSalary(double percentage) how do you specify the percentage? If you are giving percentage as a number from 0-100 then you have to use the calculation this.monthySalary = … -
Revoked Solved Status for Questions on Objects and Classes
Hello everyone, I have a reall small questions and i am stuck in the end of my code. I need just someone explane it to me please or maybe i … -
Edited Python Pseudo Code
Can anyone please help me to convert the Pseudo code to python code? receiveFile () { lastblock := 0 newblock := 0 ; repeat repeat event := getFrameFromUDP(m) ; case … -
Replied To a Post in Is there a way to detect garbage value?
You can't define what is a garbage value any more than you can write down all the wrong answers to a question. You decide what constitutes a correct value and … -
Edited Sine wave many cycles C
Task is is to ask the user if they want to calculate a sine wave. Should specify how many cycles of sine wave to include in the plot. -
Replied To a Post in Norton Ghost 15
I don't have a link for the version you are looking for but I think you would be much better off using the free version of [Macrium Reflect](https://www.macrium.com/reflectfree). -
Replied To a Post in Computing the brightness of a binary star.
>Use the value of PI = 3.14285714 To 8 decimal places, the value of PI is 3.14159265. What is the point of using 8 decimal places when your third place … -
Replied To a Post in DaniWeb breaking links in posts
That's odd because I posted it and it seemed fine. Then I refreshed the page and it was still fine. Perhaps there is some post-post-processing going on. Is there some … -
Replied To a Post in presentation loads with error
You can also [click here](https://support.microsoft.com/en-gb/help/927477/how-to-troubleshoot-a-damaged-presentation-in-powerpoint-2007-and-powerpoint-2010) to get to the same site. -
Replied To a Post in DaniWeb breaking links in posts
OK. It displays correctly and the link works. Maybe that's the secret - use `[]` and `()` to embed the link. -
Replied To a Post in DaniWeb breaking links in posts
Let's see what happens if you embed the link [like this](https://support.microsoft.com/en-gb/help/927477/how-to-troubleshoot-a-damaged-presentation-in-powerpoint-2007-and-powerpoint-2010). -
Replied To a Post in Windows 10 Freezes
>Windows keeps encouraging me to switch to Edge Yeah. Don't. >You have pressed the space bar. Would you like to make Edge your default browser? Microsoft is not known for … -
Edited Which tutorial should I pick out of these (member reg, login site) ?
Programming Buddies, Looking at the following links, can you be kind enough to tell me which one I should learn from and which one teaches what method (mysqli, pdo, etc.) … -
Replied To a Post in Creating Monthly payment Visual Basic 6.0
It is possible. I haven't done any serious database work now for over ten years, but that was almost the exact technique I used to manage a set of tables … -
Replied To a Post in Memorable Quotations
All the problems we face today in the United States can be traced to an unenlightened immigration policy on the part of the American Indian. - Pat Paulsen -
Replied To a Post in bank word
One of the flay rod's apparently gone out of skew on the treadle. -
Replied To a Post in Oops, you don't have permission to post here
Every time I click on the link in [this post](https://www.daniweb.com/community-center/daniweb-community-feedback/moderators-place/threads/507783/under-attack#post2217174) I get the same message. -
Replied To a Post in introduction
Engrish as she is spoke, indeed. -
Replied To a Post in bank word
It's a George Carlin reference. I figured if the OP was going to post nonsense then I'd reply the same. -
Replied To a Post in Barcode system - Visual Basic
Instead of `Barcode(a) = line(0)` you should use `Barcode(a) = Trim(line(0))`. This will strip off leading and trailing blanks. -
Edited Hello, i'm new here.
i would like to ask, how to make program for stepper motor with driver for arduino? make it reverse and forward. -
Replied To a Post in Memorable Quotations
There's nothing more scary than watching ignorance in action. - Tom Smothers -
Replied To a Post in bank word
Bootros gorney quatro fleen? -
Edited How to read a line from a file input into a string?
i have a problem where i need to read lines of names from a file, and put the first line into a string then break up that string into three … -
Replied To a Post in Wording on Sign Up / Log In page
Definitely option 3.
The End.