Click here to Skip to main content
15,922,015 members
Home / Discussions / C#
   

C#

 
GeneralRe: The final word Pin
Dennis C. Dietrich15-Nov-04 9:51
Dennis C. Dietrich15-Nov-04 9:51 
GeneralForm Closing check Pin
Vector714-Nov-04 2:28
Vector714-Nov-04 2:28 
GeneralRe: Form Closing check Pin
Utku KAYA14-Nov-04 2:41
Utku KAYA14-Nov-04 2:41 
GeneralRe: Form Closing check Pin
Vector714-Nov-04 2:44
Vector714-Nov-04 2:44 
GeneralC# TOM wrapper Pin
Wizard_0114-Nov-04 0:21
Wizard_0114-Nov-04 0:21 
GeneralTabels & Comboboxes Pin
The underdog13-Nov-04 23:46
The underdog13-Nov-04 23:46 
GeneralRe: Tabels & Comboboxes Pin
Utku KAYA14-Nov-04 0:22
Utku KAYA14-Nov-04 0:22 
GeneralRe: Tabels & Comboboxes Pin
Utku KAYA14-Nov-04 3:55
Utku KAYA14-Nov-04 3:55 
First of all get rid of the new table names stuff and check if you can read data from the tables by using your OleDb code.

Fill some sample data in Access and use

..
.
.
.
.

string sqlSelectStatement = "SELECT * FROM <tablename>";
OleDbDataAdapter adapter = new OleDbDataAdapter =(sqlSelectStatement,connection);
connection.Open();
DataTable table = new DataTable();
try
{
adapter.Fill(table);
}

connection.Close();

Now look in table and tell the result.
GeneralRe: Tabels & Comboboxes Pin
The underdog14-Nov-04 6:25
The underdog14-Nov-04 6:25 
GeneralRe: Tabels &amp; Comboboxes Pin
Utku KAYA15-Nov-04 9:23
Utku KAYA15-Nov-04 9:23 
Generalstring problem...! Pin
QzRz13-Nov-04 23:39
QzRz13-Nov-04 23:39 
GeneralRe: string problem...! Pin
Utku KAYA13-Nov-04 23:49
Utku KAYA13-Nov-04 23:49 
GeneralRe: string problem...! Pin
QzRz13-Nov-04 23:53
QzRz13-Nov-04 23:53 
GeneralRe: string problem...! Pin
Stefan Troschuetz14-Nov-04 1:51
Stefan Troschuetz14-Nov-04 1:51 
GeneralRe: string problem...! Pin
QzRz14-Nov-04 1:57
QzRz14-Nov-04 1:57 
GeneralRe: string problem...! Pin
Stefan Troschuetz14-Nov-04 2:20
Stefan Troschuetz14-Nov-04 2:20 
GeneralRe: string problem...! Pin
QzRz14-Nov-04 2:33
QzRz14-Nov-04 2:33 
GeneralRe: string problem...! Pin
Stefan Troschuetz14-Nov-04 2:56
Stefan Troschuetz14-Nov-04 2:56 
GeneralRe: string problem...! Pin
QzRz14-Nov-04 3:03
QzRz14-Nov-04 3:03 
GeneralRe: string problem...! Pin
Utku KAYA14-Nov-04 2:36
Utku KAYA14-Nov-04 2:36 
Questionpass name of the property &amp; get value ? Pin
Utku KAYA13-Nov-04 20:21
Utku KAYA13-Nov-04 20:21 
AnswerRe: pass name of the property &amp; get value ? Pin
rudy.net14-Nov-04 6:11
rudy.net14-Nov-04 6:11 
Generalhelp with textbox Pin
tom_dx13-Nov-04 16:48
tom_dx13-Nov-04 16:48 
GeneralRe: help with textbox Pin
Charlie Williams13-Nov-04 19:25
Charlie Williams13-Nov-04 19:25 
GeneralRe: help with textbox Pin
tom_dx14-Nov-04 4:09
tom_dx14-Nov-04 4:09 

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.