6 Posted Topics
Re: try [[CODE=vb.net] F2.Enabled = True [/CODE] | |
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 … | |
Re: 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 - … | |
Re: 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 … | |
Re: 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 … | |
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] |
The End.