Click here to Skip to main content
15,915,869 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Project Ideas [modifed] Pin
Archer28220-May-06 6:23
Archer28220-May-06 6:23 
GeneralRe: Project Ideas [modifed] Pin
User 171649220-May-06 10:57
professionalUser 171649220-May-06 10:57 
QuestionDeleting bitmap files after loading Pin
bytecarp19-May-06 7:34
bytecarp19-May-06 7:34 
AnswerRe: Deleting bitmap files after loading Pin
H@is@here19-May-06 14:49
H@is@here19-May-06 14:49 
GeneralRe: Deleting bitmap files after loading Pin
bytecarp19-May-06 15:19
bytecarp19-May-06 15:19 
QuestionRecordset Error Pin
Raistlin21_4519-May-06 5:41
Raistlin21_4519-May-06 5:41 
Questionstoring image in database Pin
prabhakar dwivedi19-May-06 2:46
prabhakar dwivedi19-May-06 2:46 
AnswerRe: storing image in database Pin
Raistlin21_4519-May-06 4:36
Raistlin21_4519-May-06 4:36 
Sub AddImage(rs As ADODB.Recordset, ByVal FileName As String)
Dim stm As ADODB.Stream

Set stm = New ADODB.Stream
With stm
.Type = adTypeBinary
.Open
.LoadFromFile FileName

'Insert the binary object into the table.
rs.AddNew
rs.Fields("DocumentColumnNameGoesHere").Value = .Read
rs.Update
.Close
End With
Set stm = Nothing

End Sub


For every action there is an equal and opposite malfunction
QuestionRunning a new Process Pin
Prafulla Kiran19-May-06 2:19
Prafulla Kiran19-May-06 2:19 
AnswerRe: Running a new Process Pin
MohammadAmiry19-May-06 3:05
MohammadAmiry19-May-06 3:05 
GeneralRe: Running a new Process Pin
Prafulla Kiran19-May-06 3:58
Prafulla Kiran19-May-06 3:58 
QuestionImports Microsoft.MediaPlayer.Interop Pin
Glen Conaway19-May-06 1:56
Glen Conaway19-May-06 1:56 
AnswerRe: Imports Microsoft.MediaPlayer.Interop Pin
Glen Conaway19-May-06 23:43
Glen Conaway19-May-06 23:43 
QuestionPrinter LOg maintaining Pin
fahad ahsan19-May-06 0:06
fahad ahsan19-May-06 0:06 
AnswerRe: Printer LOg maintaining Pin
Duncan Edwards Jones19-May-06 0:56
professionalDuncan Edwards Jones19-May-06 0:56 
QuestionBackgroundWorker problem Pin
User 91483318-May-06 23:24
User 91483318-May-06 23:24 
QuestionDevelopment in LINUX Pin
Mr. Arfan Qadir18-May-06 23:23
Mr. Arfan Qadir18-May-06 23:23 
AnswerRe: Development in LINUX Pin
Steve Pullan18-May-06 23:51
Steve Pullan18-May-06 23:51 
GeneralRe: Development in LINUX Pin
BoneSoft19-May-06 5:04
BoneSoft19-May-06 5:04 
GeneralRe: Development in LINUX Pin
Steve Pullan19-May-06 23:18
Steve Pullan19-May-06 23:18 
AnswerRe: Development in LINUX Pin
User 91483319-May-06 0:32
User 91483319-May-06 0:32 
QuestionScaleTransform Pin
Daniel Loczi18-May-06 21:57
Daniel Loczi18-May-06 21:57 
AnswerRe: ScaleTransform Pin
Robert Rohde18-May-06 22:07
Robert Rohde18-May-06 22:07 
GeneralRe: ScaleTransform Pin
Daniel Loczi18-May-06 22:16
Daniel Loczi18-May-06 22:16 
QuestionJapanese encoding Pin
dexom18-May-06 20:54
dexom18-May-06 20:54 

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.