Saturday, 23 November 2024

vfp auto scrollbar enable | How to auto enable scrollbar of forms | up a...



VFP  9 , Visual Foxpro 9 auto Scrollbar enable.

vfp auto scrollbar enable, How to auto enable scrollbar of forms, up and down scrollbars in foxpro, visual foxpro vfp auto scrollbar from properties, Visual foxpro online training, visual foxpro training in hindi

Saturday, 27 July 2024

ADEL array Delete Array Element




 DIMENSION FriendArray(5)

STORE 'Ram' TO FriendArray(1)

STORE 'Shyam' TO FriendArray(2)

STORE 'Sohan' TO FriendArray(3)

STORE 'Mohan' TO FriendArray(4)

STORE 'Rohan' TO FriendArray(5)



DISPLAY MEMORY 

srchText = 'Shyam'


indexno = ASCAN(FriendArray,srchText)


IF indexno != 0


MESSAGEBOX("Found")

retval = ADEL(FriendArray,indexno)

WAIT WINDOW retval

clear

DISPLAY MEMORY 

ELSE


MESSAGEBOX("not Found")

ENDIF 


Friday, 26 July 2024

Visual FoxPro ASCAN(), Scan Array



 DIMENSION FriendArray(5)

STORE 'Ram' TO FriendArray(1)

STORE 'Shyam' TO FriendArray(2)

STORE 'Sohan' TO FriendArray(3)

STORE 'Mohan' TO FriendArray(4)

STORE 'Rohan' TO FriendArray(5)

srchText = 'Shyam'


indexno = ASCAN(FriendArray,srchText)

MESSAGEBOX(indexno)





Sunday, 28 January 2024

ReactJS Name can no longer contain capital letters | Kebab Case for Proj...



Cannot create a project named "MyApp" because of npm naming restrictions: Name can no longer contain capital letters


Solution1:
Project name can be in lowercase
Example : 
npx create-react-app myapp




Solution2:
Project name can be in kebab case
Example : 
npx create-react-app my-learning

What is Kebab Case?
Kebab case is a way of writing phrases without spaces, where spaces are replaced with hyphens -, and the words are typically all lower case.
“my project” would be written as “my-project”