Click here to Skip to main content
15,890,717 members
Home / Discussions / C#
   

C#

 
QuestionCan run Oracle application without installing Oracle Client? Pin
Anez.A29-Aug-07 19:48
Anez.A29-Aug-07 19:48 
AnswerRe: Can run Oracle application without installing Oracle Client? Pin
Michael Sync29-Aug-07 20:03
Michael Sync29-Aug-07 20:03 
GeneralRe: Can run Oracle application without installing Oracle Client? Pin
Anez.A29-Aug-07 20:26
Anez.A29-Aug-07 20:26 
AnswerRe: Can run Oracle application without installing Oracle Client? Pin
jith - iii29-Aug-07 20:36
jith - iii29-Aug-07 20:36 
GeneralRe: Can run Oracle application without installing Oracle Client? Pin
Anez.A29-Aug-07 21:12
Anez.A29-Aug-07 21:12 
AnswerRe: Can run Oracle application without installing Oracle Client? Pin
darkelv29-Aug-07 23:35
darkelv29-Aug-07 23:35 
QuestionCheckbox column in a grid view... Pin
Dotnetkanna29-Aug-07 19:39
Dotnetkanna29-Aug-07 19:39 
AnswerRe: Checkbox column in a grid view... Pin
Michael Sync29-Aug-07 20:02
Michael Sync29-Aug-07 20:02 
Put one more label in this checkbox column. the DataField of this label should be mapped to the actual field from database.
In Item_DataBound() event of GridView, you can check whether the value is 0 or 1. then, find the checked box control and check or uncheck based on the value..

Eg: Item_DataBound Event

Label lbl = (Label)e.FindControl("lblValue");<br />
CheckedBox chk = (CheckedBox)e.FindControl("chkCheckedBox");<br />
chk = (lbl.Text == "1") ?? true:false;<br />


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. Smile | :)

AnswerRe: Checkbox column in a grid view... Pin
Revathij29-Aug-07 20:15
Revathij29-Aug-07 20:15 
Questionc# Pin
shashankshekhar29-Aug-07 18:56
shashankshekhar29-Aug-07 18:56 
AnswerRe: c# Pin
Michael Sync29-Aug-07 19:56
Michael Sync29-Aug-07 19:56 
AnswerGiven this is the C# forum, don't you think it would look terrible if all threads had the subject 'C#'? Pin
Vikram A Punathambekar29-Aug-07 20:54
Vikram A Punathambekar29-Aug-07 20:54 
QuestionHelp about Hipaa edi!! Pin
Kumar!29-Aug-07 18:45
Kumar!29-Aug-07 18:45 
Questionhow to search string in different file and comment it [modified] Pin
Situ1429-Aug-07 18:15
Situ1429-Aug-07 18:15 
AnswerRe: how to search string in different file and comment it Pin
WhiteGirl2329-Aug-07 22:49
WhiteGirl2329-Aug-07 22:49 
QuestionStart reading from end of file Pin
TheJudeDude29-Aug-07 18:09
TheJudeDude29-Aug-07 18:09 
AnswerRe: Start reading from end of file Pin
Michael Sync29-Aug-07 19:53
Michael Sync29-Aug-07 19:53 
QuestionThreaded Form Pin
xfitr229-Aug-07 16:30
xfitr229-Aug-07 16:30 
AnswerRe: Threaded Form Pin
Michael Sync29-Aug-07 17:22
Michael Sync29-Aug-07 17:22 
GeneralRe: Threaded Form Pin
xfitr229-Aug-07 17:35
xfitr229-Aug-07 17:35 
GeneralRe: Threaded Form Pin
Michael Sync29-Aug-07 18:05
Michael Sync29-Aug-07 18:05 
GeneralRe: Threaded Form Pin
Spacix One30-Aug-07 3:51
Spacix One30-Aug-07 3:51 
Questionhow to backup sql database from c#2005 Pin
tech-progg29-Aug-07 16:30
tech-progg29-Aug-07 16:30 
AnswerRe: how to backup sql database from c#2005 Pin
\laddie31-Aug-07 1:05
\laddie31-Aug-07 1:05 
GeneralRe: how to backup sql database from c#2005 Pin
tech-progg2-Sep-07 16:30
tech-progg2-Sep-07 16:30 

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.