Author Topic: Need a Tutorial?  (Read 1651 times)

0 Members and 1 Guest are viewing this topic.

Offline ferrari12508

  • Charter Member
  • Full Member
  • *
  • Posts: 418
  • Field: -
  • Real Name: Brian Scanlon
  • Favorite OS: Windows
  • Programming Language: -
Need a Tutorial?
« on: October 29, 2008, 03:22:44 AM »
If you need a tutorial written, please inquire about it here. As they are written, I will delete posts requesting them. Do not post here saying "I have a project due for a class" or "Can you hurry up, I'm on a deadline". We are not a paid service and members do the requested tutorials as they feel they need to. If you are still in a rush, you could search for a service where you pay for the work, but we dont do that here. Please be specific with your tutorial and have a nice day!

hamburgermax - Wants a part 2 to the "Creating a wysiwyg Editor" here
« Last Edit: November 03, 2008, 10:14:45 PM by ferrari12508 »


Offline gbertoli3

  • Expert
  • Sr. Member
  • *
  • Posts: 1,169
  • My Code Is In The Cube
    • Bertoli Family
  • Field: Software & Web Development
  • Real Name: Guido Bertoli
  • Favorite OS: Windows
  • Programming Language: C#
Re: Need a Tutorial?
« Reply #1 on: December 24, 2008, 12:17:17 AM »
Regex Tutorial

I would love to learn how to format Strings and other data by using the Regex. I've always seen the "[\n*-\r\\b*&^]", but have never known what that meant or how to go about coding something like this.

Offline JakeWindu

  • Contributor
  • New TCC Member
  • *
  • Posts: 13
  • Programmer
    • Meteor
  • Field: Software & Web Development
  • Real Name: Bob Smith
  • Favorite OS: Windows
  • Programming Language: C#
Re: Need a Tutorial?
« Reply #2 on: January 28, 2010, 08:40:40 PM »
Would it be possible for someone to create a tutorial to create an activation system so when you start the software for the first time the program asks for an activation code. You enter one and the software checks if its right. If it is, then it lets you use the software and doesnt ask for the activation key again. If the key is wrong then it makes you enter the key again and again until the key is right.

Offline AJ32

  • TCC Webmaster
  • Administrator
  • Cube Head
  • *
  • Posts: 1,403
  • "TCC Fuhrer"
    • Fox Software
  • Field: Software & Web Development
  • Real Name: Andrew Warner
  • Favorite OS: Windows
  • Programming Language: PHP
Re: Need a Tutorial?
« Reply #3 on: January 28, 2010, 08:55:55 PM »
I wrote an activation system for some of our software that we designed (C#), but that was a while ago. Someone else here might have a solution on hand. I've been way too busy lately, but If I get some free time at the computer I'll see what I can pull up for you!

Welcome to TheCodeCube!
Hope to see you around the forums! :)

"Data is eternal, immortal, immutable. Even when the engineers and intelligence
behind its creation are gone, information, facts, and knowledge never die."

Offline gbertoli3

  • Expert
  • Sr. Member
  • *
  • Posts: 1,169
  • My Code Is In The Cube
    • Bertoli Family
  • Field: Software & Web Development
  • Real Name: Guido Bertoli
  • Favorite OS: Windows
  • Programming Language: C#
Re: Need a Tutorial?
« Reply #4 on: January 29, 2010, 10:24:20 PM »
I've never created an activation system, but you could always keep the serial numbers in a database of some sort(whether it be online or offline), then query the database for the matching serial number that is inputted into a text box. You may also want to create some type of Key Generator for your use only. Use this to create the keys for your program. Make sure you include a-z,A-Z,1-9, and if you want symbols too.

Hope this helps you get started.

Welcome to TCC!

Offline shivam dhoot

  • New TCC Member
  • *
  • Posts: 2
  • CodeCube Member
  • Field: Software Development
  • Real Name: shivam dhoot
  • Programming Language: C#
Re: Need a Tutorial?
« Reply #5 on: July 01, 2011, 06:28:02 AM »
I would like to learn how to take input a graph

Offline Simon6Sweet

  • New TCC Member
  • *
  • Posts: 1
  • CodeCube Member
  • Field: Software Development
  • Real Name: Simon Sweet
  • Favorite OS: Windows
  • Programming Language: -
Re: Need a Tutorial?
« Reply #6 on: July 04, 2011, 08:05:15 AM »
Wanted to something about C++ global class varible definition.

Offline ondrovic

  • New TCC Member
  • *
  • Posts: 1
  • CodeCube Member
  • Field: IT Support
  • Real Name: Chris Ondrovic
  • Programming Language: C#
AutoUpdater
« Reply #7 on: March 29, 2013, 05:57:51 PM »
I am looking for a good tutorial on how to make and standalone updater executable for a standalone application. All I can seem to find is
Quote
Use OneClick
or
Quote
WyBuild plus their Updater
.

Here is what I am looking at doing:
  • Read the current version in format x.x.x.x from the application it's ran from
  • Look at a .xml file that is store on a server (I'm using dropbox and would like to keep it that way)
  • Once the updater is launch, close the program that launched the updater app
  • Move the new downloaded .exe to the user's desktop
  • Re launch the new updated .exe that was just copied on the desktop

I have found many solutions but can't seem to get any to work, any help would be greatly appreciate.