Threading
-
People who does have a civic sence does not write words like "morn" or "idiot" in a public forum. This lesson does come from his/her parents and family. But people like you does not have a family or parents with good civic sence to leran that. So learn from me and tell your parents and family to learn that too. If they cant send them to me.
Your mental prowess is... overwhelming. I humbly bow before you.
-
Your mental prowess is... overwhelming. I humbly bow before you.
Joergen Sigvardsson wrote:
Your mental prowess is... overwhelming. I humbly bow before you.
:laugh: That is classic.
Shog on learning VB6: Ah, that would have been VB6. Kicked my ass anyway.
So easy to learn, just like falling down a flight of stairs... -
Why cant you come up with an actual solution to the problem. Have some ice cream or cold drink and sit down, get the solution,execute it,post it. I very well know you can. Dont get into brahmma's advice this will lead you to a bad heartattack.
BarnaKol wrote:
Dont get into brahmma's advice this will lead you to a bad heartattack.
I wasn't going to weigh in to this until I read the above comment. I have heart failure and I would suggest that, from experience, taking brahmma's advice would lead away from a heart attack.
BarnaKol wrote:
get the solution,execute it,post it. I very well know you can.
Whether he can or cannot is not the issue. This is a volunteer board so time is the issue. If you want the solution then pay for a support call so that someone whose job it is to answer will answer.
Upcoming events: * Glasgow: SQL Server 2005 - XML and XML Query Plans, Mock Objects, SQL Server Reporting Services... Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton My website
-
BarnaKol wrote:
So if you are not an BIG IDIOT again in this forum then why are you replying back the threads.
Because we are going to ban you for speaking about other members family and teachers, you idiot. Wait and see. There are moderators who will read this thread and you will get your ban notice so quick. I will love to hear your opinion on that. You dont know to respect other members or you dont like them you can very well get the hell out of this place. We all love to see that.
:rose:
So you proved by posting your replies again that you are a BIG IDIOT. Yes I have to teach you how to speak if you dont know. And of course this includes your parents father and mother and too your teachers who havent made you lern how to speak. I like to tell you very much how forgot to learn good and decent behavior. And for your information I like those members who knows how to write in a way a gentleman write,except you as you are not at all a gentleman.And for your kind information I am still here for you to remind that you are again a BIG IDIOT. I dont like to tell but what to do, you understand languages like this as this is the teaching you have got from your childhood.
-
BarnaKol wrote:
Dont get into brahmma's advice this will lead you to a bad heartattack.
I wasn't going to weigh in to this until I read the above comment. I have heart failure and I would suggest that, from experience, taking brahmma's advice would lead away from a heart attack.
BarnaKol wrote:
get the solution,execute it,post it. I very well know you can.
Whether he can or cannot is not the issue. This is a volunteer board so time is the issue. If you want the solution then pay for a support call so that someone whose job it is to answer will answer.
Upcoming events: * Glasgow: SQL Server 2005 - XML and XML Query Plans, Mock Objects, SQL Server Reporting Services... Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton My website
-
Stephen Hewitt and brahmma Still dont have a rigid solution the the actual problem posted. :laugh::laugh::laugh: Sooooooooooooooo bigggggggggggg contributors of the forum are they. :^):^):^):^):^):^) . People solve in their own when they bring a solution. :sigh::sigh::sigh: Help Them. They are Nervous :wtf::wtf: :((:((:((
BarnaKol wrote:
Still dont have a rigid solution the the actual problem posted
so, tell me Kyle sherlock, why don't you suggest yours ?
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
i hope you are feeling sleepy for people not calling you by the same. No problme they will start calling soon.
why are you feeling attacked, you're not the original poster though, so what's up ? or you're have multiple accounts ? :suss:
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
You may vote as many as you like. But none here has any authority to tell someone bad and should use decent and polite languages.
BarnaKol wrote:
But none here has any authority to tell someone bad and should use decent and polite languages
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
You may vote as many as you like. But none here has any authority to tell someone bad and should use decent and polite languages.
BarnaKol wrote:
You may vote as many as you like. But none here has any authority to tell someone bad and should use decent and polite languages.
stop it dude.. it not look good!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
Many people here dont know how you write in a gentleman's way. Especially brahmma.People may be wrong or people may be right. But you cannot say someone "idiot" May times he uses abusive words and bad languages. This must be stopped.
BarnaKol wrote:
But you cannot say someone "idiot" May times he uses abusive words and bad languages. This must be stopped.
you are right.. but using abusive langauge is not good in public forums!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
This would be me not caring that someone called you an idiot --> :zzz: Your continued posts in defense of what you have been doing on this thread from the start only prove their point. Buh-bye. invoking the ignore poster feature in 5... 4... 3... 2... 1...
Mike Poz
Mike Poz wrote:
invoking the ignore poster feature in 5... 4... 3... 2... 1...
he he he
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
You dont have any authority to tell someone like that unless you accept the same from yur part.
BarnaKol wrote:
You dont have any authority to tell someone like that unless you accept the same from yur part
man ultimat authrity is GOD the allmighty.. he/she don't want you to use abusive language
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; namespace testApp { public partial class Form1 : Form { public Form1() { InitializeComponent(); } Thread newThread; private void btnOK_Click(object sender, EventArgs e) { newThread = new Thread(new ThreadStart(Display)); newThread.IsBackground = true; newThread.Start(); } private void Display() { MessageBox.Show("threadStarted"); } private void btnCancel_Click(object sender, EventArgs e) { newThread.Abort(); MessageBox.Show("threadstopped"); } } }
My small attempt...
dude it's unmanaged forum!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
Its simple if you know managed programming you can convert it ;)
WhiteSky
WhiteSky wrote:
if you know managed programming you can convert it ;)
if not!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
Steve, please stop arguing with him. Any person with a civic sense must have understood that what he did was a mistake by now. Ironically, he keeps arguing.
"The difficulty lies, not in the new ideas, but in escaping from the old ones." -- John Maynard Keyes, 1936
brahmma wrote:
Ironically, he keeps arguing.
thats democracy man!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
It is better not to give any advice than giving bad advice. Is it too difficult for you to understand this?
"The difficulty lies, not in the new ideas, but in escaping from the old ones." -- John Maynard Keyes, 1936
brahmma wrote:
t is better not to give any advice than giving bad advice. Is it too difficult for you to understand this?
thats should be motto of every one who posting help here!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
Joergen Sigvardsson wrote:
Your mental prowess is... overwhelming. I humbly bow before you.
:laugh: That is classic.
Shog on learning VB6: Ah, that would have been VB6. Kicked my ass anyway.
So easy to learn, just like falling down a flight of stairs...brahmma wrote:
:laugh: That is classic
humm... i missed out complete thread.. it's seems very interesting :)
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
I've been with this board for quite a while. I am active on the C++ forum and I help people, whenever I can. I do not mislead them. With your message count and the content of your messages, anyone who reads this message will be able to tell that you are nothing more than a stupid little troll. I stop talking to you here. Now, we have another Kyle. You can continue with your absurd little rant.
"The difficulty lies, not in the new ideas, but in escaping from the old ones." -- John Maynard Keyes, 1936
brahmma wrote:
I am active on the C++ forum and I help people, whenever I can
humm... i don't expect this from you!
brahmma wrote:
anyone who reads this message will be able to tell that you are nothing more than a stupid little troll.
good.. but please re frame yourself using abusive language in public!.. it will be beneficial in long run!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
sorry. actually i thought its the c# forum
My small attempt...
sujithkumarsl wrote:
actually i thought its the c# forum
no problem due. many time i posted unmanaged answer in managed forum!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
-
WhiteSky wrote:
if you know managed programming you can convert it ;)
if not!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You
Its simple if not you can try to learn it ;P
WhiteSky