Vb.net programs

01/09/2013 15:05 BiggestBAnge#1
Hello vb.net coders of epvp.

i am making a multi program with visual basic , i need suggestions to put in the program like a , chat spammer , text2speech , chat auto responder , etc...

please leave ur suggestions here ! and iif the program is done it well be released with the source code :bandit:

Regards Big
01/09/2013 19:43 reCougar#2
It depends on how good your skills are atm.
01/09/2013 21:16 BiggestBAnge#3
:) , Please Suggest a program and I well look or I can make it :)

Regards Big
01/09/2013 21:33 allesweg...#4
maybe a pocket calc? If it is a program just 4 fun you can also code a day of year - calculator (without the datepart function). Or a factorial calculator...
yip, I know idea 2 and 3 are very simple.
01/10/2013 11:05 BiggestBAnge#5
@allesweg , Thank you for the idea(s) , but I don't understand it (them) , You mean like a calender ?

Regards Big
01/10/2013 18:34 allesweg...#6
pocket calc = calculator
day of year = you type in a date (for example 16.1.2012) and you calculate, which day of year this day is (in this case it is 16 as the 16. january is the 16th day of the year. for the 5.2.2012 it would be 36.)
factorial: example 5 factorial is 1 * 2 * 3 * 4 * 5 = 120.
3 factorial is 1 * 2 * 3 = 6. Very simple, can be done with less than 10 lines of code.
01/11/2013 07:38 »jD«#7
Factorials can be done in almost a single line ;)

Code:
// Where count is the number to generate the factorial for
int Factorial = Enumerable.Range(1, count).Aggregate((i, j) => i*j);
Example

Code:
// Where count is the number to generate the factorial for
int Factorial = Enumerable.Range(1, 10).Aggregate((i, j) => i*j);
And in VB (sorry I'm so used to C#)

Code:
' Where count is the number to generate the factorial for
Dim Factorial As Integer = Enumerable.Range(1, count).Aggregate(Function(i, j) i * j)
Code:
Dim Factorial As Integer = Enumerable.Range(1, 10).Aggregate(Function(i, j) i * j)
:)

-jD
01/11/2013 16:17 BiggestBAnge#8
Thnx , jd

I haven't coded in vb in 3 days :p , I'm devoloping a multi site ! ( A site with , image hosting , file hosting , youtube 2mp3,4 )

But I well try that code :)

Regards Big
01/11/2013 18:17 allesweg...#9
Oh sorry, I thought it is a private project
Factorial can be done in 10 lines, too, if you dont use given functions but use one coded on your own. for me, this is more fun (and I am coding for fun)
01/12/2013 00:06 »jD«#10
I know :) Its just one of those things you normally see on "tests" for job interviews and they always like the most efficient method of doing things :)

-jD
01/14/2013 08:01 Der Anbieter#11
You could try to make a simple visual Keyboard, which is able to write letters and numbers :)