Saturday, 6 August 2022

02 Dimension vfp array | how to create array in vfp | get value from array


02 Dimension vfp array, how to create array in vfp, get value from array, vfp tutorial in hindi




  • DIMENSION command
  • Example
  • Practical


Using this command you can creates a one-dimensional and two-dimensional array of variables.



How to Crete One Dimensional Array in VFP and Visual Foxpro?

Command : DIMENSION FriendList(10)

How to Create Two Dimensional Array in VFP and visual foxpro?

Command : DIMENSION ItemNQty(2,4)



How To Set Value in Array in VFP and visual foxpro?

Commands:
FriendList(1) = "Rajesh Kalla" FriendList(2) = "Ashish Kalla" FriendList(3)="Jayesh" FriendList(5)="Jayesh" FriendList(5)="Ramesh"



How to Get Values from Array in VFP and Visual Foxpro?

?FriendList(2) ?FriendList(4)


How to Dispaly all the values of specific Array in VFP and Visual Foxpro?

DISPLAY MEMORY LIKE FriendList



No comments:

Post a Comment

Please, Write your valuable comments..