Thread: editing title

  1. #1
    aurė entuluva! mithrandir's Avatar
    Join Date
    Aug 2001
    Posts
    1,209

    editing title

    No doubt this has been asked before, but alas, I must ask again for I do not know the answer - how do I/can I change my title "Master of Disguise" under my username? It used to be an option, what happened to it?

  2. #2
    Ecologist
    Join Date
    Aug 2001
    Location
    Utah.
    Posts
    1,291
    The webmaster took away the option. You need to
    get between 400 - 500 posts to regain it.

    I know, it blows. I'm going to have "Sign my
    Guestbook" forever...
    Staying away from General.

  3. #3
    aurė entuluva! mithrandir's Avatar
    Join Date
    Aug 2001
    Posts
    1,209
    I was too lazy to count, so I wrote a program to work it out. I need 259 posts to reach 400 (when I can change my title! argh!).

    Code:
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(void)
    {	
    	int goal, current, need;
    
    	printf("--\tWelcome to the C board post calculator\t\t--\n"
    		   "--\tif you are as lazy as me, this program\t\t--\n"
    		   "--\tthis program will determine how many\t\t--\n"
    		   "--\tposts you need to reach you desired goal post\t--\n\n");
    
    	printf("Please enter your goal amount of posts: ");
    	scanf("%d", &goal);
    	printf("Please enter your current amount of posts: ");
    	scanf("%d", &current);
    
    	/* extremely complex calculation devised over 40 hours... */
    	need = goal - current;
    
    	printf("You require %d posts to reach you goal!\n", need);
    
    	getch();
    
    	printf("\nYACP 'yet another crap program' by [stealth]\n\n");
    
    	return 0;
    }
    Last edited by mithrandir; 09-06-2001 at 05:35 PM.

  4. #4
    Administrator webmaster's Avatar
    Join Date
    Aug 2001
    Posts
    1,012
    If you have a particularly awful title, you can PM me and I can change it for you.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Extract Title from plain text file
    By Todd88 in forum C++ Programming
    Replies: 10
    Last Post: 11-21-2008, 09:47 AM
  2. Listview label editing
    By Niara in forum Windows Programming
    Replies: 5
    Last Post: 06-10-2008, 03:20 AM
  3. Program Crashing
    By Pressure in forum C Programming
    Replies: 3
    Last Post: 04-18-2005, 10:28 PM
  4. Editing a data file
    By Strait in forum C++ Programming
    Replies: 7
    Last Post: 02-05-2005, 04:21 PM
  5. Child window with active (highlighted) title bar: Possible?
    By JasonD in forum Windows Programming
    Replies: 7
    Last Post: 10-16-2003, 06:43 AM