i want to print in my form let's say till 300 values in separate lines;
but i can view only first 42 values as the form size is not that much.so how can i view all 300 values in separate lines in this case " integer" does not overflows
MY main problem is not OVERFLOW but it is to view a large range of values in the form, as the form only shows few of the top values...
i want the control from top to...
User Profile
Collapse
-
how can i view the runtime execution of an infinite loop....????
here is a small code:-
Private Sub Command1_Click( )
Dim i As Integer, j As Integer
For i = 1 To 10000000
For j = 1 To 10000000
Print "SDFGH========= "; j
Next j
Next i
End Sub
when i click command1 in the form i want to view:
SDFGH========== 1
SDFGH========== 2
.
.
.
till
SDFGH========== =10000000... -
vineet1987 started a topic i want to generate a matrix of 0's and 1's which is random every time plz hlp...!!in Visual Basici want to generate a matrix of 0's and 1's which is random every time plz hlp...!!
i want to generate a series of random numbers like
00101
01011
01111
01010
11101
it is a 5*5 matrix and is random every time upon execution
my code is:-
Private Sub Command1_Click( )
Call Randomize
Dim x As Integer, y As Integer, z As Integer, t As Integer, s As Integer
Dim i As Integer, k As Integer
x = 0 + Int(2 * Rnd())... -
vineet1987 replied to To programme in VB6 using Genetic algorithms for hand written character recognition??in Visual Basic@maxmis4
I want to implement my character recognition program using genetic algorithm because i was asked to do so, i asked my supervisor scientist "G-level" who gave me this problem as my project that what is the need to implement it when it is running already smoothly using the neural networks, but he is too much determined that i implement this code(i have already attached the code in text file format,but the bitmap...Leave a comment:
-
vineet1987 started a topic To programme in VB6 using Genetic algorithms for hand written character recognition??in Visual BasicTo programme in VB6 using Genetic algorithms for hand written character recognition??
i have already written my code using the neural network logic....and it works fine...
it is basically a hand written character recognition system...which accepts "bitmap" image files which i made through "windows Paint application" (from A to Z) and recognizes which character is it.
my logic is.....
open the "*.bmp" file using microsoft common dialog control....in the form then obtain...
No activity results to display
Show More
Leave a comment: