Click here to Skip to main content
15,905,781 members
Home / Discussions / C#
   

C#

 
AnswerRe: Highlighting in RichTextBox? Pin
jparsons24-Jul-02 4:36
jparsons24-Jul-02 4:36 
GeneralRe: Highlighting in RichTextBox? Pin
leppie24-Jul-02 5:17
leppie24-Jul-02 5:17 
GeneralComboBox - MultiColumn Pin
mikasa24-Jul-02 2:53
mikasa24-Jul-02 2:53 
GeneralRe: ComboBox - MultiColumn Pin
David Stone24-Jul-02 12:37
sitebuilderDavid Stone24-Jul-02 12:37 
GeneralChanging Cookie Values by calling class functions Pin
Sassan Komeili Zadeh23-Jul-02 23:37
Sassan Komeili Zadeh23-Jul-02 23:37 
Generalmultiple updates Pin
Sarith Sutha23-Jul-02 19:48
Sarith Sutha23-Jul-02 19:48 
GeneralRe: multiple updates Pin
SimonS23-Jul-02 23:00
SimonS23-Jul-02 23:00 
GeneralRe: multiple updates Pin
Sarith Sutha24-Jul-02 3:14
Sarith Sutha24-Jul-02 3:14 
i hope this will do

for(int index = 0 ; index < TaskItems.Length ; index++)
{
piSqlStmt=new StringBuilder("INSERT INTO Tasks (Task_id,Task_Desc,Task_status) VALUES";
piSqlStmt.Append("'"+TaskItems[index].Task_id+"'");
piSqlStmt.Append(",'"+TaskItems[index].Task_Desc+"'");
piSqlStmt.Append(",'"+TaskItems[index].Task_status+"'");
piSqlCommand.CommandText = piSqlStmt.ToString();
piSqlCommand.ExecuteNonQuery();
}

sarith sutha
GeneralRe: multiple updates Pin
jparsons24-Jul-02 4:12
jparsons24-Jul-02 4:12 
GeneralRe: multiple updates Pin
Sarith Sutha24-Jul-02 18:50
Sarith Sutha24-Jul-02 18:50 
GeneralRe: multiple updates Pin
David Stone24-Jul-02 12:39
sitebuilderDavid Stone24-Jul-02 12:39 
GeneralRe: multiple updates Pin
SimonS24-Jul-02 21:37
SimonS24-Jul-02 21:37 
GeneralRe: multiple updates Pin
leppie24-Jul-02 23:03
leppie24-Jul-02 23:03 
GeneralRe: multiple updates Pin
SimonS24-Jul-02 21:33
SimonS24-Jul-02 21:33 
GeneralRe: multiple updates Pin
Sarith Sutha24-Jul-02 22:19
Sarith Sutha24-Jul-02 22:19 
GeneralRe: multiple updates Pin
SimonS24-Jul-02 23:09
SimonS24-Jul-02 23:09 
GeneralUsing current user credentials with Task Scheduler Library Pin
Keith Mai23-Jul-02 13:17
Keith Mai23-Jul-02 13:17 
Generalnetmodules Pin
jparsons23-Jul-02 10:37
jparsons23-Jul-02 10:37 
GeneralRe: netmodules Pin
Eric Gunnerson (msft)24-Jul-02 5:33
Eric Gunnerson (msft)24-Jul-02 5:33 
GeneralRe: netmodules Pin
jparsons24-Jul-02 5:50
jparsons24-Jul-02 5:50 
GeneralRe: netmodules Pin
Eric Gunnerson (msft)24-Jul-02 9:53
Eric Gunnerson (msft)24-Jul-02 9:53 
GeneralRe: netmodules Pin
jparsons25-Jul-02 3:01
jparsons25-Jul-02 3:01 
GeneralRe: netmodules Pin
Eric Gunnerson (msft)25-Jul-02 13:56
Eric Gunnerson (msft)25-Jul-02 13:56 
QuestionNotifyIcon text? Pin
sasdav23-Jul-02 7:26
sasdav23-Jul-02 7:26 
AnswerRe: NotifyIcon text? Pin
Rickard Andersson2023-Jul-02 8:24
Rickard Andersson2023-Jul-02 8:24 

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.