Click here to Skip to main content
16,005,316 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: determine selected index changed event of combo of datagridview Pin
Dave Kreskowiak12-Oct-07 13:15
mveDave Kreskowiak12-Oct-07 13:15 
QuestionUsing the Global Assembly Cache. Pin
vcrespo11-Oct-07 1:55
vcrespo11-Oct-07 1:55 
AnswerRe: Using the Global Assembly Cache. Pin
Mbire11-Oct-07 2:39
Mbire11-Oct-07 2:39 
GeneralRe: Using the Global Assembly Cache. Pin
vcrespo11-Oct-07 3:02
vcrespo11-Oct-07 3:02 
GeneralRe: Using the Global Assembly Cache. Pin
Mbire11-Oct-07 4:36
Mbire11-Oct-07 4:36 
GeneralRe: Using the Global Assembly Cache. Pin
vcrespo15-Oct-07 20:09
vcrespo15-Oct-07 20:09 
GeneralRe: Using the Global Assembly Cache. Pin
Dave Kreskowiak11-Oct-07 4:38
mveDave Kreskowiak11-Oct-07 4:38 
Questionabout listview in vb.net 2005 Pin
xxxheeroxxx11-Oct-07 1:47
xxxheeroxxx11-Oct-07 1:47 
I have made a system which is Ordering System, I'm still a student and on Monday October 15, 2007 is my defend. My system can display datas in the listview into the textboxes on 'click' event but I want to display one single row of datas in the listview into the textboxes at form load.

here's my code:Cry | :(( Confused | :confused: Frown | :(

Public Sub passToTextbox()
Try
With Me
txtCustID.Text = lstCust.SelectedItems.Item(0).Text
txtCompName.Text = lstCust.SelectedItems.Item(0).SubItems(1).Text
txtContactName.Text = lstCust.SelectedItems.Item(0).SubItems(2).Text
txtContactTitle.Text = lstCust.SelectedItems.Item(0).SubItems(3).Text
txtAddress.Text = lstCust.SelectedItems.Item(0).SubItems(4).Text
txtPostalCode.Text = lstCust.SelectedItems.Item(0).SubItems(5).Text
txtPhoneNo.Text = lstCust.SelectedItems.Item(0).SubItems(6).Text
txtFaxNo.Text = lstCust.SelectedItems.Item(0).SubItems(7).Text
End With
Catch ex As Exception
MsgBox("Establishing database connection...", vbOKOnly, "System")
MsgBox("Fetching database records...", vbOKOnly, "System")
End Try
End Sub

Private Sub lstCust_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lstCust.MouseClick
passToTextbox()
End Sub

Private Sub frmCustomer_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
oCustFacade.loadToList(lstCust)
passToTexbox()
LockUnlock(2)
ButtonCtrl(3)
lstCust.FullRowSelect = True
End Sub

>>>>>> hope for a reply as soon as possible
>>>>>> may GOD bless us...
AnswerRe: about listview in vb.net 2005 Pin
Tom Deketelaere11-Oct-07 2:07
professionalTom Deketelaere11-Oct-07 2:07 
AnswerRe: about listview in vb.net 2005 Pin
Mbire11-Oct-07 2:13
Mbire11-Oct-07 2:13 
QuestionRegestring Java Web Services in .Net Pin
Mbire11-Oct-07 1:33
Mbire11-Oct-07 1:33 
AnswerRe: Regestring Java Web Services in .Net Pin
Mbire11-Oct-07 3:48
Mbire11-Oct-07 3:48 
Questionexport data from vb6 to excel Pin
srishtisoftwares@rediffmail.com11-Oct-07 1:15
srishtisoftwares@rediffmail.com11-Oct-07 1:15 
AnswerRe: export data from vb6 to excel Pin
Mbire11-Oct-07 2:41
Mbire11-Oct-07 2:41 
Questionauto complete text box Pin
ganash11-Oct-07 1:13
ganash11-Oct-07 1:13 
AnswerRe: auto complete text box Pin
Tom Deketelaere11-Oct-07 2:03
professionalTom Deketelaere11-Oct-07 2:03 
QuestionPassing Parameters to Crystal Report at Runtime Pin
saneng11-Oct-07 1:02
saneng11-Oct-07 1:02 
AnswerRe: Passing Parameters to Crystal Report at Runtime Pin
Muhammad Shahid Farooq29-Oct-07 11:17
professionalMuhammad Shahid Farooq29-Oct-07 11:17 
QuestionJoining arrays Pin
Benny_Lava11-Oct-07 0:56
Benny_Lava11-Oct-07 0:56 
AnswerRe: Joining arrays Pin
Mbire11-Oct-07 1:42
Mbire11-Oct-07 1:42 
AnswerRe: Joining arrays Pin
Dave Kreskowiak11-Oct-07 3:50
mveDave Kreskowiak11-Oct-07 3:50 
QuestionA Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 0:24
professionalVimalsoft(Pty) Ltd11-Oct-07 0:24 
AnswerRe: A Function that Accept Parameters and Return ds Pin
Colin Angus Mackay11-Oct-07 0:30
Colin Angus Mackay11-Oct-07 0:30 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Christian Graus11-Oct-07 0:44
protectorChristian Graus11-Oct-07 0:44 
GeneralRe: A Function that Accept Parameters and Return ds Pin
Vimalsoft(Pty) Ltd11-Oct-07 0:44
professionalVimalsoft(Pty) Ltd11-Oct-07 0:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.