It looks like the book is the best way to go. I want to learn VB and programming in VB. If you learn one language, does that means you know other language easy?
vblearner09
Posts
-
need tutorial online -
need tutorial onlineIs there a good tutorial VB online? What's the link? I need a good VB tutorial online because I am on the budget(tight) prevent me from purchase a textbook.
-
need help calculator do not accept more than max char on textboxThanks!!1
-
need help calculator do not accept more than max char on textboxcan someone explain what e.Handled = True does? -Andy
-
need help calculator do not accept more than max char on textboxWhat good book you recommend to buy in VB that has a lot of example? Since you seem to know about programming in VB, what book would you recommend? my calculator program works on most the part... -Andy
-
need help calculator do not accept more than max char on textboxI am new to VB and try to learn new language. Please be patient with me. you can read all the books, but you don't get real hand on practice in programming in VB. practice in VB is the way to go.(learn programming). i learn to programming in VB with doing it not watching the code. I saw the code online..and try to modify that work to my need...i stuck and found the sample online.....to fix for my need... can someone give me the sample code that will work to the problem that i describe on the original forum? -Andy Thanks
-
need help calculator do not accept more than max char on textboxI try to fix the small problems that my calculator has For example, if I type 78/3=26 (all this from keyboard) This is what I want the program to work.. If I type 78 from keyboard with "/" (divide) and 3.. when I hit "ENTER" from keyboard. I should get 26... my current calculator doesn't accept "/" (divide) and ENTER to give result if found this code online, can someone try to fix or tell me how to make the code below work for my problem code: Private Sub txt_KeyPress(ByVal KeyAscii As Integer) If Not IsNumeric(Chr(KeyAscii)) And KeyAscii <> 13 _ And KeyAscii <> 45 And KeyAscii <> 8 Then KeyAscii = 109 End If End Sub My second problem on my calculator: I want to check if the number enter to textbox is the at end of textbox, then it give me a beep sound...and do not accept any more numeratic number (1-9)...and the beep sound when the user try to press any number 1-9. my current code doesn't work...please help me and see my code below. how to fix the code below that will work for me? If TxtDisplay.MaxLength = "27" Then '27 means the only max number 'can enter in textbox TxtDisplay.Enabled End If I appreciated all the great help you can provide!!!! This code is done in VB 2008
-
calculator accept "/" and "+" when I press from keyboard numlockI am new to VB 2008, and I am learning this new language VB. The project I started to write a small program Calculator that will do just like a real calculator on (Windows XP). I ran in some problems when I am trying to write routine to accept "/" divide, "+" plus, and "-" minus from right side of the keyboard. with press NUMLOCK ON. When I press NUMLOCK ON, the program should accept the "/", "*", "-", "+" and perform arithmetic. My program calculator now can accept "/", "*", "-" when I used the mouse to press buttons on the calculator's interface. Can someone tell me what the code will be? I am stuck...and I need help.. how to write the routine that will accept the operand to perform the basic arithmetic thanks for everyone can help!! Andy