Click here to Skip to main content
15,867,834 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
VIERcntHOLZ11-Feb-15 5:46
VIERcntHOLZ11-Feb-15 5:46 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
Richard MacCutchan11-Feb-15 6:48
mveRichard MacCutchan11-Feb-15 6:48 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
VIERcntHOLZ12-Feb-15 5:45
VIERcntHOLZ12-Feb-15 5:45 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
manchanx12-Feb-15 13:32
professionalmanchanx12-Feb-15 13:32 
GeneralRe: Extract certain Text FROM PDF into my vb.NET TextBoxes Pin
Richard MacCutchan12-Feb-15 22:29
mveRichard MacCutchan12-Feb-15 22:29 
QuestionRANKING IN VB.NET MYSQL Pin
KipkoechE11-Feb-15 1:30
KipkoechE11-Feb-15 1:30 
AnswerRe: RANKING IN VB.NET MYSQL Pin
Richard MacCutchan11-Feb-15 1:39
mveRichard MacCutchan11-Feb-15 1:39 
QuestionDATAGRIDVIEW VB.NET Pin
KipkoechE8-Feb-15 17:21
KipkoechE8-Feb-15 17:21 
I have a datagridview with the columns Totalscore,MARK1,MARK2,MARK3,..MARK10. my problem is how i can check if less than 7 cells in a row are filled with values then update TotalScore as -1 otherwise if 7 or more have values then find the total of the cells.

i had tried with this but could not succeed

Try
For i As Integer = 9 To Me.DataGridView1.Rows.Count - 1

With Me.DataGridView1.Rows(i)

If IsDBNull(.Cells(9).Value()) OrElse .Cells(9).Value() Is Nothing OrElse .Cells(9).Value().ToString().Trim() = "" Then
ttScore = "-1"
avg = "-1"
points = "-1"
pos = "-1"
.Cells(2).Value() = ttScore
.Cells(3).Value() = avg
.Cells(4).Value() = pos
.Cells(5).Value() = points
Else
ttScore = "1"
avg = "1"
points = "1"
pos = "1"
.Cells(2).Value() = ttScore
.Cells(3).Value() = avg
.Cells(4).Value() = pos
.Cells(5).Value() = points
End If

End With
Next
Catch ex As Exception
MsgBox(ex.Message)
End Try
QuestionRe: DATAGRIDVIEW VB.NET Pin
Eddy Vluggen10-Feb-15 11:28
professionalEddy Vluggen10-Feb-15 11:28 
AnswerRe: DATAGRIDVIEW VB.NET Pin
KipkoechE10-Feb-15 18:29
KipkoechE10-Feb-15 18:29 
QuestionRe: DATAGRIDVIEW VB.NET Pin
Richard MacCutchan10-Feb-15 21:31
mveRichard MacCutchan10-Feb-15 21:31 
AnswerRe: DATAGRIDVIEW VB.NET Pin
KipkoechE10-Feb-15 21:58
KipkoechE10-Feb-15 21:58 
AnswerRe: DATAGRIDVIEW VB.NET Pin
KipkoechE10-Feb-15 22:04
KipkoechE10-Feb-15 22:04 
QuestionVB.NET MYSQL Pin
KipkoechE8-Feb-15 3:53
KipkoechE8-Feb-15 3:53 
SuggestionRe: VB.NET MYSQL Pin
Richard MacCutchan8-Feb-15 7:20
mveRichard MacCutchan8-Feb-15 7:20 
GeneralRe: VB.NET MYSQL Pin
KipkoechE8-Feb-15 17:23
KipkoechE8-Feb-15 17:23 
QuestionThe control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
saifulalam256-Feb-15 18:53
professionalsaifulalam256-Feb-15 18:53 
AnswerRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
Dave Kreskowiak7-Feb-15 3:12
mveDave Kreskowiak7-Feb-15 3:12 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
saifulalam257-Feb-15 3:26
professionalsaifulalam257-Feb-15 3:26 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
Dave Kreskowiak7-Feb-15 4:54
mveDave Kreskowiak7-Feb-15 4:54 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
saifulalam258-Feb-15 0:08
professionalsaifulalam258-Feb-15 0:08 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
Dave Kreskowiak8-Feb-15 4:08
mveDave Kreskowiak8-Feb-15 4:08 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
saifulalam258-Feb-15 17:14
professionalsaifulalam258-Feb-15 17:14 
GeneralRe: The control with ID 'UpdatePanel1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it. Pin
Dave Kreskowiak9-Feb-15 2:16
mveDave Kreskowiak9-Feb-15 2:16 
QuestionHow To Show Dll code in asp.net Pin
Member 1124576229-Jan-15 18:31
Member 1124576229-Jan-15 18:31 

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.