Click here to Skip to main content
15,891,810 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionStreamwriter Pin
mehmetned8-Sep-08 4:28
mehmetned8-Sep-08 4:28 
AnswerRe: Streamwriter Pin
Chinners8-Sep-08 4:36
Chinners8-Sep-08 4:36 
AnswerRe: Streamwriter Pin
Steven J Jowett8-Sep-08 4:41
Steven J Jowett8-Sep-08 4:41 
QuestionDB Null Value Pin
zagari8-Sep-08 3:55
zagari8-Sep-08 3:55 
AnswerRe: Valori Null dal DB Pin
Manas Bhardwaj8-Sep-08 4:08
professionalManas Bhardwaj8-Sep-08 4:08 
AnswerRe: Valori Null dal DB Pin
leckey8-Sep-08 8:50
leckey8-Sep-08 8:50 
JokeRe: Valori Null dal DB Pin
Guffa8-Sep-08 11:13
Guffa8-Sep-08 11:13 
AnswerRe: DB Null Value Pin
Johan Hakkesteegt9-Sep-08 0:22
Johan Hakkesteegt9-Sep-08 0:22 
The best solution ofcourse is to adapt your query (SELECT ISNULL(YourTable.YourField, 0) etc). If you can not adapt the query, another solution is to use IsDbNull(Datarow.Item("YourField"))
If IsDbNull(Datarow.Item("YourField")) Then
   Textbox.Text = ""
Else
   Textbox.Text = Datarow.Item("YourField")
End If


Hope it helps,

Johan

My advice is free, and you may get what you paid for.

QuestionThanks Dave Pin
Kofi Ambrose8-Sep-08 0:54
Kofi Ambrose8-Sep-08 0:54 
AnswerRe: Thanks Dave Pin
Steven J Jowett8-Sep-08 1:06
Steven J Jowett8-Sep-08 1:06 
QuestionBig up man. Pin
Kofi Ambrose8-Sep-08 0:52
Kofi Ambrose8-Sep-08 0:52 
AnswerRe: Big up man. Pin
Manas Bhardwaj8-Sep-08 2:42
professionalManas Bhardwaj8-Sep-08 2:42 
GeneralRe: Big up man. Pin
Eslam Afifi8-Sep-08 4:26
Eslam Afifi8-Sep-08 4:26 
QuestionSotoring flash file into sql server Pin
rajesh_ncc8-Sep-08 0:07
rajesh_ncc8-Sep-08 0:07 
AnswerRe: Sotoring flash file into sql server Pin
Mycroft Holmes8-Sep-08 0:19
professionalMycroft Holmes8-Sep-08 0:19 
QuestionShortcut in WindowCE Pin
hitesh sojitra7-Sep-08 23:56
hitesh sojitra7-Sep-08 23:56 
AnswerRe: Shortcut in WindowCE Pin
Steven J Jowett8-Sep-08 4:44
Steven J Jowett8-Sep-08 4:44 
AnswerRe: Shortcut in WindowCE Pin
hitesh sojitra8-Sep-08 18:38
hitesh sojitra8-Sep-08 18:38 
QuestionHow to do upload operation from VB6 making use of HTTP Pin
Ravi Bhat 36509677-Sep-08 20:49
Ravi Bhat 36509677-Sep-08 20:49 
AnswerRe: How to do upload operation from VB6 making use of HTTP Pin
Steven J Jowett8-Sep-08 1:02
Steven J Jowett8-Sep-08 1:02 
GeneralRe: How to do upload operation from VB6 making use of HTTP Pin
tinus@medbel.co.za9-Sep-08 20:28
tinus@medbel.co.za9-Sep-08 20:28 
Questionhow to pass two parameters in the address of thread , along with it's method name Pin
Nilish7-Sep-08 20:20
Nilish7-Sep-08 20:20 
AnswerRe: how to pass two parameters in the address of thread , along with it's method name Pin
Guffa7-Sep-08 21:31
Guffa7-Sep-08 21:31 
GeneralRe: how to pass two parameters in the address of thread , along with it's method name Pin
Mycroft Holmes8-Sep-08 0:20
professionalMycroft Holmes8-Sep-08 0:20 
GeneralRe: how to pass two parameters in the address of thread , along with it's method name Pin
Guffa8-Sep-08 1:15
Guffa8-Sep-08 1:15 

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.