Click here to Skip to main content
15,881,882 members
Home / Discussions / C#
   

C#

 
QuestionIs there any facility in VS 2005 to do unit testing Pin
engsrini4-Jan-06 22:36
engsrini4-Jan-06 22:36 
AnswerRe: Is there any facility in VS 2005 to do unit testing Pin
Vikram A Punathambekar5-Jan-06 0:17
Vikram A Punathambekar5-Jan-06 0:17 
AnswerRe: Is there any facility in VS 2005 to do unit testing Pin
S. Senthil Kumar5-Jan-06 3:20
S. Senthil Kumar5-Jan-06 3:20 
QuestionDatagridview in Crystal Report - Please help me A.S.A.P. Pin
Tyler454-Jan-06 21:51
Tyler454-Jan-06 21:51 
QuestionNeed code, please Pin
mehrdadc484-Jan-06 21:24
mehrdadc484-Jan-06 21:24 
AnswerRe: Need code, please Pin
J4amieC4-Jan-06 21:32
J4amieC4-Jan-06 21:32 
GeneralOT: That's Great! Pin
Curtis Schlak.5-Jan-06 8:05
Curtis Schlak.5-Jan-06 8:05 
AnswerRe: Need code, please Pin
daniel_nilsson4-Jan-06 21:48
daniel_nilsson4-Jan-06 21:48 
private void deleteIt()
{
 System.Data.OleDb.OleDbConnection oleCon = new System.Data.OleDb.OleDbConnection();
			oleCon.ConnectionString("connectionstring");
			oleCon.Open();
			System.Data.OleDb.OleDbCommand oleCom = new System.Data.OleDb.OleDbCommand("delete from table", oleCon);
			oleCom.ExecuteNonQuery();
			oleCon.Close();
}

private void add()
{
System.Data.OleDb.OleDbConnection oleCon = new System.Data.OleDb.OleDbConnection();
			oleCon.ConnectionString("connectionstring");
			oleCon.Open();
			System.Data.OleDb.OleDbCommand oleCom = new System.Data.OleDb.OleDbCommand("insert into table (value1, value2) Values("values1", "values2"), oleCon);
			oleCom.ExecuteNonQuery();
			oleCon.Close();

}


i dont know if this wil help you but its a try...
QuestionMajor Headache with installation Pin
TofuBug244-Jan-06 20:43
TofuBug244-Jan-06 20:43 
AnswerRe: Major Headache with installation Pin
TofuBug244-Jan-06 21:39
TofuBug244-Jan-06 21:39 
GeneralRe: Major Headache with installation Pin
Curtis Schlak.5-Jan-06 8:38
Curtis Schlak.5-Jan-06 8:38 
QuestionEmail validation Pin
PrakashBhaskar4-Jan-06 20:12
PrakashBhaskar4-Jan-06 20:12 
AnswerRe: Email validation Pin
J4amieC4-Jan-06 21:37
J4amieC4-Jan-06 21:37 
AnswerRe: Email validation Pin
leppie4-Jan-06 22:07
leppie4-Jan-06 22:07 
GeneralRe: Email validation Pin
PrakashBhaskar4-Jan-06 22:12
PrakashBhaskar4-Jan-06 22:12 
QuestionWindow Service Pin
A.Grover4-Jan-06 19:47
A.Grover4-Jan-06 19:47 
AnswerRe: Window Service Pin
AB77714-Jan-06 21:35
AB77714-Jan-06 21:35 
GeneralRe: Window Service Pin
A.Grover5-Jan-06 20:55
A.Grover5-Jan-06 20:55 
QuestionAdapting the .net controls to touch screen Pin
engsrini4-Jan-06 19:42
engsrini4-Jan-06 19:42 
AnswerRe: Adapting the .net controls to touch screen Pin
VenkataRamana.Gali5-Jan-06 0:43
VenkataRamana.Gali5-Jan-06 0:43 
QuestionProperty Grid - Browsable Attributes Pin
Tulika Shrivastava4-Jan-06 19:29
Tulika Shrivastava4-Jan-06 19:29 
AnswerRe: Property Grid - Browsable Attributes Pin
microsoc5-Jan-06 23:26
microsoc5-Jan-06 23:26 
GeneralRe: Property Grid - Browsable Attributes Pin
Tulika Shrivastava30-Jan-06 23:37
Tulika Shrivastava30-Jan-06 23:37 
GeneralRe: Property Grid - Browsable Attributes Pin
microsoc30-Jan-06 23:40
microsoc30-Jan-06 23:40 
Questionping an address Pin
binglin4-Jan-06 17:35
binglin4-Jan-06 17:35 

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.