Click here to Skip to main content
15,898,134 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to finish the pendign input remaining last time? Pin
sanyexian15-Sep-10 17:35
sanyexian15-Sep-10 17:35 
GeneralRe: How to finish the pendign input remaining last time? Pin
Luc Pattyn15-Sep-10 18:01
sitebuilderLuc Pattyn15-Sep-10 18:01 
Questioninsert multiple rows between two rows in datagridview Pin
C#Coudou15-Sep-10 16:22
C#Coudou15-Sep-10 16:22 
AnswerRe: insert multiple rows between two rows in datagridview Pin
Luc Pattyn15-Sep-10 16:50
sitebuilderLuc Pattyn15-Sep-10 16:50 
AnswerRe: insert multiple rows between two rows in datagridview Pin
Prerak Patel20-Sep-10 20:43
professionalPrerak Patel20-Sep-10 20:43 
QuestionCheckboxes not selectable in DataGrid column Pin
oakrun15-Sep-10 7:08
oakrun15-Sep-10 7:08 
AnswerRe: Checkboxes not selectable in DataGrid column [modified] Pin
William Winner15-Sep-10 12:15
William Winner15-Sep-10 12:15 
Questionmultiple client connection in VB6 Pin
jainiraj15-Sep-10 2:10
jainiraj15-Sep-10 2:10 
I am creating an application in which tcp server can connect to more than one tcp client.
following is the code- where winsockServer is the winsock control in VB6 whose index property is set to 0.
----------------

Private Sub Form_Load()
'winsockServer.Protocol = sckTCPProtocol ' choose the TCP protocol
winsockServer(0).LocalPort = 2020 ' an example port number
winsockServer(0).Listen ' tell Winsock to start listening
intSockCnt = 0
End Sub


Private Sub winsockServer_ConnectionRequest(Index As Integer, ByVal requestID As Long)
If intSockCnt > 2 Then
MsgBox "No. of hosts exceed....."
Else
intSockCnt = intSockCnt + 1
Load winsockServer(intSockCnt)
winsockServer(intSockCnt).Accept requestID

End If
End Sub

on compiling it is giving an error-
Procedure declaration does not match description of event or procedure having the same name

How can I do this ??????
thanks in adv..
AnswerRe: multiple client connection in VB6 Pin
Eddy Vluggen15-Sep-10 8:22
professionalEddy Vluggen15-Sep-10 8:22 
QuestionOptions buttons in VB6 Pin
jainiraj15-Sep-10 0:29
jainiraj15-Sep-10 0:29 
AnswerRe: Options buttons in VB6 Pin
DaveAuld15-Sep-10 1:07
professionalDaveAuld15-Sep-10 1:07 
AnswerRe: Options buttons in VB6 Pin
MikeD 215-Sep-10 2:46
MikeD 215-Sep-10 2:46 
Questionround in vb.net Pin
C#Coudou14-Sep-10 19:52
C#Coudou14-Sep-10 19:52 
AnswerRe: round in vb.net Pin
Dave Kreskowiak14-Sep-10 20:07
mveDave Kreskowiak14-Sep-10 20:07 
AnswerRe: round in vb.net [modified] Pin
DaveAuld14-Sep-10 20:10
professionalDaveAuld14-Sep-10 20:10 
GeneralRe: round in vb.net Pin
Dalek Dave15-Sep-10 1:01
professionalDalek Dave15-Sep-10 1:01 
QuestionHow to create a hyperlink to a field value in a datagrid in VB6 Pin
kokilag14-Sep-10 18:56
kokilag14-Sep-10 18:56 
AnswerRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
Prerak Patel20-Sep-10 21:00
professionalPrerak Patel20-Sep-10 21:00 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
kokilag22-Sep-10 1:10
kokilag22-Sep-10 1:10 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
Prerak Patel22-Sep-10 1:35
professionalPrerak Patel22-Sep-10 1:35 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
kokilag23-Sep-10 0:52
kokilag23-Sep-10 0:52 
Question[VB10] DataGridView Columns Error [modified] Pin
The Mighty Atom14-Sep-10 11:49
The Mighty Atom14-Sep-10 11:49 
AnswerRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 12:05
sitebuilderLuc Pattyn14-Sep-10 12:05 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom14-Sep-10 12:15
The Mighty Atom14-Sep-10 12:15 
GeneralRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 12:25
sitebuilderLuc Pattyn14-Sep-10 12:25 

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.