- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 6
- Posts with Upvotes
- 6
- Upvoting Members
- 4
- Downvotes Received
- 4
- Posts with Downvotes
- 4
- Downvoting Members
- 3
Me a programmer.
- Interests
- Programming
- PC Specs
- 2 GB RAM 2 GB Vcard 1TB HDD Win 7
38 Posted Topics
Re: dragonest :) | |
| |
Re: CHOCOLATE - A food made from roasted ground cacao beans, usually sweetened and eaten as dark brown solid confectionary **SPARK PLUG** | |
Re: i worry when there is no electricity.. we cannot use our pc's.. lol | |
Re: Because joker want a big smile. Why superman first wear pants than underwear? | |
Re: yes it is possible to make a setup installer.. | |
Re: you want in your textbox first 3 letters(space)3 numbers? | |
Re: Dim a As Date = Now Dim b As String b = Format(a, "hh:mm:ss") you can get idea from this.. just an idea ^^ | |
Re: Example for string. Dim sample as String There are lots of data type and you can do some research.. | |
Re: you must do some research about sales and inventory system.. also about the company's policy so that you could know the flow.. | |
Re: [Click Here](http://en.kioskea.net/download/download-104-visual-basic-express-edition) | |
| |
Re: Here's the keypress code for your textbox.. you must use keypress event in your textbox. Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox4.KeyPress If Asc(e.KeyChar) < 48 Or Asc(e.KeyChar) > 57 Then e.Handled = True End If If Asc(e.KeyChar) = 8 Then e.Handled = False End … | |
| |
Re: Hope you can get and idea for this.. :) For i = 0 To DataGridView1.Rows.Count - 2 DataGridView1.Item(3, i).Value = DataGridView1.Item(1, i).Value * DataGridView1.Item(2, i).Value Next | |
| |
Re: In a try catch statement is a way to handle possible errors that may occur in a given block of code.. example: Try [ tryStatements ] [ Catch [ exception [ As type ] ] [ When expression ] [ catchStatements ] ] [ Exit Try ] ... [ Finally … | |
Re: Every email that is sent passes through a series of mail servers along its way to its intended recipient. Although it may seem like a message is sent instantly - zipping from one PC to another in the blink of an eye - the reality is that a complex series … | |
Re: what do you want to do with the datetimepicker? can you elaborate your question | |
How can i specifically setfocus a textbox column in datagridview? | |
Re: space allowed here. If (Microsoft.VisualBasic.Asc(e.KeyChar) < 65) _ Or (Microsoft.VisualBasic.Asc(e.KeyChar) > 90) _ And (Microsoft.VisualBasic.Asc(e.KeyChar) < 97) _ Or (Microsoft.VisualBasic.Asc(e.KeyChar) > 122) Then 'space accepted If (Microsoft.VisualBasic.Asc(e.KeyChar) <> 32) Then e.Handled = True End If End If If (Microsoft.VisualBasic.Asc(e.KeyChar) = 8) Then e.Handled = False End If | |
I have a textbox has a maxlength of 18, e.g Textbox=ABC123456789012345 i want that the first 3 input must be letters only. | |
Re: this might help you [Click Here](http://randolfarevalo.wordpress.com/2011/04/21/crud-for-vb-2008-using-sql-2008-r2-database/).. Goodluck | |
how can i trap my textbox that allows numbers and letters only, no space no special characters e.g (,./;'[]-=\`<>?:"{}_+|~!@#$%^&*()) | |
Re: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim frm As New Form2 frm.Show() Me.Hide() End Sub | |
I have a datagridview, In a textboxcolumn should have a unique data.. i want in the cardnumber not to be the same.. Need trappings | |
| |
Re: In datagridview,how can I input data then add row? Please Reply |
The End.