Click here to Skip to main content
15,913,941 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionOutlook2003 Pin
PeterStaal28-Sep-07 2:21
PeterStaal28-Sep-07 2:21 
AnswerRe: Outlook2003 Pin
Dave Kreskowiak28-Sep-07 6:07
mveDave Kreskowiak28-Sep-07 6:07 
QuestionPass Value in Crystal Report Pin
TeJAs.....28-Sep-07 2:11
TeJAs.....28-Sep-07 2:11 
AnswerRe: Pass Value in Crystal Report Pin
DigiOz Multimedia28-Sep-07 8:50
DigiOz Multimedia28-Sep-07 8:50 
QuestionConnecting to ADO.NET Pin
ashwinibhalerao28-Sep-07 1:47
ashwinibhalerao28-Sep-07 1:47 
AnswerRe: Connecting to ADO.NET Pin
Ajay.k_Singh28-Sep-07 2:24
Ajay.k_Singh28-Sep-07 2:24 
AnswerRe: Connecting to ADO.NET Pin
Vimalsoft(Pty) Ltd28-Sep-07 2:39
professionalVimalsoft(Pty) Ltd28-Sep-07 2:39 
AnswerRe: Connecting to ADO.NET Pin
Ajay.k_Singh28-Sep-07 2:46
Ajay.k_Singh28-Sep-07 2:46 
In case if you want to see the syntax which will be used to implement database connectivity to TextBoxes, following is a small code snippet-

----------------------Code Start-----------------------------------------------
General Declaration-


Imports System.Data.OleDb

-----------------------------------------------------

Public Class Form1

Dim ds As DataSet

Dim con As New OleDbConnection("Put Connection String here")


Dim da As New OleDbDataAdapter("Select * from table1", con)

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

da.Fill(ds, "Table1")

Me.TextBox1.Multiline = True

Me.TextBox1.DataBindings.Add("Text", ds, "Table1.field1")

End Sub

End Class

---------------------Code End-------------------

I hope this helpsSmile | :) .

-Dave.

Dave Traister,
ComponentOne LLC.
www.componentone.com

Questiondatagrid sorting using column headers Pin
hepsy.i28-Sep-07 1:31
hepsy.i28-Sep-07 1:31 
AnswerRe: datagrid sorting using column headers Pin
Vimalsoft(Pty) Ltd28-Sep-07 2:51
professionalVimalsoft(Pty) Ltd28-Sep-07 2:51 
GeneralRe: datagrid sorting using column headers Pin
Dave Kreskowiak28-Sep-07 5:58
mveDave Kreskowiak28-Sep-07 5:58 
AnswerRe: datagrid sorting using column headers Pin
Dave Kreskowiak28-Sep-07 6:03
mveDave Kreskowiak28-Sep-07 6:03 
QuestionReceive POP3 e-mails as .eml file Pin
Dan Suthar28-Sep-07 1:26
professionalDan Suthar28-Sep-07 1:26 
AnswerRe: Receive POP3 e-mails as .eml file Pin
Dave Kreskowiak28-Sep-07 5:57
mveDave Kreskowiak28-Sep-07 5:57 
GeneralRe: Receive POP3 e-mails as .eml file Pin
Dan Suthar28-Sep-07 6:16
professionalDan Suthar28-Sep-07 6:16 
GeneralRe: Receive POP3 e-mails as .eml file Pin
Dave Kreskowiak28-Sep-07 7:11
mveDave Kreskowiak28-Sep-07 7:11 
GeneralRe: Receive POP3 e-mails as .eml file Pin
Dan Suthar29-Sep-07 6:36
professionalDan Suthar29-Sep-07 6:36 
GeneralRe: Receive POP3 e-mails as .eml file Pin
Dave Kreskowiak29-Sep-07 7:46
mveDave Kreskowiak29-Sep-07 7:46 
QuestionHow to deflect a line Pin
Yasin78628-Sep-07 1:23
Yasin78628-Sep-07 1:23 
AnswerRe: How to deflect a line Pin
Christian Graus28-Sep-07 1:43
protectorChristian Graus28-Sep-07 1:43 
AnswerRe: How to deflect a line Pin
Luc Pattyn28-Sep-07 2:33
sitebuilderLuc Pattyn28-Sep-07 2:33 
AnswerRe: How to deflect a line Pin
Dave Kreskowiak28-Sep-07 5:51
mveDave Kreskowiak28-Sep-07 5:51 
QuestionWindows Service Pin
André Stroebel28-Sep-07 0:19
André Stroebel28-Sep-07 0:19 
AnswerRe: Windows Service Pin
GuyThiebaut28-Sep-07 0:32
professionalGuyThiebaut28-Sep-07 0:32 
GeneralRe: Windows Service Pin
André Stroebel28-Sep-07 0:51
André Stroebel28-Sep-07 0: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.