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

Visual Basic

 
GeneralRe: Revolutions-pack-like explorer? Pin
Dave Kreskowiak5-Sep-16 5:31
mveDave Kreskowiak5-Sep-16 5:31 
GeneralRe: Revolutions-pack-like explorer? Pin
DutchComputerKid5-Sep-16 21:58
DutchComputerKid5-Sep-16 21:58 
GeneralRe: Revolutions-pack-like explorer? Pin
Eddy Vluggen6-Sep-16 0:32
professionalEddy Vluggen6-Sep-16 0:32 
GeneralRe: Revolutions-pack-like explorer? Pin
Chris Quinn6-Sep-16 2:27
Chris Quinn6-Sep-16 2:27 
GeneralRe: Revolutions-pack-like explorer? Pin
Dave Kreskowiak6-Sep-16 2:33
mveDave Kreskowiak6-Sep-16 2:33 
GeneralRe: Revolutions-pack-like explorer? Pin
DutchComputerKid4-Sep-16 23:32
DutchComputerKid4-Sep-16 23:32 
QuestionDataTable Select Expressions Pin
jkirkerx31-Aug-16 10:51
professionaljkirkerx31-Aug-16 10:51 
AnswerRe: DataTable Select Expressions [solved] Pin
jkirkerx1-Sep-16 8:18
professionaljkirkerx1-Sep-16 8:18 
I found some snippets and tweaked them for my use. Sort of Linq, hard part was forming the expression without a reference.

I ended up dumping the first idea and went back to a DataView to grab my rows as a table, and them summed them up.

Calculate Sum (Total) of DataTable Columns using C# and VB.Net[^]
Dim dv_top10 As New DataView(table_Active)
dv_top10.Sort = "Y1_ATD Desc"
Dim dt_top10 = dv_top10.ToTable().Rows.Cast(Of DataRow)().Take(10)
Dim T10 As Decimal = dt_top10.AsEnumerable().Sum(Function(row) row.Field(Of Decimal)("Y1_ATD"))

GeneralRe: DataTable Select Expressions [solved] Pin
Richard Deeming1-Sep-16 9:37
mveRichard Deeming1-Sep-16 9:37 
GeneralRe: DataTable Select Expressions [solved] Pin
jkirkerx1-Sep-16 9:48
professionaljkirkerx1-Sep-16 9:48 
GeneralRe: DataTable Select Expressions [solved] Pin
jkirkerx1-Sep-16 9:52
professionaljkirkerx1-Sep-16 9:52 
QuestionSorting a DataSet Pin
jkirkerx30-Aug-16 12:00
professionaljkirkerx30-Aug-16 12:00 
AnswerRe: Sorting a DataSet [solved] Pin
jkirkerx30-Aug-16 12:27
professionaljkirkerx30-Aug-16 12:27 
QuestionPointer translation Pin
SepPax30-Aug-16 2:50
SepPax30-Aug-16 2:50 
AnswerRe: Pointer translation Pin
Michael_Davies30-Aug-16 3:23
Michael_Davies30-Aug-16 3:23 
AnswerRe: Pointer translation Pin
Richard MacCutchan30-Aug-16 4:34
mveRichard MacCutchan30-Aug-16 4:34 
Questionvisual basic Pin
Member 1270513126-Aug-16 5:33
Member 1270513126-Aug-16 5:33 
AnswerRe: visual basic Pin
Richard Deeming26-Aug-16 5:43
mveRichard Deeming26-Aug-16 5:43 
QuestionRe: visual basic Pin
ZurdoDev26-Aug-16 8:28
professionalZurdoDev26-Aug-16 8:28 
Questionneural network simulator in visual basic Pin
Member 1270337325-Aug-16 5:37
Member 1270337325-Aug-16 5:37 
AnswerRe: neural network simulator in visual basic Pin
Richard MacCutchan25-Aug-16 20:39
mveRichard MacCutchan25-Aug-16 20:39 
AnswerRe: neural network simulator in visual basic Pin
Dave Kreskowiak26-Aug-16 2:42
mveDave Kreskowiak26-Aug-16 2:42 
QuestionResizing and Positioning A Selected Image Pin
99Freddo23-Aug-16 23:01
99Freddo23-Aug-16 23:01 
AnswerRe: Resizing and Positioning A Selected Image Pin
Richard Deeming24-Aug-16 2:04
mveRichard Deeming24-Aug-16 2:04 
GeneralRe: Resizing and Positioning A Selected Image Pin
99Freddo24-Aug-16 11:51
99Freddo24-Aug-16 11:51 

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.