Search results

  1. W

    A Basic Introduction To Perl

    A Basic Introduction To Perl Content table: 1. How should we start using Perl? 2. Printing 2.1 How to print text? 2.2 How to print variables? 3. Mathematics 4. Statements 4.1 If, else 4.2 For-loop 5. Input 6. Example 7. End NOTE: Do not copy this tutorial unless you have my permission (by...
  2. W

    Tutorial: A small introduction to C++

    Tutorial: A small introduction to C++ This tutorial will only cover some main knowledge. After you have fully read it you should be able to create your own small programs, know the basics of C++ coding, and be able to use that base to continue and experimenting further into the language. So i...
  3. W

    My journey to sell coffee trough list building

    Hey guys! I have been on these forums for quite some while now and for me it is time to start taking action. I decided to start this thread to keep me motivated and maybe to get some good tips/suggestions :p I have a small coffee roasting business and my plan is to start building an e-mail...
  4. W

    Code snippit: Basic button handler

    Don't ask me why i needed this, i was just amazingly bored, but it might be usefull for some people /* Button Handler By WinBoot */ int mouse_x; /* You still have to define this */ int mouse_y; /* You still have to define this */ char *storedKeyNames[256] = { /* n° */ /* Name...
  5. W

    Tutorial: How to write 'Hello World' using Win32 api

    Everyone probably knows the 'Hello world' code when you started coding. It is the first turorial you should read whenever you start a new coding language. As i haven't read any 'Hello world' example written for use in Windows, i thought i might just write my own tutorial, so here it is...
  6. W

    Code snippit: trial expire

    //================================================================================== int daysInMonth( int curMonth ) { if ( curMonth == 1 || curMonth == 3 || curMonth == 5 || curMonth == 7 || curMonth == 8 || curMonth == 10 || curMonth == 12) return 31; else if ( !(...
  7. W

    WIN32 Window Handler v2

    Added: * Password handle * Text input retrieval #include "Handling.h" handler Handling; //================================================================================ void handler::savePosition( int x, int y, int w, int h, int number ) { cHandler[ number ].x = x; cHandler[...
  8. W

    Simple-tags problem

    Hi all, I'm quite new here actually but reading and learning a lot. I have quite some experience with Wordpress now but never before to make money out of it. Now that i'm trying to use this Simple-tags plugin to work together with BHWP it doesn't seem to work. It's totally setup and...
Back
Top