Click here to Skip to main content
15,890,506 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: MD5 checksum problem Pin
Gagan.2027-Jan-10 3:11
Gagan.2027-Jan-10 3:11 
GeneralRe: MD5 checksum problem Pin
DaveAuld27-Jan-10 3:25
professionalDaveAuld27-Jan-10 3:25 
GeneralRe: MD5 checksum problem Pin
Covean27-Jan-10 4:02
Covean27-Jan-10 4:02 
GeneralRe: MD5 checksum problem Pin
Gagan.2027-Jan-10 4:12
Gagan.2027-Jan-10 4:12 
GeneralRe: MD5 checksum problem Pin
Covean27-Jan-10 4:34
Covean27-Jan-10 4:34 
GeneralRe: MD5 checksum problem Pin
Luc Pattyn27-Jan-10 7:36
sitebuilderLuc Pattyn27-Jan-10 7:36 
QuestionDatagrid Pin
sohil masani26-Jan-10 19:54
sohil masani26-Jan-10 19:54 
AnswerRe: Datagrid [modified] Pin
Mr Oizo26-Jan-10 20:46
Mr Oizo26-Jan-10 20:46 
Here is a code snippet that I found online a while ago that helps:

Try this code in DataGrid CellEndEdit Events (note: this will sum the items
not multiply. So you will just modify it to check whether the cells have values and then multiply the values. i am to lazy to retype it)
Dim iTotal As Integer = 0
With DataGrid1
For i As Integer = 0 To .ColumnCount - 2
If Not IsDBNull(.Rows(e.RowIndex).Cells(i).Value) Then
iTotal += .Rows(e.RowIndex).Cells(i).Value
End If
Next
.Rows(e.RowIndex).Cells(.ColumnCount - 1).Value = iTotal
End With


modified on Wednesday, January 27, 2010 2:59 AM

AnswerRe: Datagrid Pin
Paramu197326-Jan-10 20:46
Paramu197326-Jan-10 20:46 
QuestionRetrieve data from listview to textbox (VBA Access 2007) Pin
misCafe26-Jan-10 13:53
misCafe26-Jan-10 13:53 
AnswerRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
Paramu197326-Jan-10 20:53
Paramu197326-Jan-10 20:53 
GeneralRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
misCafe26-Jan-10 21:51
misCafe26-Jan-10 21:51 
GeneralRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
Paramu197326-Jan-10 22:05
Paramu197326-Jan-10 22:05 
GeneralRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
misCafe27-Jan-10 13:32
misCafe27-Jan-10 13:32 
GeneralRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
Paramu197327-Jan-10 18:54
Paramu197327-Jan-10 18:54 
GeneralRe: Retrieve data from listview to textbox (VBA Access 2007) Pin
Jayvee Pacanza1-Feb-20 17:31
Jayvee Pacanza1-Feb-20 17:31 
QuestionUpdate Access97 Database Record - VB6 [Solved] Pin
sathi8726-Jan-10 7:06
sathi8726-Jan-10 7:06 
AnswerRe: Update Access97 Database Record - VB6 Pin
Dave Kreskowiak26-Jan-10 9:42
mveDave Kreskowiak26-Jan-10 9:42 
GeneralRe: Update Access97 Database Record - VB6 Pin
sathi8726-Jan-10 14:23
sathi8726-Jan-10 14:23 
GeneralRe: Update Access97 Database Record - VB6 Pin
Paul Conrad26-Jan-10 16:43
professionalPaul Conrad26-Jan-10 16:43 
GeneralRe: Update Access97 Database Record - VB6 Pin
DaveAuld27-Jan-10 1:42
professionalDaveAuld27-Jan-10 1:42 
GeneralRe: Update Access97 Database Record - VB6 Pin
Paul Conrad27-Jan-10 5:17
professionalPaul Conrad27-Jan-10 5:17 
AnswerRe: Update Access97 Database Record - VB6 [Solved] Pin
Eddy Vluggen27-Jan-10 1:46
professionalEddy Vluggen27-Jan-10 1:46 
QuestionJanus GridEX Pin
Member 230901926-Jan-10 4:37
Member 230901926-Jan-10 4:37 
AnswerRe: Janus GridEX Pin
Dave Kreskowiak26-Jan-10 6:44
mveDave Kreskowiak26-Jan-10 6: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.