Click here to Skip to main content
16,006,442 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow to compile web pages Pin
sumit2121-Mar-05 21:47
sumit2121-Mar-05 21:47 
AnswerRe: how to compile web pages Pin
User 25755221-Mar-05 22:11
User 25755221-Mar-05 22:11 
AnswerRe: how to compile web pages Pin
Dave Kreskowiak22-Mar-05 0:54
mveDave Kreskowiak22-Mar-05 0:54 
Questionhow to make oledb connection through code Pin
sumit2121-Mar-05 20:55
sumit2121-Mar-05 20:55 
AnswerRe: how to make oledb connection through code Pin
Colin Angus Mackay21-Mar-05 21:13
Colin Angus Mackay21-Mar-05 21:13 
GeneralRe: how to make oledb connection through code Pin
sumit2121-Mar-05 21:17
sumit2121-Mar-05 21:17 
GeneralRe: how to make oledb connection through code Pin
Colin Angus Mackay21-Mar-05 21:20
Colin Angus Mackay21-Mar-05 21:20 
GeneralRe: how to make oledb connection through code Pin
sumit2121-Mar-05 21:43
sumit2121-Mar-05 21:43 
i m giving u my code snippet for ur convinience


Dim con As OleDbConnection = New OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;initial catalog=db1;data source=.,user id=admin, password=")
Dim ds As DataSet
Dim com As OleDbCommand
Dim adap As OleDbDataAdapter


Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
com = New OleDbCommand("select * from table1", con)
adap = New OleDbDataAdapter()
adap.SelectCommand = com
ds = New DataSet()
Try
adap.Fill(ds, "table1")
Catch ex As System.Exception
MsgBox(ex.Source)
MsgBox(ex.Message)
End Try


error source--->microsoft oledb service components
error message---> multiple step oledb generated errors. check each oledb status value, if available.
work not done
GeneralRe: how to make oledb connection through code Pin
Dave Kreskowiak22-Mar-05 0:48
mveDave Kreskowiak22-Mar-05 0:48 
GeneralRe: how to make oledb connection through code Pin
sumit2122-Mar-05 1:27
sumit2122-Mar-05 1:27 
GeneralRe: how to make oledb connection through code Pin
Dave Kreskowiak22-Mar-05 1:58
mveDave Kreskowiak22-Mar-05 1:58 
Generalretrieving e-mails from outlook Pin
MagicGirL8321-Mar-05 19:43
MagicGirL8321-Mar-05 19:43 
GeneralExplorer Bars Pin
micromause21-Mar-05 19:36
micromause21-Mar-05 19:36 
GeneralRe: Explorer Bars Pin
sumit2121-Mar-05 22:08
sumit2121-Mar-05 22:08 
GeneralRe: Explorer Bars Pin
Dave Kreskowiak22-Mar-05 0:41
mveDave Kreskowiak22-Mar-05 0:41 
GeneralRegistryKey GetType() help Pin
badcredit21-Mar-05 17:25
badcredit21-Mar-05 17:25 
GeneralRe: RegistryKey GetType() help Pin
Christian Graus21-Mar-05 17:37
protectorChristian Graus21-Mar-05 17:37 
GeneralRe: RegistryKey GetType() help Pin
Dave Kreskowiak22-Mar-05 0:29
mveDave Kreskowiak22-Mar-05 0:29 
GeneralDeleting an entry in datagrid Pin
Chaos Machine21-Mar-05 16:48
Chaos Machine21-Mar-05 16:48 
GeneralRe: Deleting an entry in datagrid Pin
sumit2121-Mar-05 21:03
sumit2121-Mar-05 21:03 
GeneralSMART with VB.NET Pin
Chaos Machine21-Mar-05 15:46
Chaos Machine21-Mar-05 15:46 
GeneralCountry Drop Down Pin
Jaydeanster21-Mar-05 14:52
Jaydeanster21-Mar-05 14:52 
GeneralRe: Country Drop Down Pin
Christian Graus21-Mar-05 15:01
protectorChristian Graus21-Mar-05 15:01 
QuestionHow to hide applications from task list on win NT/XP Pin
lamah21-Mar-05 11:01
lamah21-Mar-05 11:01 
AnswerRe: How to hide applications from task list on win NT/XP Pin
Dave Kreskowiak21-Mar-05 12:41
mveDave Kreskowiak21-Mar-05 12:41 

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.