Click here to Skip to main content
15,889,858 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Converting accented characters to ASCII Pin
supercat927-Nov-07 7:40
supercat927-Nov-07 7:40 
AnswerRe: Converting accented characters to ASCII Pin
azrafe718-Jan-10 3:21
azrafe718-Jan-10 3:21 
GeneralRe: Converting accented characters to ASCII Pin
supercat918-Jan-10 5:55
supercat918-Jan-10 5:55 
QuestionHow to encorparate other searches into my prog.. Pin
none5432126-Nov-07 14:02
none5432126-Nov-07 14:02 
AnswerRe: How to encorparate other searches into my prog.. Pin
Paul Conrad26-Nov-07 16:06
professionalPaul Conrad26-Nov-07 16:06 
QuestionVB.NET and MySQL Pin
Xeqtr_Blizz26-Nov-07 12:13
Xeqtr_Blizz26-Nov-07 12:13 
AnswerRe: VB.NET and MySQL Pin
Paul Conrad26-Nov-07 16:09
professionalPaul Conrad26-Nov-07 16:09 
GeneralRe: VB.NET and MySQL Pin
Xeqtr27-Nov-07 4:08
Xeqtr27-Nov-07 4:08 
Connect to MySQL I use this code:
'-------
Imports CoreLab.MySql

Dim oMySqlConn As MySqlConnection = New MySqlConnection()
Dim datAdap As MySqlDataAdapter
Dim commands As MySqlCommand
Private Sub frmChooseTasks_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

oMySqlConn.ConnectionString = "User ID=root;" & "Password=passw;" & "Host=localhost;" & "Port=3306;" & "Database=tasks;" & "Direct=true;" & "Protocol=TCP;" & "Compress=false;" & "Pooling=true;" & "Min Pool Size=0;" & "Max Pool Size=100;" & "Connection Lifetime=0"
oMySqlConn.Open()
commands.Connection = oMySqlConn
datAdap.SelectCommand = command
datAdap.Fill(dataSet, "Table")
lstvAvTasks.Items.Add(dataSet.Tables.Item(0).Rows(0).ToString) 'Adding to ListView data from MySQL,But it doesn't work
If (oMySqlConn.State = ConnectionState.Closed) Then
oMySqlConn.Open()

End If
End Sub

GeneralRe: VB.NET and MySQL Pin
Paul Conrad27-Nov-07 4:26
professionalPaul Conrad27-Nov-07 4:26 
GeneralRe: VB.NET and MySQL [modified] Pin
Xeqtr27-Nov-07 4:37
Xeqtr27-Nov-07 4:37 
GeneralRe: VB.NET and MySQL Pin
Paul Conrad27-Nov-07 5:53
professionalPaul Conrad27-Nov-07 5:53 
GeneralRe: VB.NET and MySQL Pin
Xeqtr27-Nov-07 6:47
Xeqtr27-Nov-07 6:47 
GeneralRe: VB.NET and MySQL Pin
Paul Conrad27-Nov-07 12:11
professionalPaul Conrad27-Nov-07 12:11 
Questionftp capability Pin
Ronr226-Nov-07 11:17
Ronr226-Nov-07 11:17 
AnswerRe: ftp capability Pin
Dave Kreskowiak26-Nov-07 17:03
mveDave Kreskowiak26-Nov-07 17:03 
QuestionVB.Net + Quicktime? Pin
Sorikan26-Nov-07 11:01
Sorikan26-Nov-07 11:01 
QuestionRemote Application Pin
asc1126-Nov-07 4:46
asc1126-Nov-07 4:46 
AnswerRe: Remote Application Pin
Dave Kreskowiak26-Nov-07 4:48
mveDave Kreskowiak26-Nov-07 4:48 
GeneralRe: Remote Application Pin
asc1126-Nov-07 9:03
asc1126-Nov-07 9:03 
GeneralRe: Remote Application Pin
Dave Kreskowiak26-Nov-07 9:45
mveDave Kreskowiak26-Nov-07 9:45 
QuestionIssue with saving image [modified] Pin
nishkarsh_k26-Nov-07 3:33
nishkarsh_k26-Nov-07 3:33 
AnswerRe: Issue with saving image Pin
Luc Pattyn26-Nov-07 4:29
sitebuilderLuc Pattyn26-Nov-07 4:29 
GeneralRe: Issue with saving image Pin
nishkarsh_k26-Nov-07 4:54
nishkarsh_k26-Nov-07 4:54 
GeneralRe: Issue with saving image Pin
nishkarsh_k26-Nov-07 4:57
nishkarsh_k26-Nov-07 4:57 
GeneralRe: Issue with saving image Pin
nishkarsh_k26-Nov-07 5:26
nishkarsh_k26-Nov-07 5:26 

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.