Create A Program To List A Large Group Of Numbers?
Feb 7, 2011
I am currently trying to create a program to list a large group of numbers for me. My final goal is to have every 2, 3, 4, ..., and 9 digit number containing only "1" "2" and "3". I thought I would go about this by using the following VB.NET program and then copying it into a text editor, and using find & replace to eliminate all other numbers.
Public Class Form1
Dim Start As Integer = 333333333
Dim Counter As Integer = 333333333
[Code].....
it fails due to the massive amount of processing that needs to take place. However, adding the intervals requires a great deal of time for each number to be displayed without any crashes.
Is there some way (in VB.NEt or another language) to get the number list I want in a short (an hour or less) amount of time?
View 7 Replies
ADVERTISEMENT
Oct 27, 2010
I would like to create a sub menu that list part numbers that are gathered from a xml file. I am having trouble with creating the sub routines for the part numbers menus because it can change.
Private Sub mnuP1Layers_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim BFFile as string
My.Computer.FileSystem.MoveFile(BFFile, "C:ExchangePrintedBFFile")
View 3 Replies
Jun 9, 2011
I want to write a program to do Markov chain, but my states are quite large. First of all I calculate all the transition probabilities and revenues for all states(1381860 total states), and store in a multidimensional array. Public RevArr(0 To 9, 0 To 750, 0 To 282) As Long
After that the iteration of markov chain should use these as inputs to calculate the steady-state probabilities. But when I try to run the main code I got this error.Exception of type 'System.OutOfMemoryException' was thrown.
The following is the declaration of second array I add just another dimension for storing all the iterations, but I get this error. Dim stateprob(IT + 1, 0 To 9, 0 To 750, 0 To 282) As single
View 1 Replies
Dec 24, 2011
So I made a program for generating prime numbers in a list box. My initial code had them listed like this:
2
3
5
7
..ect
Now I have them listed in pairs like this :
[Code]...
View 1 Replies
Jun 6, 2012
Basically this is my problem, showing the results of a string. I am making a program for a customer and he wants to be able to extract a string or set of emails from a large group of text. In this case he wants to be able to copy a webpage and extract all the emails out of the webpage. The problem i am having is showing the results of the List(of string) Function. So far, I can copy the page, paste the content to a textbox and then i have a function that is supposed to filter out the emails and paste or Show them in a list box.
I dont know why but no matter what I do I always get this error:
Error1Value of type 'System.Collections.Generic.List(Of String)' cannot be converted to 'String'.
This happens when I try to output the return results to a textbox or list box.
Here is the code for the whole program:
Entire Program Code:
Imports System.Text.RegularExpressions
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code] .....
I have tried almost everything I could do, I am relatively new to string functions so that is my main problem.
View 11 Replies
Feb 3, 2011
I'm fiddling around with trying to make a sort of map/world. I'm using 16 x 16 pictureboxes named PictureBox1, PictureBox2, etcThe issue is that when I put the images into all the pictureboxes, I have to have a line for each picturebox (so say I have 100 boxes, I have 100 lines).The only difference in each line is the picturebox number, the rest is identical. I'm basically telling it to set that picturebox's image based on the number that a variable I've created has stored.I've got a game idea, and I'm just trying to figure out how to do the map. I want it to work like the old school RPG games like Dragon Warrior, or the more recent Dwarf Fortress. I'm still not sure if I want to use graphics or letters. At this point, I'm just trying to figure out how I can create the main screen where the user moves around. This is what I've come up with, as it works with what I know. I'm pretty new to this, although I've messed around with VB6 a lot.
Dim tile(30) As Integer
Dim tilelocation(3) As String
Dim x As Integer
[code]....
View 7 Replies
Oct 7, 2010
So I have been assigned to create a program that finds prime numbers. And then for the final part of the program I need to have the computer find the millionth prime.
View 3 Replies
Nov 5, 2009
5. Create a program which will allow the user enter ten numbers. The program is to count how many numbers were above 50?
View 1 Replies
Feb 2, 2011
I have to create program that adds the whole numbers from 1 to 1000 and displays the sum in the label. Create a variation of this program that allows the user to specify any starting whole number and any ending whole number (10,000 or lower) and then adds all the whole numbers in that range. Allow for the possibility that a user may start with a high number and end with a low number. Format the label so that commas are displayed and there are no decimal places showing. I need help with the codes.
View 5 Replies
Mar 29, 2011
Any simple way to add commas to large numbers (example: instead of "123456789" as my text converted {and loaded into a text box} output of a calculation, I want to see "123,456,789")?
View 11 Replies
Feb 18, 2012
[Code]...
The loop will run about 3 times then overflow. I guess no matter what u do xor will result in Byte,Integer or Long. CDec(Key) will not work I need a way to bypass this so i can Xor large numbers.
View 1 Replies
Oct 25, 2010
How can I calculate 2^ 3333 in vb.net it calculates up to 2^ 60 it says infinite for this calculation. Is tehre any way to work with really large numbers?
View 1 Replies
Oct 19, 2010
how to get the mod of large numbers? for example: (3214282912345698765432161182 mod 97)
View 10 Replies
Jun 22, 2010
This piece of C# code does not produce any overflow exception.wordsize is a constant equal to 32.the x and y can be very big at the computation time. So big that long or decimal even cant hold. But C# handles the problem even the value of the variables exceeds its limits.The computation gives thr right result.(I dont know how it does it)
[Code]...
View 5 Replies
Mar 12, 2012
I want a method of dealing with very, very, very big numbers (potentially a million digits). It is very cumbersome to deal with very big numbers in VB, would another language perhaps be better for that?
View 10 Replies
Mar 16, 2011
i am creating a maths program that works out five number summarys of a range of data. i am having trouble working out the smallest number in a group of numbers. i have used a bunch of if then statements to work out the maximum and i figured that by exchanging a few variables and swapping greater than signs for less than i could use the same code to work out the minimum, but all i get is zero, no matter what i input into my textboxes. below is the code i have used to work out the maximum number
If CheckBox1.Checked = True And CheckBox6.Checked = True Then
max = 0
min = 1000
[Code]......
View 14 Replies
Nov 27, 2010
How is it possible to deal with incredibly long (large) numbers in vb.net?I am working on Problem 25 in Project Euler, and my program cannot handle these computations.Is there a data type that can handle thousands of digits?
View 3 Replies
Apr 28, 2011
For example, to calculate this:(22 ^ 29) Mod 57Supposedly there is a way to get around overflows and do these calculations, but I can't find much online. Now, the person who said this was doing VBA in Excel and said that there was about 4 lines of code which could handle the overflow so it wouldn't happen.
View 4 Replies
Aug 16, 2009
So how would I use .next (random numbers) to randomly select something from a list of numbers but it can't repeat the number?I could do:
dim num as integer
dim r as new random
num = r.next(1,5)
if num = 1 then
elseif num = 2 then
etc.
That wouldn't work because it would repeat.If I donwload someone's game can I disect it in VS? :0 I tried going to open project, then I went to the folder and clicked open. It brought me inside of the folder so I tried to open the game but there is no form1 there. It says the games name then .exe in the explorer-like thing in the top right?Also, how would I have a value or something in a label and access it from a button.
Example:This is in a label.
Dim number as Integer
number = 0
Then in the button do
Label.number = 0
How would I do something like that? I want to use that a lot as I did in a different language.
View 6 Replies
Nov 27, 2011
I need some guidance on a little program I'm making (one that I thought would take a couple of hours from start to finish, it's been days now ...) that determines all of the proper divisors of any given number up to the maximum value of a UInt32.
View 8 Replies
Oct 26, 2010
I need to create a program that rolls a dice a user generated number of times and give the frequencies of the numbers that come up.I cannot for the life of me figure out how to get the frequencies?
View 5 Replies
May 13, 2011
Say for instance, I gave you the numbers
1, 2, 3, 4, 4, 6, 9, 1, 3, 4, 5, 5, 2, 4, 7, 9, 1, 5, 3, 6, 6, 8, 1, 1, 4, 7, 7, 8, 2, 4, 2, 1, 9, 1, 0, 1, 6, 3, 2, 1, 8, 8, 9, 8, 1, 5, 3, 2, 3, 4, 7, 9, 0, 1, 2, 4, 7, 4, 3, 9, 7, 2, 0, 1, 6, 3, 8, 1, 2, 4
What number appears more than any other number?This is very important to me, ...I need to find the MODE, of those group of numbers, ...the way that I did it before, I would make 10 TextBoxes, and have another text box to enter the number, and when the number gets entered it would increment the value of which ever textbox the number was in the main textbox, so if I entered a 1 into the main textbox, then the zero in textbox (1), would be incremented to 1, and if another 1 was enered and the button was clicked, the 1 in the Textbox for 1, would be incremented to 2, because 1 has a popularity of 2 now and has apeared 2 times..
Here's some code, to show what I've come up with by myself.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ONE.Text = ONE.Text + 1
End If
[code]....
View 8 Replies
Nov 23, 2010
I need to count a large amount numbers in short time.As a result the CPU jumps to 40-60% on 4-core PC.Which is extremely high.I have any idea that will lock up the thread for some time, but not actually slow or reduce the amount of files that are allowed to be counted per a giving time period.
Vb.net
Application.DoEvents()
Threading.Thread.Sleep(1000)
View 9 Replies
Jun 21, 2010
I'm just learning VB with the 2008 express edition.I'm trying to create a program that uses 3 list boxes.The first contains a list of products.After a search is preformed the second list box displays the products found.This is pretty simple, basic array stuff.My problem is moving items from the second list box into a third list box to purchase the product.I think I need to change the index numbers of the stuff I move into list box 3 because when I preform calculations with the stuff in list box 3, it seems to answer like its using the index numbers in list box1.So, how do you change the index numbers when you change list boxes?
View 3 Replies
May 28, 2009
I am creating a rather simple program to do nothing more to show a row form a database when the form loads, the program consists of 2 forms, form one has nothing more than a label and a button to load form 2, form 2 has a listbox where the database row is listed and a button to close form 2 and reshow form 1. The code i have so far is [code]...
View 4 Replies
Sep 1, 2010
How i can create string list in vb.net and use it's method like sort & add
View 2 Replies
Feb 11, 2012
Old VB6er trying to get the new syntax of the .net world. Just to get things up and running, I wrote the following:
Dim RandomNumber As Integer
RandomNumber = GetRandom(0, 13)
If RandomNumber = 0 Then
Try
bass00.Play()
[Code] .....
What's the proper syntax for plugging in the random number instead of hard coding the bass02.Play() lines? VS 2010
View 4 Replies
Apr 26, 2009
I have a group of 3 numbers:
-SideA
-SideB
-SideC
I need a way to detect which one is the largest, and which is the smallest, and assign them to a variable.If SideA is the largest, then it is variable C, and SideB is the smallest, so its variable A, leaving SideC as variable B
View 2 Replies
Mar 10, 2011
I'm using Visual Studio 2010 Express Edition - Visual Basic.I'm very new to VB but I would like to create a program / splash screen that displays a list of files (Word, Excel, Project) that are located on a CD. I'm not sure how to start other than starting out creating a new project.
Here is how I would like the program to work. The user inserts a CD-rom (containing the program and a folder with all the files) the program automatically starts up when the CD is inserted and it displays a list of all the files on the CD. The user can click any of the files to start the program that created it. Example, if we have an Excel file called "Work Schedule", the user could click it and it would open in Excel.
After I've created the project and have a form, I'm not sure what tools I need to use to display the list of files.I'm not sure how I set up the connection (path) between the program and the folder containing all files, especially as they will all eventually be located on the same CD.
View 2 Replies
Jun 21, 2010
I have six textboxes, and upon button press it randomly generates six numbers, one in eact text box e.g. [43] [85] [93] [1] [0] [17]..i create another six textboxes and at the same time allocate these numbers in ascending/descending numbers.I am not looking for any codes whatsoever, as i love the challenge of VB.Net.
View 2 Replies