Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
GeneralRe: Difference between two date/times Pin
Luc Pattyn7-Aug-09 2:40
sitebuilderLuc Pattyn7-Aug-09 2:40 
GeneralRe: Difference between two date/times Pin
Vikram A Punathambekar7-Aug-09 6:33
Vikram A Punathambekar7-Aug-09 6:33 
GeneralRe: Difference between two date/times Pin
Luc Pattyn7-Aug-09 6:59
sitebuilderLuc Pattyn7-Aug-09 6:59 
QuestionWiewing Office Document in Web Browser Pin
egpuyos6-Aug-09 19:51
egpuyos6-Aug-09 19:51 
AnswerRe: Wiewing Office Document in Web Browser Pin
dan!sh 6-Aug-09 20:00
professional dan!sh 6-Aug-09 20:00 
GeneralRe: Wiewing Office Document in Web Browser Pin
Baeltazor7-Aug-09 0:29
Baeltazor7-Aug-09 0:29 
QuestionHow to catch the data that is given for print using c# Pin
svt gdwl6-Aug-09 19:40
svt gdwl6-Aug-09 19:40 
Questionhow to get tables of an access db into a list box using c#? Pin
fathatsme6-Aug-09 19:04
fathatsme6-Aug-09 19:04 
hi evry1!

i needed to create a form in which i hav to browse and open mdb files ---> i did this part usin oprnfile dialogue!

private void button1_Click(object sender, EventArgs e)

{

OpenFileDialog oDlg = new OpenFileDialog();

oDlg.Title = "Select MDB";

oDlg.Filter = "MDB (*.Mdb)|*.mdb";

oDlg.RestoreDirectory = true;

string dir = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);

oDlg.InitialDirectory = dir;

DialogResult result = oDlg.ShowDialog();

if (result == DialogResult.OK)

{

textBox1.Text = oDlg.FileName.ToString();

}

}



this is my code so far!!!



now i need to make 3 list boxes!!

1st one to display the table names of the db!

2nd to to display field names when clicked on table name!!!

3rd to display attributes on fiels on clickin on it!

v can edit the attribute values and on clickin of save button it should update the database!!!



pls help

AnswerRe: how to get tables of an access db into a list box using c#? Pin
Cracked-Down6-Aug-09 19:24
Cracked-Down6-Aug-09 19:24 
QuestionRe: how to get tables of an access db into a list box using c#? Pin
fathatsme6-Aug-09 19:33
fathatsme6-Aug-09 19:33 
Answerhow to get fields tables of an acces db into a list box?` Pin
fathatsme6-Aug-09 20:16
fathatsme6-Aug-09 20:16 
GeneralRe: how to get fields tables of an acces db into a list box?` Pin
fathatsme6-Aug-09 23:36
fathatsme6-Aug-09 23:36 
QuestionDataGridView Pin
vhassan6-Aug-09 18:26
vhassan6-Aug-09 18:26 
AnswerRe: DataGridView Pin
Mycroft Holmes6-Aug-09 20:14
professionalMycroft Holmes6-Aug-09 20:14 
Questionon enter fire button Pin
Rajee Maharjan6-Aug-09 18:26
Rajee Maharjan6-Aug-09 18:26 
AnswerRe: on enter fire button Pin
MumbleB6-Aug-09 19:19
MumbleB6-Aug-09 19:19 
AnswerRe: on enter fire button Pin
Cracked-Down6-Aug-09 19:21
Cracked-Down6-Aug-09 19:21 
AnswerRe: on enter fire button Pin
Rajee Maharjan6-Aug-09 19:51
Rajee Maharjan6-Aug-09 19:51 
AnswerRe: on enter fire button Pin
DaveyM696-Aug-09 21:29
professionalDaveyM696-Aug-09 21:29 
QuestionHow to save the property of the user-defined column ? Pin
mctramp1686-Aug-09 17:39
mctramp1686-Aug-09 17:39 
AnswerRe: How to save the property of the user-defined column ? Pin
N a v a n e e t h6-Aug-09 18:07
N a v a n e e t h6-Aug-09 18:07 
Questionworking with webservices in .net Pin
prasadbuddhika6-Aug-09 17:12
prasadbuddhika6-Aug-09 17:12 
AnswerRe: working with webservices in .net Pin
N a v a n e e t h6-Aug-09 17:47
N a v a n e e t h6-Aug-09 17:47 
GeneralRe: working with webservices in .net Pin
prasadbuddhika6-Aug-09 19:27
prasadbuddhika6-Aug-09 19:27 
GeneralRe: working with webservices in .net Pin
N a v a n e e t h6-Aug-09 22:26
N a v a n e e t h6-Aug-09 22: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.