2,383 Posted Topics
Re: yes, there are another way to do that. use a key ascii to handle it. so user didn't allowed to input numeric data. try this code : [code=vb]Private Sub Text1_KeyPress(KeyAscii As Integer) Select Case KeyAscii Case 65 To 90, 8 ' A-Z and backspace 'Let these key codes pass through … | |
![]() | |
Re: Make a new form to do this. use timer to set how long it will shown. so after login, Note Form will shown for a few second and disappearing then go to form after login(main menu or other). | |
Re: hmmm. i never do this but i think you can run the exe file. | |
Re: Debug?? debug cannot be execute alone. debug must be follow with Print or Assert. i think debug.print use to see what the result. i mean it is not using inf form but for debugging. | |
Re: [QUOTE]hey dude thanks a lot for ur reply. The thing i asked is in this way In database in register table i stored the following Firstname abc Lastname xyz Username hello Password hi From register table i have inserted Username and Password to Login table. So Login table database consists … | |
Re: [QUOTE]Hi i found this code on the web [B]that works[/B] but can someone tell my [B]how does this works[/B][/QUOTE] u said it works but you want to someone tell u how it works?confusing statement. | |
Re: you mean, display photo from folder? | |
| |
Re: use tab index to set cursor on current text box. setfocus cannot be called in form load. just in procedure or function. | |
Re: Hi...Welcome to Daniweb Marc :) Hope you'll see around [URL="http://www.daniweb.com/forums/forum58.html"]vb.net[/URL] section and share with us. | |
Re: There are million example on Google. find it first, try it, debug it and see if it works or not. if that example not working than u can post your problem in this forum. we can directing you but not write all codes for you. people/company will pay u with … | |
Re: i confused when i read your code? what exactly you want to do? [QUOTE]Private Sub xCalcButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles xCalcButton.Click ' calls a procedure to calculate the total and average ' rainfall amounts, then displays both amounts Static rainCounter As Integer Static rainAccum As Decimal … | |
Re: you must install .net runtime in destination computer. none exe file can run without .net platform. | |
Re: Post in vb.net Section, this for vb4/5/6 section. Thanks friend :) | |
| |
Re: Hi..Welcome to Daniweb Friend :) Hope you see around and help others | |
Re: yes, absolutely right. this forum is a great place to learn. btw welcome to Daniweb Friend :) | |
Re: i tried this with 2 listbox and 1 button. i was moved item on list2 to list5 and remove current item after moved. [code]Private Sub Form_Load() With List2 .AddItem ("1") .AddItem ("2") .AddItem ("3") End With Private Sub Command4_Click() List5.AddItem List2.ItemData(List2.ListIndex) List2.RemoveItem List2.ItemData(List2.ListIndex) End Sub End Sub [/code] |
The End.