ok i started by filling user and pass press the ok button when those are filled the options appear(deposit, balance..) if not a messagebox says please enter user...
but i'm having trouble with the code since i dont know how get value from the textbox
what do i need to code to get that when i pressed the ok button
if your textbox has the default name of TextBox1 then you would get the value by using TextBox1.Text If you named the textbox yourself then use whatever name you gave it in place of the TextBox1 portion. the .Text property lets you get or set the text in the control.
I DID IT, THANKS
I DID SOME RESEARCH.
ITS NOT THAT COMPLEX BUT HERE IT IS TO SHARE IT.
Public Class Form1
Private Sub btnok_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnok.Click
If txtname.Text = "" And txtpass.Text = "" Then
Bookmarks