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

Visual Basic

 
AnswerRe: Save Changes Pin
giddy_guitarist17-Jul-06 0:38
giddy_guitarist17-Jul-06 0:38 
GeneralRe: Save Changes Pin
slSoftware17-Jul-06 0:59
slSoftware17-Jul-06 0:59 
QuestionHow to make code run with 2.0 framework Pin
g6gak16-Jul-06 23:42
g6gak16-Jul-06 23:42 
AnswerRe: How to make code run with 2.0 framework Pin
mr_lasseter17-Jul-06 2:27
mr_lasseter17-Jul-06 2:27 
GeneralRe: How to make code run with 2.0 framework Pin
g6gak17-Jul-06 2:40
g6gak17-Jul-06 2:40 
QuestionHow to add an element to a SOAP envelope? Pin
Peter van der Veen16-Jul-06 23:40
Peter van der Veen16-Jul-06 23:40 
QuestionFilter dataset Pin
ravihd16-Jul-06 22:16
ravihd16-Jul-06 22:16 
AnswerRe: Filter dataset Pin
GuruPandian16-Jul-06 23:26
GuruPandian16-Jul-06 23:26 
Hi,
We can filter the Data from DataSet as follows..

1. Fetching Filtered Data and Filling to DataSet.
-------------------------------------------------
OleDbDataAdapter1.SelectCommand.Parameters("ACNo").Value = "60891234"
OleDbDataAdapter1.Fill(DataSet11)

2.
Dim FilRows As DataRow() = _
Dset.Tables(0).Select("ACNo='60891234'", "ACHName", DataViewRowState.Added )

Dim r As DataRow
Dim c As DataColumn
For Each r In FilRows
For Each c In r.Table.Columns
Console.Write( "\t {0}", r(c) )
Next c
Console.WriteLine()
Next r

Notes :
-------
"ACNo='60891234'" = Condition for Fintering Data
"ACHName" = Column to Sort The Data.

With Regards,
Pandian S

GeneralRe: Filter dataset Pin
ravihd16-Jul-06 23:37
ravihd16-Jul-06 23:37 
QuestionHow to create dynamic classes from XML file? Pin
Amol Ravatale16-Jul-06 21:45
Amol Ravatale16-Jul-06 21:45 
QuestionData storage [modified] Pin
codeadair16-Jul-06 21:22
codeadair16-Jul-06 21:22 
AnswerRe: Data storage Pin
Dave Kreskowiak17-Jul-06 1:45
mveDave Kreskowiak17-Jul-06 1:45 
GeneralRe: Data storage Pin
codeadair17-Jul-06 1:53
codeadair17-Jul-06 1:53 
GeneralRe: Data storage Pin
Dave Kreskowiak17-Jul-06 2:47
mveDave Kreskowiak17-Jul-06 2:47 
GeneralRe: Data storage Pin
codeadair17-Jul-06 14:20
codeadair17-Jul-06 14:20 
Questionvb.net HTML viewer (and editor) Pin
t3j016-Jul-06 21:09
t3j016-Jul-06 21:09 
AnswerRe: vb.net HTML viewer (and editor) Pin
Rizwan Bashir16-Jul-06 21:59
Rizwan Bashir16-Jul-06 21:59 
GeneralRe: vb.net HTML viewer (and editor) Pin
t3j017-Jul-06 4:49
t3j017-Jul-06 4:49 
Questionplease help Pin
harish13916-Jul-06 20:43
harish13916-Jul-06 20:43 
AnswerRe: please help Pin
Rizwan Bashir16-Jul-06 22:01
Rizwan Bashir16-Jul-06 22:01 
GeneralRe: please help Pin
harish13916-Jul-06 23:48
harish13916-Jul-06 23:48 
AnswerRe: please help Pin
PlayByTheRules16-Jul-06 23:18
PlayByTheRules16-Jul-06 23:18 
QuestionParametrise stored procedure Pin
Sasmi16-Jul-06 20:25
Sasmi16-Jul-06 20:25 
AnswerRe: Parametrise stored procedure Pin
Dave Kreskowiak17-Jul-06 1:39
mveDave Kreskowiak17-Jul-06 1:39 
Questionsetting "Allow service to interact with the desktop" property through coding in windows service [modified] Pin
Kapil Thakur16-Jul-06 20:11
Kapil Thakur16-Jul-06 20:11 

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.