Click here to Skip to main content
15,908,661 members
Home / Discussions / C#
   

C#

 
AnswerRe: weather web service Pin
Satish3211-Feb-09 1:03
Satish3211-Feb-09 1:03 
QuestionRe:Gui for Back End Pin
karthick sampangi11-Feb-09 0:23
karthick sampangi11-Feb-09 0:23 
AnswerRe:Gui for Back End Pin
musefan11-Feb-09 0:34
musefan11-Feb-09 0:34 
AnswerRe:Gui for Back End Pin
Ashfield11-Feb-09 1:16
Ashfield11-Feb-09 1:16 
AnswerRe:Gui for Back End Pin
EliottA11-Feb-09 2:41
EliottA11-Feb-09 2:41 
QuestionNested Select query in SQL Server 2005 Pin
chathuranga Devanarayana11-Feb-09 0:22
chathuranga Devanarayana11-Feb-09 0:22 
AnswerRe: Nested Select query in SQL Server 2005 Pin
ABitSmart11-Feb-09 3:51
ABitSmart11-Feb-09 3:51 
QuestionHow to retrive datatables From Database Pin
lavankumar10-Feb-09 23:52
lavankumar10-Feb-09 23:52 
AnswerRe: How to retrive datatables From Database Pin
Satish3211-Feb-09 0:50
Satish3211-Feb-09 0:50 
QuestionEnable/Disable the scheduler task programmatically using c# Pin
idhiCodeProject10-Feb-09 23:18
idhiCodeProject10-Feb-09 23:18 
AnswerRe: Enable/Disable the scheduler task programmatically using c# Pin
«_Superman_»10-Feb-09 23:27
professional«_Superman_»10-Feb-09 23:27 
AnswerRe: Enable/Disable the scheduler task programmatically using c# Pin
Giorgi Dalakishvili10-Feb-09 23:53
mentorGiorgi Dalakishvili10-Feb-09 23:53 
QuestionWriting Application configuration Pin
Radhakrishnan G.10-Feb-09 23:16
Radhakrishnan G.10-Feb-09 23:16 
AnswerRe: Writing Application configuration Pin
#realJSOP10-Feb-09 23:34
professional#realJSOP10-Feb-09 23:34 
QuestionThe number of page of a Word file Pin
abbd10-Feb-09 23:13
abbd10-Feb-09 23:13 
GeneralFramework analysis of SNC [modified] Pin
yolanda040910-Feb-09 23:00
yolanda040910-Feb-09 23:00 
RantRe: Framework analysis of SNC Pin
Ashfield11-Feb-09 1:28
Ashfield11-Feb-09 1:28 
Questionfinding pdfs in a computer Pin
DrawWindow10-Feb-09 22:51
DrawWindow10-Feb-09 22:51 
AnswerRe: finding pdfs in a computer Pin
Giorgi Dalakishvili10-Feb-09 22:57
mentorGiorgi Dalakishvili10-Feb-09 22:57 
GeneralRe: finding pdfs in a computer Pin
DrawWindow10-Feb-09 23:04
DrawWindow10-Feb-09 23:04 
QuestionFind color in specific area of screen Pin
Kristian Sixhøj10-Feb-09 22:35
Kristian Sixhøj10-Feb-09 22:35 
AnswerRe: Find color in specific area of screen Pin
SeMartens10-Feb-09 22:44
SeMartens10-Feb-09 22:44 
GeneralRe: Find color in specific area of screen Pin
Kristian Sixhøj10-Feb-09 23:13
Kristian Sixhøj10-Feb-09 23:13 
AnswerRe: Find color in specific area of screen Pin
musefan10-Feb-09 23:09
musefan10-Feb-09 23:09 
int x1 = 0;
int y1 = 0;
int x2 = 50;
int y2 = 50;
Color colorCheck = new Color(128, 128, 128);
bool found = false;

for(int x = x1; x <= x2; x++)
{
   for(int y = y1; y <= y2; y++)
   {
      if(Win32.GetPixelColor(x, y) == colorCheck)
      {
      found = true;
      Console.WriteLine("Color found at {0},{1}", x, y);
      break;
      }
   }
if(found)
   break;
}


If only MySelf.Visible was more than just a getter...

GeneralRe: Find color in specific area of screen Pin
Kristian Sixhøj10-Feb-09 23:13
Kristian Sixhøj10-Feb-09 23:13 

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.