Click here to Skip to main content
15,891,828 members
Home / Discussions / C#
   

C#

 
GeneralDateFormat Pin
James McCutcheon23-Apr-03 17:19
James McCutcheon23-Apr-03 17:19 
GeneralRe: DateFormat Pin
James McCutcheon23-Apr-03 17:42
James McCutcheon23-Apr-03 17:42 
GeneralRe: DateFormat Pin
J. Dunlap23-Apr-03 17:58
J. Dunlap23-Apr-03 17:58 
QuestionHow to "kill" a socket Pin
nahumtakum23-Apr-03 12:22
nahumtakum23-Apr-03 12:22 
QuestionHow to display a panel and its contents in a ListBox/ListView Pin
bmasephol23-Apr-03 11:24
bmasephol23-Apr-03 11:24 
AnswerRe: How to display a panel and its contents in a ListBox/ListView Pin
J. Dunlap23-Apr-03 11:39
J. Dunlap23-Apr-03 11:39 
GeneralSending data from a Textbox to Access database Pin
trndbrg23-Apr-03 6:13
trndbrg23-Apr-03 6:13 
GeneralRe: Sending data from a Textbox to Access database Pin
krisp23-Apr-03 23:01
krisp23-Apr-03 23:01 
// This connection string is off the top of my head, i know its wrong but kind of it, check
// www.connectionstrings.com and click on access oledb for the right one.
OleDbConnection conn = OleDbConnection( "Provider=Microsoft Jet 4.0";Data Source=C:\\db.mdb;User=peter;Password=cat" );

OleDbCommand comm = new OleDbComm( "", conn );
comm.CommandText = "UPDATE [tableName] SET ( [columnName] = " + textbox.Text + " ) WHERE ( [columnName2] = 'ID' );" ;
conn.Open();
comm.ExecuteNonQuery(); // i think this is the method name, should be obvious with auto-complete
conn.Close();

you said: "into the access database form" hope you mean table, into a form i dont think u could, have no idea.


GeneralDateTime To Double Pin
Anonymous23-Apr-03 5:57
Anonymous23-Apr-03 5:57 
GeneralRe: DateTime To Double Pin
Alvaro Mendez23-Apr-03 10:39
Alvaro Mendez23-Apr-03 10:39 
GeneralCombo Box Problems Pin
Corey Embry23-Apr-03 4:35
sussCorey Embry23-Apr-03 4:35 
GeneralRe: Combo Box Problems Pin
Not Active23-Apr-03 5:31
mentorNot Active23-Apr-03 5:31 
GeneralRe: Combo Box Problems Pin
Corey Embry23-Apr-03 6:42
sussCorey Embry23-Apr-03 6:42 
GeneralEmbedded c# app -> internet Pin
Roger Alsing23-Apr-03 3:11
Roger Alsing23-Apr-03 3:11 
GeneralRe: Embedded c# app -> internet Pin
Stephane Rodriguez.23-Apr-03 11:06
Stephane Rodriguez.23-Apr-03 11:06 
GeneralRe: Embedded c# app -> internet Pin
Roger Alsing23-Apr-03 20:43
Roger Alsing23-Apr-03 20:43 
QuestionWhat does this error means? Pin
cemlouis22-Apr-03 23:47
cemlouis22-Apr-03 23:47 
AnswerRe: What does this error means? Pin
Philip Fitzsimons23-Apr-03 2:58
Philip Fitzsimons23-Apr-03 2:58 
GeneralWinDows NT Service Pin
swarupdas22-Apr-03 23:09
swarupdas22-Apr-03 23:09 
Generalscrollbars in mdi... Pin
waleed riaz22-Apr-03 21:46
waleed riaz22-Apr-03 21:46 
GeneralAbout .Net CrystalReport Component Pin
zargo22-Apr-03 18:38
zargo22-Apr-03 18:38 
GeneralNamespaces Pin
Kant22-Apr-03 15:59
Kant22-Apr-03 15:59 
GeneralRe: Namespaces Pin
David Stone22-Apr-03 17:25
sitebuilderDavid Stone22-Apr-03 17:25 
GeneralRe: Namespaces Pin
Kant22-Apr-03 18:40
Kant22-Apr-03 18:40 
GeneralRe: Namespaces Pin
Eric Gunnerson (msft)23-Apr-03 11:22
Eric Gunnerson (msft)23-Apr-03 11:22 

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.