English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2006-07-13 22:34:55 · 2 answers · asked by elgin n 1 in Computers & Internet Programming & Design

2 answers

What language? They all vary, but the general form is

function_name(value,value,...)

but as I said, this differs depending on language.

2006-07-13 22:46:50 · answer #1 · answered by Anonymous · 0 0

When you have a function like this
Private Function MyMessages(Byval strMsg as String) as String
If strMsg = "Hello" then
MyMessages = "Also Hello"
Else
MyMessages = "What you like"
End if
End Function

In this way a string was passed to the function and the function returns a String after it evalueted the String

Helmut

2006-07-14 05:43:39 · answer #2 · answered by hswes 2 · 0 0

fedest.com, questions and answers