Click here to Skip to main content
15,898,134 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionworking with USB Pin
hrishi32128-Jul-11 2:45
hrishi32128-Jul-11 2:45 
AnswerRe: working with USB Pin
Dr.Walt Fair, PE28-Jul-11 19:26
professionalDr.Walt Fair, PE28-Jul-11 19:26 
QuestionWhere to update datagrid cells Pin
RudyVB6827-Jul-11 7:26
RudyVB6827-Jul-11 7:26 
AnswerRe: Where to update datagrid cells Pin
Suresh Suthar27-Jul-11 20:40
professionalSuresh Suthar27-Jul-11 20:40 
GeneralRe: Where to update datagrid cells Pin
LCARS x3211-Aug-11 6:24
LCARS x3211-Aug-11 6:24 
QuestionGridView appears to have no data when trying to sort it Pin
dannyboi8627-Jul-11 1:12
dannyboi8627-Jul-11 1:12 
AnswerRe: GridView appears to have no data when trying to sort it Pin
Shameel27-Jul-11 2:24
professionalShameel27-Jul-11 2:24 
GeneralDataAdapter / Datatable Pin
David Mujica27-Jul-11 2:49
David Mujica27-Jul-11 2:49 
Instead of using, sqlReader = sqlCmd.ExecuteReader()

Use this:
Dim DA As SQLDataAdapter

DA = New SqlDataAdapter(SQLcmd)
DA.Fill(DT)

Gridview2.Datasource = DT

When you use a dataadapter to "Fill" a datatable, it will fetch all the rows into the datatable, so you must be careful that you are not fetching thousands of rows of data, your memory and performance will suffer tremendously.

With the above changes, your grid should sort when you click on a column heading.

david
GeneralRe: DataAdapter / Datatable Pin
dannyboi8627-Jul-11 3:29
dannyboi8627-Jul-11 3:29 
GeneralRe: DataAdapter / Datatable Pin
David Mujica27-Jul-11 10:49
David Mujica27-Jul-11 10:49 
GeneralRe: DataAdapter / Datatable Pin
dannyboi8627-Jul-11 22:29
dannyboi8627-Jul-11 22:29 
GeneralRe: DataAdapter / Datatable Pin
Shameel28-Jul-11 3:16
professionalShameel28-Jul-11 3:16 
GeneralRe: DataAdapter / Datatable Pin
David Mujica28-Jul-11 3:20
David Mujica28-Jul-11 3:20 
GeneralRe: DataAdapter / Datatable Pin
dannyboi8628-Jul-11 4:59
dannyboi8628-Jul-11 4:59 
GeneralRe: DataAdapter / Datatable Pin
David Mujica28-Jul-11 9:59
David Mujica28-Jul-11 9:59 
GeneralRe: DataAdapter / Datatable Pin
dannyboi8628-Jul-11 22:34
dannyboi8628-Jul-11 22:34 
GeneralRe: DataAdapter / Datatable Pin
David Mujica29-Jul-11 3:12
David Mujica29-Jul-11 3:12 
GeneralRe: DataAdapter / Datatable Pin
dannyboi8629-Jul-11 5:58
dannyboi8629-Jul-11 5:58 
GeneralRe: DataAdapter / Datatable Pin
David Mujica1-Aug-11 10:50
David Mujica1-Aug-11 10:50 
GeneralRe: GridView appears to have no data when trying to sort it Pin
dannyboi8627-Jul-11 3:45
dannyboi8627-Jul-11 3:45 
GeneralRe: GridView appears to have no data when trying to sort it Pin
Shameel27-Jul-11 5:23
professionalShameel27-Jul-11 5:23 
QuestionSearch and delete files Pin
hendrikbez26-Jul-11 22:29
hendrikbez26-Jul-11 22:29 
AnswerRe: Search and delete files Pin
Andy_L_J26-Jul-11 23:09
Andy_L_J26-Jul-11 23:09 
AnswerRe: Search and delete files Pin
Dave Kreskowiak27-Jul-11 1:27
mveDave Kreskowiak27-Jul-11 1:27 
AnswerRe: Search and delete files Pin
Carmelo La Monica27-Jul-11 2:14
professionalCarmelo La Monica27-Jul-11 2:14 

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.