Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~2K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for gsmdreams
Member Avatar for Patplays852

Below is a Base Conversion Class that will take in any number (up to around 2.4 billion digits (limited by string.substring's integer property)), It will convert from any base to any base (from 2-36 inclusive) It does have some simple error handling such as if you enter a number that …

0
215
Member Avatar for Member 785160

you are on the right track with this code, here are some corrections: [CODE=vb.net] Public Class Form1 Private Sub btnNumbers_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNumbers.Click Dim intNumber As Integer 'number entered by user Dim intCounter As Integer ' Dim intSum As Integer 'sum of numbers - …

Member Avatar for wolfrain63
0
1K
Member Avatar for discovery-power

Perhaps you should migrate the code you have now to a "save as" option, and under save have some type of variable that holds the current file name and overwrite the file with whatever is in the richtextfield (no idea what code would be needed, but it is an idea …

Member Avatar for Luc001
0
264
Member Avatar for andy1510

You could try this: [code=vb.net] Dim randomNumber As Integer randomNumber = RandomClass.Next(0,100) // creates a random number from 0 - 100 messagebox.show(randomNumber , "%") ' ex of output would be "28%", if it doesn't work, try ' messagebox.show(randomNumber + "%") I just took a python class in school so i …

Member Avatar for pritesh2010
0
91
Member Avatar for Patplays852

Hello, I've made a Jeopardy game using VS2010 and I mistakenly made it as a .NET 4.0 project. I am wondering if there is any easy way to convert the project into a .NET 2.0 project so more people will be able to use the program. [URL="https://sourceforge.net/projects/ezjeopardy/"]https://sourceforge.net/projects/ezjeopardy/[/URL]

Member Avatar for rohan_tahil
0
244

The End.