Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums

6 Posted Topics

Member Avatar for jatinder_44

or u can use Redim Preserve Array(100) to avoid deleting the current value of an Array.

Member Avatar for AV Manoharan
0
82
Member Avatar for anud18
Member Avatar for AV Manoharan
0
131
Member Avatar for pitters

Dim a As Form Set a = Forms(1) MsgBox a.NoofCopies 'I hope it will help. 'Note: make sure the form is loaded

Member Avatar for AirtsuaLiera
0
98
Member Avatar for funriderrj

Dim arr() As String Private Sub Command1_Click()[INDENT]Static i As Integer[/INDENT] [INDENT]ReDim Preserve arr(i)[/INDENT] [INDENT]arr(i) = Me.Text1[/INDENT] [INDENT]i = i + 1[/INDENT] End Sub Private Sub Command2_Click()[INDENT]Dim i As Integer[/INDENT] [INDENT]Me.Cls[/INDENT] [INDENT]For i = 0 To UBound(arr)[INDENT]Me.Print arr(i)[/INDENT] Next i [/INDENT]End Sub 'Hope it will help

Member Avatar for AirtsuaLiera
0
907
Member Avatar for AirtsuaLiera

Pls. give me sample code and brief explanation about how the thumb scanner works and how can I integrate this to my PC using VB

0
67
Member Avatar for Soleybancing

create 1 control array scrollbar during design time example name: hs1 and set index = 0 the code to create a new scrollbar: load hs1(1)

Member Avatar for AirtsuaLiera
0
104

The End.