Click here to Skip to main content
15,895,557 members
Home / Discussions / C#
   

C#

 
Answer[Resolved]Re: Casting Error Pin
Vimalsoft(Pty) Ltd16-Nov-08 19:29
professionalVimalsoft(Pty) Ltd16-Nov-08 19:29 
QuestionSolution for Tower of Hanoi with Breadth First Search Algorithm ? Pin
Mohammad Dayyan16-Nov-08 2:34
Mohammad Dayyan16-Nov-08 2:34 
AnswerRe: Solution for Tower of Hanoi with Breadth First Search Algorithm ? PinPopular
#realJSOP16-Nov-08 3:01
mve#realJSOP16-Nov-08 3:01 
GeneralRe: Solution for Tower of Hanoi with Breadth First Search Algorithm ? Pin
Mohammad Dayyan16-Nov-08 16:16
Mohammad Dayyan16-Nov-08 16:16 
AnswerRe: Solution for Tower of Hanoi with Breadth First Search Algorithm ? Pin
Christian Graus16-Nov-08 12:58
protectorChristian Graus16-Nov-08 12:58 
GeneralRe: Solution for Tower of Hanoi with Breadth First Search Algorithm ? Pin
Mohammad Dayyan16-Nov-08 16:15
Mohammad Dayyan16-Nov-08 16:15 
GeneralRe: Solution for Tower of Hanoi with Breadth First Search Algorithm ? Pin
Paul Conrad16-Nov-08 17:46
professionalPaul Conrad16-Nov-08 17:46 
Questiondatabind pictureBox control to Northwind Employees table Pin
papori123416-Nov-08 2:25
papori123416-Nov-08 2:25 
i have written the following code to databind a pictureBox control to Northwind database(Employees table.But the photos looks hazy(not distinct). Any idea to solve this issue?

----------------------------
string connString = @"Data Source=localhost\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True";
string data = "Select * from Employees";
SqlConnection conn = new SqlConnection(connString);
SqlDataAdapter da = new SqlDataAdapter(data, conn);
DataSet ds = new DataSet();
da.Fill(ds, "Employees");




pictureBox1.DataBindings.Add("EditValue", ds, "Employees.Photo");
dataNavigator1.DataMember = "Employees";
dataNavigator1.DataSource = ds;
-----------------------------
I can navigate through the images and can see the safe-mode like quality of the images. Can anybody solve this issue?
thanaks
Question32Bits Depth Images to 24Bits Depth Image c# Pin
saberbladez16-Nov-08 2:11
saberbladez16-Nov-08 2:11 
AnswerRe: 32Bits Depth Images to 24Bits Depth Image c# Pin
#realJSOP16-Nov-08 3:02
mve#realJSOP16-Nov-08 3:02 
AnswerRe: 32Bits Depth Images to 24Bits Depth Image c# Pin
Christian Graus16-Nov-08 13:00
protectorChristian Graus16-Nov-08 13:00 
QuestionMaking a function return a type value specified Pin
Chris Copeland16-Nov-08 2:09
mveChris Copeland16-Nov-08 2:09 
AnswerRe: Making a function return a type value specified Pin
Giorgi Dalakishvili16-Nov-08 3:05
mentorGiorgi Dalakishvili16-Nov-08 3:05 
AnswerRe: Making a function return a type value specified Pin
#realJSOP16-Nov-08 3:13
mve#realJSOP16-Nov-08 3:13 
GeneralRe: Making a function return a type value specified Pin
Chris Copeland16-Nov-08 3:40
mveChris Copeland16-Nov-08 3:40 
QuestionHow to Invoke Parent Form Event Handler Pin
swjam16-Nov-08 1:56
swjam16-Nov-08 1:56 
AnswerRe: How to Invoke Parent Form Event Handler Pin
#realJSOP16-Nov-08 3:18
mve#realJSOP16-Nov-08 3:18 
QuestionHttp header issue Pin
George_George16-Nov-08 1:45
George_George16-Nov-08 1:45 
AnswerRe: Http header issue Pin
N a v a n e e t h16-Nov-08 3:51
N a v a n e e t h16-Nov-08 3:51 
GeneralRe: Http header issue Pin
George_George16-Nov-08 14:28
George_George16-Nov-08 14:28 
AnswerRe: Http header issue Pin
Christian Graus16-Nov-08 13:00
protectorChristian Graus16-Nov-08 13:00 
GeneralRe: Http header issue Pin
George_George16-Nov-08 14:29
George_George16-Nov-08 14:29 
Question[Message Deleted] Pin
LordZoster16-Nov-08 0:13
LordZoster16-Nov-08 0:13 
AnswerRe: Browse XML document with "dot" notation? Pin
Colin Angus Mackay16-Nov-08 1:23
Colin Angus Mackay16-Nov-08 1:23 
QuestionStored Procedure as DataSource of DataGrid Pin
swjam15-Nov-08 23:48
swjam15-Nov-08 23:48 

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.