MichaelCowan Posted July 6, 2009 Share Posted July 6, 2009 (edited) As of right now, the project was recently scrapped and restarted. So you tell me.If I had to guess, I would say the project failed because you are a jerk and no one wanted to work with you? I found the original post very useful and well intentioned, which is more than I can say for your responses.A better person would have been more considerate and helpful in his criticisms. Although, I did find it humorous how slapped justdoit123 down and while padding your post count, that will teach him to ask clarification on one of your vague, but obviously superior posts.Wow, you got my Gander up something fierce.Anyone, if anyone needs some basic C# help getting this working message me and I can help answer some questions. I have been using C# for 8-9 years and autoit since v2 Edited July 6, 2009 by MichaelCowan Link to comment Share on other sites More sharing options...
Richard Robertson Posted July 6, 2009 Share Posted July 6, 2009 The project has been a solo project from the beginning. I never said it failed either. I said I got rid of my current progress and started over. My responses are accurate. They don't need to be polite. Now that I've said that, show me where I have been inconsiderate. Link to comment Share on other sites More sharing options...
MichaelCowan Posted July 7, 2009 Share Posted July 7, 2009 The project has been a solo project from the beginning. I never said it failed either. I said I got rid of my current progress and started over.My responses are accurate. They don't need to be polite. Now that I've said that, show me where I have been inconsiderate.You are a big boy, check out the definition of inconsiderate, then look back over your last few posts. I am sure a smart guy like you can figure it out.Adj. 1. inconsiderate - lacking regard for the rights or feelings of others; "shockingly inconsiderate behavior"selfish - concerned chiefly or only with yourself and your advantage to the exclusion of others;tactless, untactful - lacking or showing a lack of what is fitting and considerate in dealing with others; "in the circumstances it was tactless to ask her age"thoughtless - showing lack of careful thought; "the debate turned into thoughtless bickering" Link to comment Share on other sites More sharing options...
Richard Robertson Posted July 8, 2009 Share Posted July 8, 2009 Tell me how those posts are inconsiderate. And if everyone is ignoring me, why do you feel the need to call me out? Link to comment Share on other sites More sharing options...
Boyan Posted July 9, 2009 Share Posted July 9, 2009 wow, dude - you ARE a jerk. The idea behind a forum is to help people - if you don't plan to provide anybody with a meaningful solution to their issue why post anything. It that aspect you are a jerk - and yes, I did ignore almost everything you had posted. Link to comment Share on other sites More sharing options...
Richard Robertson Posted July 9, 2009 Share Posted July 9, 2009 (edited) I don't care if I'm a jerk. Valik is a jerk too. I don't see you calling him out. I've contributed a lot to this forum whether you realize it or not. You can ask most of the members here and you will find that I am more helpful than not. You two however are both disrupting these threads with off topic clutter that should have been sent via personal message. Edited July 9, 2009 by Richard Robertson Link to comment Share on other sites More sharing options...
PythEch Posted September 14, 2009 Share Posted September 14, 2009 (edited) Thanks but I want to know a thing. Is there a way to pass optional arguments? Type.Missing is not working. I need it for ControlClick. Thanks... Edited September 14, 2009 by PythEch Link to comment Share on other sites More sharing options...
Richard Robertson Posted September 14, 2009 Share Posted September 14, 2009 C# doesn't support optional arguments. You have to provide a value, although you are always welcome to try a default value. Link to comment Share on other sites More sharing options...
PythEch Posted September 15, 2009 Share Posted September 15, 2009 (edited) C# doesn't support optional arguments. You have to provide a value, although you are always welcome to try a default value.http://www.integralwebsolutions.co.za/Blog/EntryId/364/Optional-Parameters-in-c-4-0.aspx Whatever I solved my problem. I'm waiting for vs2010 full release. Tnx... Edited September 15, 2009 by PythEch Link to comment Share on other sites More sharing options...
Richard Robertson Posted September 15, 2009 Share Posted September 15, 2009 Yeah, C#4 will have it. Not really sure why Microsoft didn't support it earlier. Link to comment Share on other sites More sharing options...
jvanegmond Posted September 16, 2009 Share Posted September 16, 2009 (edited) This is how I solve optional arguments in C#:public string Lolwut(int foo) { return this.Lolwut(foo, 0); // 0 is default value for second param } public string Lolwut(int foo, int bar) { return (foo + bar).ToString(); }Edit: Forgot return on first Lolwut. Edited September 17, 2009 by Manadar github.com/jvanegmond Link to comment Share on other sites More sharing options...
Richard Robertson Posted September 16, 2009 Share Posted September 16, 2009 This is how I solve optional arguments in C#: public string Lolwut(int foo) { return this.Lolwut(foo, 0); // 0 is default value for second param } public string Foo(int foo, int bar) { return (foo + bar).ToString(); } Edit: Forgot return on first Lolwut. The code is still wrong. You named the "function without optional parameters" Foo, but you are calling Lolwut. Link to comment Share on other sites More sharing options...
jvanegmond Posted September 17, 2009 Share Posted September 17, 2009 (edited) Stupid. Function names should be the same obviously. I shouldn't do inline C# writing. Makes me miss intellisense. Edited September 17, 2009 by Manadar github.com/jvanegmond Link to comment Share on other sites More sharing options...
windowwasher Posted December 17, 2009 Share Posted December 17, 2009 Thanks Outshynd (OP). I found the post very useful and informative. It got me off to a quick start! Was it over simplified? Nope, it was perfect communication, your example belongs in a book. Good work. WW Link to comment Share on other sites More sharing options...
ursek Posted May 3, 2010 Share Posted May 3, 2010 Hello to all! I add reference to C# from AutoIt and work OK. Now I want to use some function that is not supported in AutoItX3.dll file (FF.au3). Is there any way that I can use FF function in C#? Thanks for answers! Uros Link to comment Share on other sites More sharing options...
Richard Robertson Posted May 3, 2010 Share Posted May 3, 2010 No. What function do you need? You can easily implement it in C# directly. Link to comment Share on other sites More sharing options...
ursek Posted May 3, 2010 Share Posted May 3, 2010 I need FireFox function. In autoIt file I just simply write #include #Include <FF.au3> than I can use function like _FFStart(),... Link to comment Share on other sites More sharing options...
Richard Robertson Posted May 4, 2010 Share Posted May 4, 2010 You'll have to translate the AutoIt code to C# then. No UDF is callable through AutoItX. Link to comment Share on other sites More sharing options...
ursek Posted May 4, 2010 Share Posted May 4, 2010 Can any one help me with that? I don't event know where to start it :S Link to comment Share on other sites More sharing options...
jvanegmond Posted May 4, 2010 Share Posted May 4, 2010 Can any one help me with that? I don't event know where to start it :STry finding a library that automates FireFox that is written for C#, they are not uncommon.Start on Google or on the first result for "FireFox C#": http://stackoverflow.com/questions/137880/how-can-you-automate-firefox-from-c-application github.com/jvanegmond Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now