Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #54.9K
~468 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Lovelake

hi u can limit textbox max length to 4, then use keypress event to validate entry: [code] private void [textbox]_keypress(object sender,keypressventArgs e) { if((!Char.IsControl(e.char))&&(!Char.Isdigit(e.char))) e.handled = true; } [/code] then use keyup event to catch enter pressed to add controls [code] private void [textbox]_keyup(object snder, keyeventargs e) { if (e.KeyCode …

Member Avatar for crishlay
0
150
Member Avatar for DATABASE

[COLOR=darkred]hi I have some questions in VB.Net[/COLOR] [COLOR=darkred][/COLOR] [COLOR=darkred]1- how can I retrieve data by VB.Net from database using MS Access database? 2- can I retrieve data from a database and list them in a [COLOR=blue]CheckedListBox[/COLOR]? [/COLOR] [COLOR=darkred][/COLOR] [COLOR=darkred]thanx[/COLOR] [COLOR=#8b0000][/COLOR] [COLOR=#8b0000]Please help me :-| [/COLOR]

Member Avatar for durgeshmali1987
0
318