Yazılım Geliştirme Uzmanı & E-Ticaret Danışmanı
Asp , Excel , VBA , E-Ticaret , Mobil , Desktop, Web Uygulamaları
Tel : 0 534 797 31 21 , Mail : baranseren@gmail.com
Değer Pozitif mi Function isPositive

Değer Pozitif mi Function isPositive 19.7.2011 18:18:34

' Belirtilen değerin Pozitif Olup Olmadığını Kontrol Etme
' Özellikle - değerlerin canınızı sıkabileceği durumlarda kullanması 
' çok güzel olan bir fonksiyon örneğidir.

 Function isPositive(byVal Num)
  isPositive = False
  If NOT isNumeric(Num) Then 
   isPositive = False
  Else
   If Num>0 Then isPositive = True
  End If
 End Function




Tags :