|
scottgp wrote: the fun of ridiculing people
don't worry, whatever they do to the site, we will get ample opportunity.
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
modified on Sunday, June 12, 2011 9:17 AM
|
|
|
|
|
"Write your own compiler before posting-priviliges are granted"
I are troll
|
|
|
|
|
|
vinithakizhussery wrote: I am an Msc computer science student
Get your money back you obviously have not learned anything.
Why is common sense not common?
Never argue with an idiot. They will drag you down to their level where they are an expert.
Sometimes it takes a lot of work to be lazy
Individuality is fine, as long as we do it together - F. Burns
Help humanity, join the CodeProject grid computing team here
|
|
|
|
|
Now if the failure to learn something is with the school or uni, I can understand you try and get your money back. But is the uni at fault here?
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
modified on Sunday, June 12, 2011 9:18 AM
|
|
|
|
|
Luc Pattyn wrote: uni at fault
If he's is dumb enough to try and get us to do his homework for him, he might be dumb enough to try and get his money back. I probably should have phrased it to be more like a suggestion...
Why is common sense not common?
Never argue with an idiot. They will drag you down to their level where they are an expert.
Sometimes it takes a lot of work to be lazy
Individuality is fine, as long as we do it together - F. Burns
Help humanity, join the CodeProject grid computing team here
|
|
|
|
|
"Education is the only thing that people are willing to pay for, without getting delivered what they paid for."
He'll get a degree. Then he'll become a consultant, and then he'll grow to become a manager. Describe an idea and get someone to do the actual work
I are troll
|
|
|
|
|
|
That confusion happens only on the forum! Really!!
I are troll
|
|
|
|
|
d@nish wrote: He She-it .
Fixed that for you, otherwise I'll take your word for it.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots.
-- Robert Royall
|
|
|
|
|
You can see the gender of a name like "vinithakizhussery"?
|
|
|
|
|
If you know the naming convention of the culture it comes from when why not?
Where it gets fuzzy is when people do daft things like name their daughter Mackenzie (Son of Kenneth)
|
|
|
|
|
So, what culture does it come from?
|
|
|
|
|
What? The OP's name? No idea. But if a person recognised it and could work out gender from a name...
For example, is "Colin" masculine of femenine? For an English speaker the answer is fairly obvious, but if you are from another culture that has never come in contact with cultural conventions of English speakers then it might no be obvious.
As for Mackenzie it is Gaelic in origin. The "Mac" (or more recently "Mc") prefix on a name means "Son of".
|
|
|
|
|
Very true. I thought Brady Kelly to be female. But its not the case.
|
|
|
|
|
Well Vinitha seems Indian name. That too from South India where people use "th" in places where North Indian will use "t". Rest cannot be decoded by me.
|
|
|
|
|
Eddy Vluggen wrote: grow to become a manager
I thought managers were scraped off the bottom of slimy rocks or something....
Why is common sense not common?
Never argue with an idiot. They will drag you down to their level where they are an expert.
Sometimes it takes a lot of work to be lazy
Individuality is fine, as long as we do it together - F. Burns
Help humanity, join the CodeProject grid computing team here
|
|
|
|
|
Wow, cnosidering the number of changes that can be made to an entire file system, that could generate more emails than any spammer on this planet today.
Oh...and how would emailing file system changes be useful to anyone?? After being in this industry for 23 years, wearing many different hats, I fail to see how being notified of file system changes would be useful...
|
|
|
|
|
It's as useful as this is a legitimate MSC level project.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots.
-- Robert Royall
|
|
|
|
|
hello, for example, i have three Textbox and a button int the Form(textBox1,textBox2,textBox3, button2).
private void button2_Click(object sender, EventArgs e)
{
int temp;
temp = int.Parse(textBox2.Text) + int.Parse(textBox1.Text);
textBox3.Text = temp.ToString();
}
A question is : i have two roles (system administrator and commmon user) in this software. if i have written this button2_Click(), can i let system administrator change button2_Click() when software is running.
eg,temp = int.Parse(textBox2.Text) * int.Parse(textBox1.Text);
instead of temp = int.Parse(textBox2.Text) + int.Parse(textBox1.Text);
thank you
|
|
|
|
|
Sure you can. The simplest way is to use a boolean (see below) but there are more complex and elaborate methods if there is a lot of role dependent behavior in your system.
bool isAdmin = false;
private void button2_Click(object sender, EventArgs e)
{
int temp;
if (isAdmin)
{
temp = int.Parse(textBox2.Text) * int.Parse(textBox1.Text);
}
else
{
temp = int.Parse(textBox2.Text) + int.Parse(textBox1.Text);
}
textBox3.Text = temp.ToString();
}
|
|
|
|
|
Somebody please help....
I have a treeview control in my application which loads images for nodes from an imagelist. Problem is that when I set the Form's localizable property to true, all the nodes imageindex was set to default. What i understand was, the Form's designer.cs will change the original code to a generalised one,like this..
resources.ApplyResources(this.treeView1, "treeView1");<br />
this.treeView1.ImageList = this.imageList1;<br />
this.treeView1.Name = "treeView1";<br />
this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {<br />
((System.Windows.Forms.TreeNode)(resources.GetObject("treeView1.Nodes")))});
The code which adds images to treeview was lost automatically...
Thanks in advance...
|
|
|
|
|
I think its a bug like this[^] however you can add images on form's load or in constructor.
|
|
|
|
|
Thanks for ur reply.. It works well..But I have lot of nodes in my treeview, so i prefer adding image index for nodes during design time.
I tried declaring treeview like this..
[System.ComponentModel.Localizable(false)]
private System.Windows.Forms.TreeView treeView1;
But no use and even i dont know what this means..Do you have any idea about this??
|
|
|
|
|
It suppose to disable the Localizable for treeview1
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-iTV.C\y<pjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|