Click here to Skip to main content
15,905,322 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Pocket PC Pin
jimpar30-Mar-04 8:47
jimpar30-Mar-04 8:47 
QuestionInsert error??? Pin
hounetdev29-Mar-04 9:13
hounetdev29-Mar-04 9:13 
AnswerRe: Insert error??? Pin
KamWaf29-Mar-04 14:36
KamWaf29-Mar-04 14:36 
AnswerRe: Insert error??? Pin
Member 36080530-Mar-04 11:50
Member 36080530-Mar-04 11:50 
GeneralBinding objects - Error Pin
ibok2329-Mar-04 8:55
ibok2329-Mar-04 8:55 
GeneralRe: Binding objects - Error Pin
ibok2329-Mar-04 14:08
ibok2329-Mar-04 14:08 
Generalselecting a data in flexgrid Pin
GaryKoh29-Mar-04 5:43
GaryKoh29-Mar-04 5:43 
GeneralRe: selecting a data in flexgrid Pin
superwinsock29-Mar-04 23:49
superwinsock29-Mar-04 23:49 
'This is on the main form

Dim strCustData(0 To 12) As String
Dim lngClientId As Long
Dim bytCount As Byte

With grdClients
If .TextMatrix(.Row, 0) = "" Or .TextMatrix(.Row, 1) = "N/A" Then
MsgBox "Please Select a Record"
Exit Sub

Else
lngClientId = .TextMatrix(.Row, 0)

For bytCount = 0 To UBound(strCustData, 1)
strCustData(bytCount) = .TextMatrix(.Row, bytCount + 1)

Next bytCount

End If

End With

Call Load(frmUpdate)

With frmUpdate
.MP_ClientDetails lngClientId, strCustData
.Show vbModal

End With


----------------------------------------------

'This is a function in the receiving page
Public Sub MP_ClientDetails(lngClientId As Long, strCustData() As String)

Dim bytCount As Byte

For bytCount = 0 To UBound(strCustData, 1)
txtCustDetails(bytCount).Text = strCustData(bytCount)

Next bytCount

exit sub

Hope this helps!

GeneralRe: selecting a data in flexgrid Pin
GaryKoh30-Mar-04 0:44
GaryKoh30-Mar-04 0:44 
GeneralRe: selecting a data in flexgrid Pin
superwinsock30-Mar-04 1:15
superwinsock30-Mar-04 1:15 
GeneralRe: selecting a data in flexgrid Pin
GaryKoh30-Mar-04 2:11
GaryKoh30-Mar-04 2:11 
GeneralRe: selecting a data in flexgrid Pin
superwinsock30-Mar-04 3:12
superwinsock30-Mar-04 3:12 
GeneralRe: selecting a data in flexgrid Pin
GaryKoh31-Mar-04 16:17
GaryKoh31-Mar-04 16:17 
Questiondoable in .net? Pin
KamWaf29-Mar-04 5:31
KamWaf29-Mar-04 5:31 
AnswerRe: doable in .net? Pin
Zlosk29-Mar-04 6:03
Zlosk29-Mar-04 6:03 
GeneralRe: doable in .net? Pin
KamWaf29-Mar-04 7:32
KamWaf29-Mar-04 7:32 
GeneralVB6 date vs SQL Server date Pin
gpa200029-Mar-04 2:13
gpa200029-Mar-04 2:13 
GeneralRe: VB6 date vs SQL Server date Pin
Anonymous29-Mar-04 7:47
Anonymous29-Mar-04 7:47 
GeneralRe: VB6 date vs SQL Server date Pin
Guerven30-Mar-04 1:44
Guerven30-Mar-04 1:44 
GeneralRe: VB6 date vs SQL Server date Pin
gpa200030-Mar-04 12:33
gpa200030-Mar-04 12:33 
GeneralRe: VB6 date vs SQL Server date Pin
jonathan151-Apr-04 3:28
jonathan151-Apr-04 3:28 
GeneralFTP address decode from packet Pin
Anoop Kumar28-Mar-04 23:59
Anoop Kumar28-Mar-04 23:59 
GeneralReverse engineering Pin
Emma S28-Mar-04 22:18
Emma S28-Mar-04 22:18 
GeneralRe: Reverse engineering Pin
Colin Angus Mackay29-Mar-04 0:06
Colin Angus Mackay29-Mar-04 0:06 
GeneralRe: Reverse engineering Pin
Dave Kreskowiak29-Mar-04 1:52
mveDave Kreskowiak29-Mar-04 1:52 

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.