• Member Avatar for Xozz
    Xozz

    Began Watching Make a given number odd or even

    There are times when you need to make sure your counter starts at an odd or even number. Even is pretty simple - `counter = counter + modulus(counter)`. If counter …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Stuck with Yahtzee project

    Right now, I'm still busy with my Yahtzee project. The problem I face now is that code from line 63 is not executed. Can you tell why? Thanks #include <iostream> …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Hello there, this is about me

    Ah nice to meet you too! Do you know Count Count? Good luck with that one ;)
  • Member Avatar for Xozz
    Xozz

    Created Hello there, this is about me

    My name is Leon de Groot. I'm from the Netherlands (the best country in the world to live in). I started "programing" when I was 10. That's 14 years earlier. …
  • Member Avatar for Xozz
    Xozz

    Began Watching Hello there, this is about me

    My name is Leon de Groot. I'm from the Netherlands (the best country in the world to live in). I started "programing" when I was 10. That's 14 years earlier. …
  • Member Avatar for Xozz
    Xozz

    Edited PHP game: iWarz

    Hi. Years ago, I started writing a game called iWarz. It's a PHP-script. I've never finished it and I'm not sure if I ever will. But what I can do …
  • Member Avatar for Xozz
    Xozz

    Created PHP game: iWarz

    Hi. Years ago, I started writing a game called iWarz. It's a PHP-script. I've never finished it and I'm not sure if I ever will. But what I can do …
  • Member Avatar for Xozz
    Xozz

    Began Watching PHP game: iWarz

    Hi. Years ago, I started writing a game called iWarz. It's a PHP-script. I've never finished it and I'm not sure if I ever will. But what I can do …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Stuck with Yahtzee project

    That's alright. I'll remember it for the next time
  • Member Avatar for Xozz
    Xozz

    Edited Stuck with Yahtzee project

    Hello. I'm stuck with my Yahtzee project. The first five lines are filled with a brief explanation of the case. Please read them /* I'm writing Yahtzee in C++. So …
  • Member Avatar for Xozz
    Xozz

    Created Stuck with Yahtzee project

    Hello. I'm stuck with my Yahtzee project. The first five lines are filled with a brief explanation of the case. Please read them /* I'm writing Yahtzee in C++. So …
  • Member Avatar for Xozz
    Xozz

    Began Watching Stuck with Yahtzee project

    Hello. I'm stuck with my Yahtzee project. The first five lines are filled with a brief explanation of the case. Please read them /* I'm writing Yahtzee in C++. So …
  • Member Avatar for Xozz
    Xozz

    Created Errors compiling my project

    While compiling my Yahtzee project I get these errors: ||=== Build: Debug in Yahtzee (compiler: GNU GCC Compiler) ===| ld.exe||cannot open output file bin\Debug\Yahtzee.exe Permission denied| ||error: ld returned 1 …
  • Member Avatar for Xozz
    Xozz

    Began Watching Errors compiling my project

    While compiling my Yahtzee project I get these errors: ||=== Build: Debug in Yahtzee (compiler: GNU GCC Compiler) ===| ld.exe||cannot open output file bin\Debug\Yahtzee.exe Permission denied| ||error: ld returned 1 …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Char[][] for value list

    There's some knowledge about C++ left in my mind. That's how your reply helped me out.
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Char[][] for value list

    I entered this line: #include <string> and made FieldNam a string. Now it works. Thanks
  • Member Avatar for Xozz
    Xozz

    Created Char[][] for value list

    I'm busy writing Yahtzee. Now, I want to fill a const char[] with the field names: 1's, 2's, 3's, ..., "Full House" "Small Straight" etc. But I get this errors …
  • Member Avatar for Xozz
    Xozz

    Began Watching Char[][] for value list

    I'm busy writing Yahtzee. Now, I want to fill a const char[] with the field names: 1's, 2's, 3's, ..., "Full House" "Small Straight" etc. But I get this errors …
  • Member Avatar for Xozz
    Xozz

    Created Sharing a compiled program

    I just wrote a simple C++ program. But now I want to share it with a friend and GMail doesn't allow me to use it and putting it on a …
  • Member Avatar for Xozz
    Xozz

    Began Watching Sharing a compiled program

    I just wrote a simple C++ program. But now I want to share it with a friend and GMail doesn't allow me to use it and putting it on a …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Using global variables

    Sorry :P Here it is #include <iostream.h> #include <stdlib.h> using namespace std; global int Test; int main() { Test = 5; cout << "Test contains: " << Test; return 0; …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Using global variables

    To be a little more specific: I get this error message error: 'global' does not name a type
  • Member Avatar for Xozz
    Xozz

    Created Using global variables

    Hello, While trying to get back into programming, I come across problems. The first one is: Why can't I work with global variables? Is there a new way of doing …
  • Member Avatar for Xozz
    Xozz

    Began Watching Using global variables

    Hello, While trying to get back into programming, I come across problems. The first one is: Why can't I work with global variables? Is there a new way of doing …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Writing PHP in OpenElement

    The cause of the problem was: no prefix. n should be $n. So that's that with the code. Problem 2 is: I can't upload the files to an FTP server. …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Writing PHP in OpenElement

    With this code: echo( "Hello universe" ); for( n = 0; n < 5; n++ ) { echo("A"); } With 'preview' I get this: Parse error: syntax error, unexpected '=', …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Configuring the compiler in Code Blocks

    Thank you! I have it running now. Tomorrow I will write my first program
  • Member Avatar for Xozz
    Xozz

    Marked Solved Status for Configuring the compiler in Code Blocks

    Hi. I just installed Code Blocks. I want to just get started with programming. It seems that I have to configure Code Blocks therefore, setting up a compiler. How should …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Configuring the compiler in Code Blocks

    I need to know how to set it up so that I can write programs with it
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Writing PHP in OpenElement

    Additionally: OpenElement allows you to preview pages with a webserver function. This way it works a little bit, not completely. By publishing the pages on a domain it doesn't work …
  • Member Avatar for Xozz
    Xozz

    Created Configuring the compiler in Code Blocks

    Hi. I just installed Code Blocks. I want to just get started with programming. It seems that I have to configure Code Blocks therefore, setting up a compiler. How should …
  • Member Avatar for Xozz
    Xozz

    Began Watching Configuring the compiler in Code Blocks

    Hi. I just installed Code Blocks. I want to just get started with programming. It seems that I have to configure Code Blocks therefore, setting up a compiler. How should …
  • Member Avatar for Xozz
    Xozz

    Created Writing PHP in OpenElement

    My question is this: I'm trying to practice PHP. I use OpenElement as my editor. You can get to know this program through this website: https://www.openelement.com/ Problem is: when I …
  • Member Avatar for Xozz
    Xozz

    Began Watching Writing PHP in OpenElement

    My question is this: I'm trying to practice PHP. I use OpenElement as my editor. You can get to know this program through this website: https://www.openelement.com/ Problem is: when I …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Mounting ISO files

    In the passed they worked.
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Mounting ISO files

    I tried a couple of programs in Windows 10 and Windows 7 and the result is always the same: "Cannot do this"
  • Member Avatar for Xozz
    Xozz

    Gave Reputation to DonG. in Mounting ISO files

    Another good, free option is ImDisk (https://sourceforge.net/projects/imdisk-toolkit/). It lets you mount CD, HDD, and FDD images.
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Mounting ISO files

    Alright.. I posted this one earlier. https://www.daniweb.com/hardware-and-software/microsoft-windows/threads/519868/mounting-iso-files-in-windows-7#post2251847
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Label my own topics [xozz]

    Never mind. I didn't see how to get to my own posts, but I've seen it now. Apologies. You can delete this post if you want.
  • Member Avatar for Xozz
    Xozz

    Created Label my own topics [xozz]

    Is it allowed to put a lable on my own topics, so that I can find them easier? An example would be this very topic.
  • Member Avatar for Xozz
    Xozz

    Began Watching Label my own topics [xozz]

    Is it allowed to put a lable on my own topics, so that I can find them easier? An example would be this very topic.
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in USB-sticks don't work

    The USB-drivers show up in device manager. Other devices work on USB. I have a couple of USB-sticks and they all don't work. Right now, the only thing I didn't …
  • Member Avatar for Xozz
    Xozz

    Created USB-sticks don't work

    I have Windows 10 on a Lenovo T500. And no USB-stick works. How can this be solved? Thank you
  • Member Avatar for Xozz
    Xozz

    Began Watching USB-sticks don't work

    I have Windows 10 on a Lenovo T500. And no USB-stick works. How can this be solved? Thank you
  • Member Avatar for Xozz
    Xozz

    Created Mounting ISO files

    Hello, I'm trying to mount an ISO file. I tried a couple of applications to do this (four of them) but nothing works. I'm using Windows 10. I know that …
  • Member Avatar for Xozz
    Xozz

    Began Watching Mounting ISO files

    Hello, I'm trying to mount an ISO file. I tried a couple of applications to do this (four of them) but nothing works. I'm using Windows 10. I know that …
  • Member Avatar for Xozz
    Xozz

    Replied To a Post in Mounting ISO files in Windows 7

    I have another package that I would like to mount but the results are the same. So it's possible that both are corrupt. But I'm still hoping that there is …
  • Member Avatar for Xozz
    Xozz

    Created Mounting ISO files in Windows 7

    I made a list of applications that don't enable me to mount ISO-files. Here: PowerISO doesn't mount Virtual CloneDrive doesn't mount ISODisc doesn't mount KernSafe doesn't mount OSFMount doesn't mount …
  • Member Avatar for Xozz
    Xozz

    Began Watching Mounting ISO files in Windows 7

    I made a list of applications that don't enable me to mount ISO-files. Here: PowerISO doesn't mount Virtual CloneDrive doesn't mount ISODisc doesn't mount KernSafe doesn't mount OSFMount doesn't mount …
  • Member Avatar for Xozz
    Xozz

    Created Encrypting some megabytes

    Hello. I have a question: I have a portable harddisc, with files on it. Now I want to encrypt a certain folder on it. It contains a couple of files …

The End.