Click here to Skip to main content
15,888,816 members
Home / Discussions / C#
   

C#

 
AnswerRe: Fade in control in C# Pin
Dave Kreskowiak6-Sep-08 3:49
mveDave Kreskowiak6-Sep-08 3:49 
GeneralRe: Fade in control in C# Pin
perryf_006-Sep-08 16:44
perryf_006-Sep-08 16:44 
GeneralRe: Fade in control in C# Pin
Dave Kreskowiak6-Sep-08 20:05
mveDave Kreskowiak6-Sep-08 20:05 
GeneralRe: Fade in control in C# Pin
perryf_007-Sep-08 5:54
perryf_007-Sep-08 5:54 
GeneralRe: Fade in control in C# Pin
Dave Kreskowiak7-Sep-08 9:57
mveDave Kreskowiak7-Sep-08 9:57 
GeneralRe: Fade in control in C# Pin
perryf_007-Sep-08 11:08
perryf_007-Sep-08 11:08 
AnswerRe: Fade in control in C# Pin
Chazzysb6-Sep-08 4:15
Chazzysb6-Sep-08 4:15 
QuestionHelp Pin
Angelinna5-Sep-08 22:45
Angelinna5-Sep-08 22:45 
I wonder where Iam going wrong with these codes;
// form1.cs
private void matchbutton_Click(object sender, EventArgs e)
{
string TagNum;
TagNum = InputBox.Text;
string dataqueue;
dataqueue = myRecord.find();
if( TagNum == myRecord.find())


{
OutputBox.AppendText(" Match");
//InputBox.Clear();
}
else
{
OutputBox.AppendText("No Match");
..............................................................
// queue.cs
public Boolean contains()
{
return (find() != null);
}
public string find()
{
queuedata current = first;
while(current !=null && !current.GetType().Equals(this))
current = current.nextdata;
return current.ToString();
AnswerRe: Help Pin
Manas Bhardwaj5-Sep-08 23:25
professionalManas Bhardwaj5-Sep-08 23:25 
AnswerRe: Help Pin
zafersavas5-Sep-08 23:39
zafersavas5-Sep-08 23:39 
GeneralRe: Help [modified] Pin
Angelinna6-Sep-08 0:21
Angelinna6-Sep-08 0:21 
GeneralRe: Help Pin
#realJSOP6-Sep-08 2:02
mve#realJSOP6-Sep-08 2:02 
GeneralRe: Help Pin
Paul Conrad6-Sep-08 5:06
professionalPaul Conrad6-Sep-08 5:06 
AnswerRe: Help Pin
Blue_Boy6-Sep-08 0:03
Blue_Boy6-Sep-08 0:03 
GeneralRe: Help Pin
Angelinna6-Sep-08 0:26
Angelinna6-Sep-08 0:26 
AnswerRe: Help Pin
leppie6-Sep-08 5:44
leppie6-Sep-08 5:44 
GeneralRe: Help Pin
Angelinna6-Sep-08 10:28
Angelinna6-Sep-08 10:28 
Questioni tried to make a sorting algorithms could you check and confirm ? Pin
oraanupi5-Sep-08 20:56
oraanupi5-Sep-08 20:56 
AnswerRe: i tried to make a sorting algorithms could you check and confirm ? Pin
leppie5-Sep-08 21:28
leppie5-Sep-08 21:28 
GeneralRe: i tried to make a sorting algorithms could you check and confirm ? Pin
oraanupi6-Sep-08 5:03
oraanupi6-Sep-08 5:03 
GeneralRe: i tried to make a sorting algorithms could you check and confirm ? Pin
Paul Conrad6-Sep-08 5:08
professionalPaul Conrad6-Sep-08 5:08 
GeneralRe: i tried to make a sorting algorithms could you check and confirm ? Pin
oraanupi6-Sep-08 5:29
oraanupi6-Sep-08 5:29 
GeneralRe: i tried to make a sorting algorithms could you check and confirm ? Pin
Paul Conrad6-Sep-08 5:36
professionalPaul Conrad6-Sep-08 5:36 
GeneralRe: i tried to make a sorting algorithms could you check and confirm ? Pin
oraanupi6-Sep-08 5:40
oraanupi6-Sep-08 5:40 
AnswerRe: i tried to make a sorting algorithms could you check and confirm ? Pin
zafersavas5-Sep-08 21:53
zafersavas5-Sep-08 21:53 

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.