Forum: VB.NET Jul 19th, 2009 |
| Replies: 12 Views: 467 frnd its too easy,sorry to say dat but u didnt show me any effort.
Anyways i m posting updated code here-
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As... |
Forum: VB.NET Jul 18th, 2009 |
| Replies: 12 Views: 467 Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Try
Dim sArr() As String
Dim a As String = "a-b-c-d-e"
... |
Forum: VB.NET Jul 17th, 2009 |
| Replies: 12 Views: 467 Can i give u the eg,Suppose string contains a-b-c-d-e & I then split it with "-" & create the five labels & give them name..Is dat ok..Plz explain in detail wat u want??? |
Forum: VB.NET Jul 16th, 2009 |
| Replies: 12 Views: 467 which array u want to split , fragments_allocation or server_names..& tell the values going into these arrays?????????? |
Forum: VB.NET Jul 15th, 2009 |
| Replies: 12 Views: 467 wat happened,atleast respond soemthing...is this not the soln u r looking for!!!!!!!!1 |
Forum: VB.NET Jul 15th, 2009 |
| Replies: 12 Views: 467 frnd its too easy..
On Form_Load I m adding two lables at Runtime & setting their names..On Button4 click. I m getting that two label names..
Imports System.Drawing.Drawing2D
Public Class... |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 3 Views: 622 hi kimbula, if u get answer to ur question, mark this thraed as solved,so dat it will be helpfull for others also |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,068 Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Dim Getstr As String = "1,34,579,77356"
Dim sArr() As String
Dim... |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,068 No No i m asking everytime string could be 1,2,3 means two commas are there in string, If so u can manually put the values in Labels.
Label1.text = 1
label2.text = 2
Label3.text = 3 |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,068 U can remove application.doevents its not necessary......Can u plz tell me....is this d fixed string or not...Means string can also 1,2,3,4,5,6 & now u assign it to six labels Rite?????/ |
Forum: VB.NET Jul 13th, 2009 |
| Replies: 11 Views: 1,068 It was so simple dear.Check it below-
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Getstr As... |
Forum: VB.NET Jul 12th, 2009 |
| Replies: 11 Views: 1,068 can u tell me in GetPhoneString abcd is there & how u r spliting it with , there is no , in string,then how can u do it,& what is Getstr- is it a function? |
Forum: VB.NET Jul 12th, 2009 |
| Replies: 3 Views: 622 Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If Asc(e.KeyChar) >= 48 And Asc(e.KeyChar) <= 57 Then
... |
Forum: VB.NET Jul 3rd, 2009 |
| Replies: 6 Views: 755 hi frnd,if you want on Listview double click then,use the below event
Private Sub ListView1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles... |
Forum: VB.NET Mar 8th, 2009 |
| Replies: 2 Views: 2,055 Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Protected Overrides Sub OnPaint(ByVal pe As... |
Forum: VB.NET Mar 6th, 2009 |
| Replies: 2 Views: 826 Suppose Ur Current project is project1 & u want to call Exe named Project2 ,Then it that case go to debug folder of project1 & copy exe project2.Now call it simple.
Private Sub... |
Forum: VB.NET Mar 6th, 2009 |
| Replies: 3 Views: 453 For this u can take 5 panels..Suppose u drag one panel on a form..Copy this panel & paste it 4 times...One above the other..To move b/w the panels...U can right click mouse on panel & click Send to... |