Search : in
By :

Array in vb6.0

Last answer on Jan 22, 2009 11:30:16 am GMT Kolmail, on Jan 21, 2009 5:00:28 pm GMT 
 Report this message to moderators

Hello,i want to know how to make 10 text box or label box array in vb6.0.
Thanks.

Configuration: Windows XP
Firefox 3.0.5

Best answers for « Array in vb6.0 » in :
[VBA/VB6] My Documents + Environment Variables Show[VBA/VB6] My Documents + Environment Variables With VBA With VB6 Environment Functions Windows Variables Getting started As displayed in Windows Explorer, the My Documents folder appears to be in the root, but it is not the case. It...
[VB6/VBA] The CommonDialog control Show[VB6/VBA] The CommonDialog control The available functions with CommonDialog Getting started An example of a standard module The various functions of control CommonDialog Here is a list of all the available constants,although...
VB6 Finding the RGB values of a color ShowVB6 Finding the RGB values of a color Dim R as integer Dim G as integer Dim B as integer Sub FindRGB(Col As Long) R = &HFF& And Col G = (&HFF00& And Col ) \ 256 B = (&HFF0000 And Col ) \ 65536 End Sub Note: Here...
Download BIOS For 865-M7 (V2.0) ShowDescription The application is designed by Elite Group Computer System. BIOS pour 865-M7 (V2.0) supports Intel Pentium D/ Pentium 4 HT processor up to 800MHZ. It will surely satisfy the needs of the users. Advantage The application support...
IP Address ShowWhat is an IP address? Computers communicate over the Internet using the IP protocol (Internet Protocol), which uses numerical addresses, called IP addresses, made up of four whole numbers (4 bytes) between 0 and 255 and written in the format...
The HTTP protocol ShowIntroduction to the HTTP protocol Since 1990 HTTP protocol (HyperText Transfer Protocol) has been the most widely used protocol on the Internet. Version 0.9 was only intended to transfer data over the Internet (in particular Web pages written in...

1

 pucy66, on Jan 22, 2009 11:30:16 am GMT
  • +2

Hi,
Declare an Array(10) Single or Double

Input(n) x$
Array(n) = val(x$)


open "file.txt" for output as #1
for n = 1 to 10
print #1, Array(n);
next n

close #1

Reply to pucy66