Click here to Skip to main content
15,894,460 members
Home / Discussions / C#
   

C#

 
Questionfont Pin
fmardani31-Jan-06 14:06
fmardani31-Jan-06 14:06 
AnswerRe: font Pin
Christian Graus31-Jan-06 14:27
protectorChristian Graus31-Jan-06 14:27 
QuestionNot All Code Paths Return A Value??? Pin
dbenisch31-Jan-06 13:49
dbenisch31-Jan-06 13:49 
AnswerRe: Not All Code Paths Return A Value??? Pin
M@dHatter31-Jan-06 13:54
M@dHatter31-Jan-06 13:54 
GeneralRe: Not All Code Paths Return A Value??? Pin
dbenisch31-Jan-06 14:27
dbenisch31-Jan-06 14:27 
GeneralRe: Not All Code Paths Return A Value??? Pin
Christian Graus31-Jan-06 14:28
protectorChristian Graus31-Jan-06 14:28 
QuestionAccessing Access DataBase Pin
aPerfectCircle31-Jan-06 13:12
aPerfectCircle31-Jan-06 13:12 
AnswerRe: Accessing Access DataBase Pin
Kodanda Pani31-Jan-06 18:56
Kodanda Pani31-Jan-06 18:56 
Hi,

Try using the following code.

OleDbConnection conn = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;Data Source=C:\Samples\Test.mdb; Mode=Share Deny None;Persist Security Info=False;Jet OLEDB:System database=C:\SYSTEM.MDW;");
conn.Open();
OleDbDataAdapter da = new OleDbDataAdapter();
OleDbCommand command = new OleDbCommand();
command.Connection = conn;
command.CommandText = "select * from person" ;
da.SelectCommand = command;
DataSet ds = new DataSet();
da.Fill(ds);

Thanks and Regards
Pani
AnswerRe: Accessing Access DataBase Pin
Navas.M31-Jan-06 20:24
Navas.M31-Jan-06 20:24 
Questionthread safe calls Pin
Manu_8131-Jan-06 12:57
Manu_8131-Jan-06 12:57 
AnswerRe: thread safe calls Pin
kasik31-Jan-06 13:07
kasik31-Jan-06 13:07 
AnswerRe: thread safe calls Pin
Shann31-Jan-06 23:32
Shann31-Jan-06 23:32 
QuestionError Icon on custom form Pin
theFrenchHornet31-Jan-06 12:13
theFrenchHornet31-Jan-06 12:13 
AnswerRe: Error Icon on custom form Pin
kasik31-Jan-06 12:51
kasik31-Jan-06 12:51 
GeneralRe: Error Icon on custom form Pin
theFrenchHornet31-Jan-06 16:23
theFrenchHornet31-Jan-06 16:23 
Questiontuff deployments projects. Pin
ranzask31-Jan-06 11:37
ranzask31-Jan-06 11:37 
QuestionSocket Help Pin
DocH0liday31-Jan-06 11:06
DocH0liday31-Jan-06 11:06 
QuestionHow can I Give the application referenced by a Process object Focus Pin
Dan Neely31-Jan-06 11:04
Dan Neely31-Jan-06 11:04 
Questiontimeout in second call webservice???? Pin
leonvanrooijen31-Jan-06 10:04
leonvanrooijen31-Jan-06 10:04 
Questionmy application with graphic Pin
Sasuko31-Jan-06 10:02
Sasuko31-Jan-06 10:02 
QuestionThreading Pin
nc3b31-Jan-06 9:48
nc3b31-Jan-06 9:48 
AnswerRe: Threading Pin
Le centriste31-Jan-06 10:13
Le centriste31-Jan-06 10:13 
GeneralRe: Threading Pin
nc3b31-Jan-06 10:15
nc3b31-Jan-06 10:15 
Questiondo I need a lience to use word.dll in a commercial product Pin
Agyeman31-Jan-06 9:38
Agyeman31-Jan-06 9:38 
AnswerRe: do I need a lience to use word.dll in a commercial product Pin
Praveen Nayak31-Jan-06 17:20
Praveen Nayak31-Jan-06 17:20 

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.