M
Murt
Hi all,
I am using visual studio, VB .net
i have a form with a "Support" button which may be pushed as often as
wished. If the current name is "result 1", then "result 2" should be
displayed in the text box. If the current name is "result 2", then
"result 1" will appear again.
I have tried the following
thanks in advance,
Static iStatus as integer
iStatus = abs(iStatus -1)
if iStatus=1 then
Field1.txt="result 2"
else
Field1.txt="result 1"
end if
the problem is the I get the error
name 'abs' is not declared
can anybody help, is above the right method at all?
greetings
Murt
I am using visual studio, VB .net
i have a form with a "Support" button which may be pushed as often as
wished. If the current name is "result 1", then "result 2" should be
displayed in the text box. If the current name is "result 2", then
"result 1" will appear again.
I have tried the following
thanks in advance,
Static iStatus as integer
iStatus = abs(iStatus -1)
if iStatus=1 then
Field1.txt="result 2"
else
Field1.txt="result 1"
end if
the problem is the I get the error
name 'abs' is not declared
can anybody help, is above the right method at all?
greetings
Murt