Click here to Skip to main content
15,895,557 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: MIVA in ASP.Net VB Code Pin
Christian Graus10-May-07 10:43
protectorChristian Graus10-May-07 10:43 
QuestionUsing JDBCDataGrid example and am trying to enable row selection Pin
tleyden@imagine.ie8-May-07 23:03
tleyden@imagine.ie8-May-07 23:03 
QuestionUser controls Pin
Ridge Howison8-May-07 11:33
Ridge Howison8-May-07 11:33 
AnswerRe: User controls Pin
Christian Graus8-May-07 18:17
protectorChristian Graus8-May-07 18:17 
QuestionUsing the SQLDataReader Pin
No-e8-May-07 6:01
No-e8-May-07 6:01 
AnswerRe: Using the SQLDataReader Pin
Fred_Smith8-May-07 7:31
Fred_Smith8-May-07 7:31 
GeneralRe: Using the SQLDataReader Pin
No-e8-May-07 7:37
No-e8-May-07 7:37 
GeneralRe: Using the SQLDataReader Pin
Fred_Smith8-May-07 8:24
Fred_Smith8-May-07 8:24 
Yes, for each one; eg:

if first field is an integer and the second a string, then:

if IsDbNull( dr.GetInt32(0) ) Then
' write "" string
else
' write CStr(dr.GetInt32(0))
end if

if IsDbNull( dr.GetString(1) ) Then
' write "" string
else
' write dr.GetString(1)
end if

You can also use GetValue(index) and cast that as you like (good for date fields)

cheers
F


QuestionReorder Items a Listbox Pin
ljuliuss8-May-07 5:59
ljuliuss8-May-07 5:59 
QuestionVBScript in an external file Pin
#realJSOP8-May-07 4:17
mve#realJSOP8-May-07 4:17 
AnswerRe: VBScript in an external file Pin
andyharman8-May-07 4:36
professionalandyharman8-May-07 4:36 
GeneralRe: VBScript in an external file Pin
#realJSOP8-May-07 4:56
mve#realJSOP8-May-07 4:56 
QuestionForm Confusion Pin
No-e8-May-07 4:11
No-e8-May-07 4:11 
AnswerRe: Form Confusion Pin
Guffa8-May-07 6:02
Guffa8-May-07 6:02 
GeneralRe: Form Confusion Pin
No-e8-May-07 6:04
No-e8-May-07 6:04 
Questionscrollable div Pin
xxrono8-May-07 4:09
xxrono8-May-07 4:09 
AnswerRe: scrollable div Pin
#realJSOP8-May-07 4:14
mve#realJSOP8-May-07 4:14 
GeneralRe: scrollable div Pin
xxrono8-May-07 4:42
xxrono8-May-07 4:42 
GeneralRe: scrollable div Pin
#realJSOP8-May-07 4:58
mve#realJSOP8-May-07 4:58 
GeneralRe: scrollable div Pin
RichardGrimmer8-May-07 5:51
RichardGrimmer8-May-07 5:51 
GeneralRe: scrollable div Pin
xxrono8-May-07 6:08
xxrono8-May-07 6:08 
GeneralRe: scrollable div Pin
#realJSOP8-May-07 6:28
mve#realJSOP8-May-07 6:28 
GeneralRe: scrollable div Pin
xxrono8-May-07 7:24
xxrono8-May-07 7:24 
GeneralRe: scrollable div Pin
RichardGrimmer8-May-07 21:45
RichardGrimmer8-May-07 21:45 
GeneralRe: scrollable div Pin
xxrono8-May-07 23:51
xxrono8-May-07 23: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.