Aşağıda belirttiğim gibi kod yazdım. ve resimde gorduğunuz gibi formu ayarladim...

---
amacai 4 işlem..

a= 6
b= 3 olsun diyelim

cıkar deyince = 3 diyor bu doğru
carp deyince =18 diyor bu doğru
bol deyince = 2 diyor bu doğru

ama

topla deyince 63 diyor ... 9 demesei gere... yani 6 ve 3 u yanyana topluyor...


-------------
aşağıdaki kodlarda ;

tex1 ve text2 oradaki kutucuklarin ismi..

topla,cıkar,carp,bol ise orada işaretlenebilen kutucukalrin ismi...

------------
KODLAR

---------
*****************

Private Sub Command1_Click()

a = Text1 + Text2
b = Text1 - Text2
c = Text1 * Text2
d = Text1 / Text2

If topla = True Then
MsgBox a

ElseIf cikar = True Then

MsgBox b

ElseIf carp = True Then

MsgBox c

ElseIf bol = True Then

MsgBox d






Else
MsgBox "Lutfen sayı giriniz ve işaretleme kutularindan birini işsaretleyiniz"


End If
End Sub

Private Sub Command2_Click()
End
End Sub

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

nasıl duzeltirim.... ??

teşekkurler
__________________