example code for controls in visual neo and some of its actual applications - Forum

Forum Navigation
You need to log in to create posts and topics.

example code for controls in visual neo and some of its actual applications

Anyone who can give me the actual way of using the encircled control /string functions. I know there are some functions  that were already discussed in youtube but the other functions has no tutorial yet .I believed many people here used already some of these controls can you show me situations where you used it already or when can you use these. Can you share to me your experiences in using these encircled string and control actions..my eyes got tired of reading ...I'm sorry ...but thanks in advance guys...

Uploaded files:
  • You need to login to have access to uploads.

See :  https://winhelp.visualneo.com/

In this example if a user pastes Hello into TextEntry1, a TextChange action is executed :

------

If "[TextEntry1]" "=" "Hello"
GotoLine "HelloWorld"
Else
Exit "" ""
EndIf

:HelloWorld
AlertBox "" "You wrote Hello"
StrReplace "[TextEntry1]" "Hello" "Hello World" "[TextEntry1]" ""
Return

----------------------------------

An Alert Box pops up and the text automatically changes to Hello World.  Nothing happens if any text is typed, Hello must be pasted-in or the program will exit.