Click here to Skip to main content
15,918,049 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Visual basic 2008 Express: How to receive email Pin
Christian Graus2-Jun-09 0:31
protectorChristian Graus2-Jun-09 0:31 
AnswerRe: Visual basic 2008 Express: How to receive email Pin
S. Senthil Kumar2-Jun-09 1:49
S. Senthil Kumar2-Jun-09 1:49 
AnswerRe: Visual basic 2008 Express: How to receive email [modified] Pin
DidiKunz2-Jun-09 3:30
DidiKunz2-Jun-09 3:30 
GeneralRe: Visual basic 2008 Express: How to receive email Pin
0x3c02-Jun-09 4:15
0x3c02-Jun-09 4:15 
GeneralRe: Visual basic 2008 Express: How to receive email Pin
DidiKunz2-Jun-09 10:55
DidiKunz2-Jun-09 10:55 
QuestionXLL addin Pin
JR2121-Jun-09 23:45
JR2121-Jun-09 23:45 
AnswerRe: XLL addin Pin
DidiKunz2-Jun-09 3:25
DidiKunz2-Jun-09 3:25 
GeneralRe: XLL addin Pin
JR2122-Jun-09 19:45
JR2122-Jun-09 19:45 
GeneralRe: XLL addin Pin
DidiKunz2-Jun-09 20:38
DidiKunz2-Jun-09 20:38 
GeneralRe: XLL addin Pin
JR2123-Jun-09 20:25
JR2123-Jun-09 20:25 
AnswerRe: XLL addin [modified] Pin
AlexesDad21-Jun-09 2:05
AlexesDad21-Jun-09 2:05 
QuestionWhy two files are under one process in task manager. _ vb.net 2008 Pin
Pankaj Garg1-Jun-09 23:26
Pankaj Garg1-Jun-09 23:26 
AnswerRe: Why two files are under one process in task manager. _ vb.net 2008 Pin
Christian Graus1-Jun-09 23:38
protectorChristian Graus1-Jun-09 23:38 
GeneralRe: Why two files are under one process in task manager. _ vb.net 2008 Pin
Pankaj Garg2-Jun-09 1:01
Pankaj Garg2-Jun-09 1:01 
GeneralRe: Why two files are under one process in task manager. _ vb.net 2008 Pin
JR2122-Jun-09 1:31
JR2122-Jun-09 1:31 
QuestionHow to save an image in access Pin
mirzamujib1-Jun-09 21:44
mirzamujib1-Jun-09 21:44 
AnswerRe: How to save an image in access Pin
Christian Graus1-Jun-09 21:53
protectorChristian Graus1-Jun-09 21:53 
GeneralRe: How to save an image in access Pin
mirzamujib2-Jun-09 0:55
mirzamujib2-Jun-09 0:55 
GeneralRe: How to save an image in access Pin
Dave Kreskowiak2-Jun-09 4:44
mveDave Kreskowiak2-Jun-09 4:44 
GeneralRe: How to save an image in access Pin
Jon_Boy2-Jun-09 1:52
Jon_Boy2-Jun-09 1:52 
AnswerRe: How to save an image in access Pin
mindserve1-Jun-09 23:13
mindserve1-Jun-09 23:13 
GeneralRe: How to save an image in access Pin
mirzamujib2-Jun-09 0:58
mirzamujib2-Jun-09 0:58 
GeneralRe: How to save an image in access Pin
Tom Deketelaere2-Jun-09 1:09
professionalTom Deketelaere2-Jun-09 1:09 
GeneralRe: How to save an image in access Pin
mirzamujib2-Jun-09 2:00
mirzamujib2-Jun-09 2:00 
Hello Tom

here i''m copying my code,plz have a look on it and suggest me how should i write code for my insert command.

Dim connectionstring As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=C:\Contacts3\mycontacts.mdb;Persist Security Info=False"
Dim con As New OleDbConnection(connectionstring)
Dim cmd as new OleDbCommand
Try

con.Open()
Dim str As String = "Insert into mycontactstab values ( '" & TextBox6.Text & "','" & TextBox4.Text & "','" & TextBox7.Text & "','" & TextBox10.Text & "','" & TextBox11.Text & "','" & TextBox8.Text & "','" & TextBox9.Text & "',PicureBox1.image)"----(here wht should i write as i took picture box to retrieve and save an image)-----
Dim cmd As New OleDbCommand(str, con)

If cmd.ExecuteNonQuery() Then
GeneralRe: How to save an image in access Pin
Tom Deketelaere2-Jun-09 2:10
professionalTom Deketelaere2-Jun-09 2:10 

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.