Click here to Skip to main content
15,917,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: read file( binaryformater Serialize)format Pin
Daniel Turini6-Dec-04 4:33
Daniel Turini6-Dec-04 4:33 
Generaldynamic reuse of form Pin
ppp0015-Dec-04 23:57
ppp0015-Dec-04 23:57 
GeneralRe: dynamic reuse of form Pin
Stanciu Vlad6-Dec-04 4:29
Stanciu Vlad6-Dec-04 4:29 
Generalsplitter and forms Pin
ppp0015-Dec-04 23:40
ppp0015-Dec-04 23:40 
GeneralRe: splitter and forms Pin
Dave Kreskowiak6-Dec-04 4:35
mveDave Kreskowiak6-Dec-04 4:35 
GeneralTrim all unreadable characters Pin
El'Cachubrey5-Dec-04 23:38
El'Cachubrey5-Dec-04 23:38 
GeneralRe: Trim all unreadable characters Pin
DavidNohejl5-Dec-04 23:47
DavidNohejl5-Dec-04 23:47 
GeneralRe: Trim all unreadable characters Pin
El'Cachubrey6-Dec-04 0:09
El'Cachubrey6-Dec-04 0:09 
GeneralRe: Trim all unreadable characters Pin
DavidNohejl6-Dec-04 0:29
DavidNohejl6-Dec-04 0:29 
GeneralRe: Trim all unreadable characters Pin
DavidNohejl6-Dec-04 1:01
DavidNohejl6-Dec-04 1:01 
GeneralRe: Trim all unreadable characters Pin
El'Cachubrey6-Dec-04 19:51
El'Cachubrey6-Dec-04 19:51 
QuestionHow to remove the control box (The 3 buttons of a window at the top right corner) of a MDI Form? Pin
ting6685-Dec-04 22:43
ting6685-Dec-04 22:43 
AnswerRe: How to remove the control box (The 3 buttons of a window at the top right corner) of a MDI Form? Pin
Stefan Troschuetz6-Dec-04 1:11
Stefan Troschuetz6-Dec-04 1:11 
AnswerRe: How to remove the control box (The 3 buttons of a window at the top right corner) of a MDI Form? Pin
Stanciu Vlad6-Dec-04 4:35
Stanciu Vlad6-Dec-04 4:35 
Generalhelp! Serializable Pin
chinimimita5-Dec-04 22:34
chinimimita5-Dec-04 22:34 
GeneralSave Drawing C# Pin
mathon5-Dec-04 22:20
mathon5-Dec-04 22:20 
GeneralRe: Save Drawing C# Pin
DavidNohejl6-Dec-04 0:06
DavidNohejl6-Dec-04 0:06 
GeneralRe: Save Drawing C# Pin
mathon6-Dec-04 3:01
mathon6-Dec-04 3:01 
GeneralRe: Save Drawing C# Pin
DavidNohejl6-Dec-04 10:44
DavidNohejl6-Dec-04 10:44 
GeneralRe: Save Drawing C# Pin
mathon6-Dec-04 5:45
mathon6-Dec-04 5:45 
GeneralRe: Save Drawing C# Pin
DavidNohejl6-Dec-04 10:51
DavidNohejl6-Dec-04 10:51 
GeneralAccessing webform controls in class Pin
Nilesh Hapse5-Dec-04 22:09
Nilesh Hapse5-Dec-04 22:09 
Generaldisplay data in datagrid using the datareader Pin
steve_rm5-Dec-04 19:26
steve_rm5-Dec-04 19:26 
I am trying to display data from a table using the datagrid. This is the code l have used.

cnnOverdueBooks.Open(); <br />
string querySearch = @"SELECT RefNumber, Title, DateOut, DateDue FROM Book WHERE Status = 'On loan' "; <br />
<br />
OleDbCommand cmdDisplayBooks = cnnOverdueBooks.CreateCommand(); <br />
OleDbDataReader drDisplayBooks; <br />
cmdDisplayBooks.CommandType = CommandType.Text; <br />
cmdDisplayBooks.CommandText = querySearch; <br />
drDisplayBooks = cmdDisplayBooks.ExecuteReader(); <br />
grdOverdueBooks.DataSource = drDisplayBooks; 


Error message "Complex databinding accepts as a data source either an IList or an IListSource"

Thanks in advance,

Steve
GeneralRe: display data in datagrid using the datareader Pin
Daniel Turini5-Dec-04 20:22
Daniel Turini5-Dec-04 20:22 
QuestionHow do you map a network drive? Pin
SeanV5-Dec-04 19:25
SeanV5-Dec-04 19:25 

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.