User milot - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T06:26:44Z http://stackoverflow.com/feeds/user/22637 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1755396/how-to-add-an-widget-into-the-form-in-qtdesigner/1756335#1756335 2 Answer by milot for how to add an widget into the Form In QtDesigner milot 2009-11-18T14:23:00Z 2009-11-18T14:23:00Z <p>If you want just to display a widget on a form, you can set your QMainWindow or QDialog to be the widget parent:</p> <pre><code>QLabel *l = new QLabel(this); l-&gt;setText("My long string"); </code></pre> <p>Where <strong>this</strong> is a pointer pointing to your current QDialog or QMainWindow.</p> <p>Otherwise as ufukgun pointed out, you can use setCentralWidget if you need your widget to occupy the center of the QMainWindow.</p> http://stackoverflow.com/questions/138761/web-applications-desktop-applications 3 Web Applications & Desktop Applications milot 2008-09-26T11:05:15Z 2009-09-26T16:44:21Z <p>Hello folks,</p> <p>I am a programmer who writes a lot of code for desktop applications, now started considering cross-platform apps as an issue but at work I write C# apps and I come from C++ and CS background and of course, I wrote several things in QT/C++. But now I am kinda confused about web applications, I have done some work on PHP and I know how things go there, I was a gmail and google docs user for a lot of time and I have seen how much web applications were improved with new web 2.0 technology including Ajax, XML so on. And my confusion is that should I start looking forward for web application development? and continue exploring the power of web 2.0 or I have to just stick with my old world where I feel very comfortable on parallelism and other stuff? Because believe me I had too many offers to work as a web application developer but I didn't realize this opportunity and now I am kinda confused whether I must start writing web apps. Have you been writing desktop applications and switched to web? or have somebody experience in this scenario?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1012616/c-sendkeys-send 0 C# SendKeys.Send milot 2009-06-18T13:28:55Z 2009-06-18T22:37:19Z <p>I am running on an issue using C# SendKeys.Send method. I am trying to replace keyboard keys with other keys, for example when I press "a" in keyboard I want that key to be "s" for example, when I am doing this in my code:</p> <pre><code>if ((Keys)keyCode== Keys.A) { SendKeys.Send("s"); } </code></pre> <p>Right now I get only "sa" character printed in my notepad, but instead of printing "sa" I need to get only "s" character in this case because when I press "a" on my keyboard, "a" must be replaced with "s".</p> <p>I tried removing the last character by adding this line:</p> <pre><code>SendKeys.Send("{BS}"); </code></pre> <p>But all I got is "s" character removed and "a" character was there.</p> <p>How can I prevent this from happening?</p> http://stackoverflow.com/questions/1012616/c-sendkeys-send/1015556#1015556 1 Answer by milot for C# SendKeys.Send milot 2009-06-18T22:37:19Z 2009-06-18T22:37:19Z <p>I solved this problem by registering global hot keys. Thank you. <a href="http://www.dotnet2themax.com/ShowContent.aspx?ID=103cca7a-0323-47eb-b210-c2bb7075ba78" rel="nofollow">This</a> was the resourse that I used to solve my problem.</p> http://stackoverflow.com/questions/115256/skills-in-demand-during-2009/937060#937060 0 Answer by milot for Skills in demand during 2009 milot 2009-06-01T22:10:24Z 2009-06-01T22:10:24Z <p>You should really consider Qt Framework (<a href="http://www.qtsoftware.com/" rel="nofollow">QtSoftware.com</a>) with C++ and/or Python with PyQt for desktop cross platform applications.</p> http://stackoverflow.com/questions/896801/what-are-your-code-writing-habits/896819#896819 0 Answer by milot for What are your code-writing habits? milot 2009-05-22T08:10:38Z 2009-05-22T08:10:38Z <ul> <li>Listening music with headphones, </li> <li>Lights off,</li> <li>I cross my legs and always keep them that way,</li> <li>And I am very concentrated on code so I don't really know where I am for that time</li> </ul> http://stackoverflow.com/questions/780837/what-is-a-good-linux-ide-for-code-completion/896794#896794 1 Answer by milot for What is a good Linux IDE for code completion? milot 2009-05-22T08:03:28Z 2009-05-22T08:03:28Z <p>Anjuta is also a good IDE but I haven't used it for several years now. But earlier it supported code completion I think now they improved the feature more, better try it yourself, right now I am using Qt Creator and I am impressed with their implementation of code completion. </p> <p><a href="http://projects.gnome.org/anjuta/index.shtml" rel="nofollow">Anjuta</a></p> <p><a href="http://projects.gnome.org/anjuta/features.shtml" rel="nofollow">Anjuta Features</a></p> http://stackoverflow.com/questions/891938/developer-notebook-configuration/892001#892001 0 Answer by milot for Developer notebook configuration milot 2009-05-21T09:05:15Z 2009-05-21T14:15:41Z <p>Well I don't recommend any of the vendors but what I recommend you is that you must choose at least 4GB of RAM, Core 2 Duo system and maximum of 2KG in weight if you happen to be dragging it with you all the way long. </p> http://stackoverflow.com/questions/526761/set-qlineedit-focus-in-qt/526790#526790 0 Answer by milot for Set QLineEdit focus in Qt milot 2009-02-09T00:44:13Z 2009-02-09T00:44:13Z <p>In Qt setFocus() is a slot, you can try other overloaded method which takes a Qt::FocusReason parameter like the line shown below:</p> <pre><code>line-&gt;setFocus(Qt::OtherFocusReason); </code></pre> <p>You can read about focus reason options in the following link:</p> <p><a href="http://doc.trolltech.com/4.4/qt.html#FocusReason-enum" rel="nofollow">http://doc.trolltech.com/4.4/qt.html#FocusReason-enum</a></p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/454354#454354 2 Answer by milot for What was your first computer game that got you interested in computers? milot 2009-01-18T00:12:01Z 2009-01-18T00:12:01Z <p>Dangerous Dave: <a href="http://en.wikipedia.org/wiki/Dangerous_Dave" rel="nofollow">http://en.wikipedia.org/wiki/Dangerous_Dave</a></p> http://stackoverflow.com/questions/408498/eclipse-users-do-you-use-aptana-too/412743#412743 0 Answer by milot for Eclipse users: Do you use Aptana too? milot 2009-01-05T10:23:44Z 2009-01-05T10:23:44Z <p>I use Eclipse PDT for PHP</p> http://stackoverflow.com/questions/410222/does-connection-close-when-command-is-disposed-and-the-connection-is-defined-dire/410232#410232 2 Answer by milot for Does connection close when command is disposed and the connection is defined directly on the command? milot 2009-01-04T01:29:28Z 2009-01-04T01:29:28Z <p>No, the connection object will not be disposed until you dispose it explicitly. But my recommendation is to use <strong>using blocks</strong> whenever you can.</p> http://stackoverflow.com/questions/409969/polymorphism-define-in-just-two-sentences/410030#410030 1 Answer by milot for Polymorphism - Define In Just Two Sentences milot 2009-01-03T22:44:35Z 2009-01-03T22:44:35Z <p>Multiple forms of a single object is called Polymorphism.</p> http://stackoverflow.com/questions/303773/favorite-data-structure 0 Favorite Data Structure milot 2008-11-19T23:18:43Z 2008-12-26T23:38:57Z <p>We all, as programmers, have something that we really like and always when we are trying to solve a problem we would like to solve it on our personal choice of programming language/algorithm.</p> <p>But the question that I've chatted with other developers at work about, was "Which is your favorite data structure" so I've met developers who was using arrays and didn't want to hear about other data structures but some others like me who was using linked lists.</p> <p>I know sometimes you have to choose a data structure which will fit on the solution but sometimes you love one and you use it at every time you have to store some data in memory. </p> <p>So please don't start a flame war or something but I didn't find some similar question like this and I started up this question.</p> <p>So folks which is your favorite data structure? I am a big fan of linked lists.</p> http://stackoverflow.com/questions/393686/change-reportviewer-currency-format 0 Change ReportViewer Currency Format? milot 2008-12-26T11:10:13Z 2008-12-26T12:04:03Z <p>Hello there, I was wondering how can I change currency format from US ($) to EURO (€) for a specific TextBox in Microsoft ReportViewer? </p> <p>Because it always displays a dollar sign in front and the format is ##,###.## and as for euro it must be like ##.###,##</p> http://stackoverflow.com/questions/393686/change-reportviewer-currency-format/393716#393716 1 Answer by milot for Change ReportViewer Currency Format? milot 2008-12-26T12:04:03Z 2008-12-26T12:04:03Z <p>Well the solution to that problem is to change the general report rdlc language to some of European country (for example I've put it to German language) and the currency field is displaying as it is supposed.</p> http://stackoverflow.com/questions/367121/cross-platform-desktop-apps-an-approach/367142#367142 1 Answer by milot for Cross-Platform Desktop Apps -- An Approach? milot 2008-12-14T23:15:27Z 2008-12-14T23:15:27Z <p>If I were you I would go with a cross-platform framework and/or programming language, nowadays you have plenty of languages/frameworks that are working cross platform such as Java, QT (with both Java and C++ languages for using the toolkit), C# with MONO, GTK+ with C (gtkmm with C++, gtk# and Mono for C#). So it is more simple if you do it in one language/framework than in two simultaneously because if you write the same app in two different languages/frameworks it will cost you extra development time for half of that time you can get your hands on new framework and the language because you know from the very beginning that your target platform is multi-platform. If now your primary platform would be e.g Windows and later the Mac users like the application very much so then is the reason for re-writing it targeting another platform and using its development tools.</p> http://stackoverflow.com/questions/330756/what-programming-tools-have-you-built-for-yourself/362333#362333 0 Answer by milot for What programming tools have you built for yourself? milot 2008-12-12T09:46:31Z 2008-12-12T09:46:31Z <p>I've written a tiny command line app to write my file header comments for C# and C++ source files, because I needed to write the same comment based on the filename and the date created and of course the author name which the user will specify, so my tool generated that for me because I've had the existing files and I just needed to put that on the top :)</p> http://stackoverflow.com/questions/352896/qt-commercial-licenses/352961#352961 0 Answer by milot for Qt commercial licenses? milot 2008-12-09T14:45:13Z 2008-12-09T14:45:13Z <p>With QT Commercial License you have support directly from trolltech's internals, you can use some widgets that trolltech uses internally, and of course you can use QT to develop commercial applications that you don't have to ship the code with the software, but just binaries. Those were some that I was interested in earlier (it was about 8 months ago) but maybe they have changed something I don't know but you can read more here:</p> <p><a href="http://trolltech.com/products/appdev/licensing" rel="nofollow">http://trolltech.com/products/appdev/licensing</a></p> http://stackoverflow.com/questions/328044/data-structure-question/328201#328201 0 Answer by milot for Data structure question milot 2008-11-29T23:46:24Z 2008-11-29T23:46:24Z <p>I am not sure about efficiency of this solution but you can try. So it depends at which scenario you will use it but I will write here two of them that I have in mind. First solution is if you have just one field of integers you can simply use generic list of integers:</p> <pre><code>List&lt;int&gt; myList = new List&lt;int&gt;(); </code></pre> <p>The second one is almost the same, but you can create a list of your own type for example if you have two fields, count and non-zero value you can create a class which will have two properties and then you can create a list of your class and store information in it. But also you can try generic linked lists. So the code for the solution two can be like this:</p> <pre><code>public class MyDbFields { public MyDbFields(int count, int nonzero) { Count = count; NonZero = nonzero; } public int Count { get; set; } public int NonZero { get; set; } } </code></pre> <p>Then you can create a list like this:</p> <pre><code>List&lt;MyDbFields&gt; fields_list = new List&lt;MyDbFields&gt;(); </code></pre> <p>and then fill it with data:</p> <pre><code>fields_list.Add(new MyDbFields(100, 11)); </code></pre> <p>I am not sure if this will fully help you solve your problem, but just my suggestion.</p> http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/325839#325839 4 Answer by milot for What is your favorite "programmer" t-shirt? milot 2008-11-28T14:07:52Z 2008-11-28T14:07:52Z <p>This is also interesting, I have this one but it's not fully programming related:</p> <p><img src="http://www.googlestore.com/images/products/multi/GO13052/GO13052.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/325464/listing-files-with-checkboxes-c-winforms/325478#325478 2 Answer by milot for Listing Files With CheckBoxes (C# / WinForms) milot 2008-11-28T10:52:08Z 2008-11-28T10:52:08Z <p>You can use checked list box control which is built-in winforms control (see links below):</p> <p><a href="http://www.functionx.com/vcsharp/controls/checkedlistbox1.htm" rel="nofollow">http://www.functionx.com/vcsharp/controls/checkedlistbox1.htm</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/3ss05xx6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/3ss05xx6.aspx</a></p> http://stackoverflow.com/questions/322653/how-to-cook-turkey-programatically/323244#323244 2 Answer by milot for How to cook turkey programatically? milot 2008-11-27T08:49:07Z 2008-11-27T08:49:07Z <p>Simple one in C#</p> <pre><code>public class Cook&lt;T&gt; { public Cook(T what_to_cook) { what_to_cook.Prepare(); what_to_cook.DoCooking(); if(what_to_cook.ServingReady()) what_to_cook.ServeAll(); else what_to_cook.PrepareServing(); } } public class MakeItHappen { Turkey t = new Turkey(); Cook&lt;Turkey&gt; ct = new Cook&lt;Turkey&gt;(t); } public class Turkey : ITurkey { public void Prepare(){...} public void DoCooking(){...} public void ServingReady(){...} public void SaveAll(){...} public void PrepareServing(){...} } public interface ITurkey { void Prepare(); void DoCooking(); void ServingReady(); void ServeAll(); void PrepareServing(); } </code></pre> http://stackoverflow.com/questions/313693/i-want-to-run-program-on-background-pref-c/313706#313706 1 Answer by milot for I want to run program on background . pref C# milot 2008-11-24T08:57:57Z 2008-11-24T08:57:57Z <p>I very often use Notify Icon on my applications which comes with Visual Studio, <a href="http://www.developer.com/net/csharp/article.php/3336751" rel="nofollow">http://www.developer.com/net/csharp/article.php/3336751</a> as for start syncing, you can call a function on another thread which will measure time every second and if it is 2am you can call another function in another thread to sync folders (you can use also a timer component).</p> <p>Resources:</p> <p>Notify Icon: <a href="http://www.developer.com/net/csharp/article.php/3336751" rel="nofollow">http://www.developer.com/net/csharp/article.php/3336751</a></p> <p>C# Threading: <a href="http://www.albahari.com/threading/" rel="nofollow">http://www.albahari.com/threading/</a></p> <p>Timer Component: <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.timer.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.timer.aspx</a> and <a href="http://www.codeproject.com/KB/miscctrl/TimeSheet.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/TimeSheet.aspx</a></p> http://stackoverflow.com/questions/313585/online-resources-for-learning-c/313686#313686 0 Answer by milot for Online resources for learning C# milot 2008-11-24T08:45:30Z 2008-11-24T08:45:30Z <p>MSDN also have good resources, for example videos for Absolute Beginners: <a href="http://msdn.microsoft.com/en-us/vstudio/aa700773.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vstudio/aa700773.aspx</a> and then some walkthroughs: <a href="http://msdn.microsoft.com/en-us/library/7a61f8ks(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/7a61f8ks(VS.71).aspx</a> the walkthroughs will explain step by step how to make something, for example Creating a simple windows form: <a href="http://msdn.microsoft.com/en-us/library/aa984463(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa984463(VS.71).aspx</a></p> http://stackoverflow.com/questions/305654/what-php-specific-questions-would-you-ask-in-a-job-interview/305875#305875 3 Answer by milot for What PHP-specific questions would you ask in a job interview? milot 2008-11-20T16:19:36Z 2008-11-20T16:19:36Z <p>Also can be asked about:</p> <ul> <li>PHP Frameworks (If he used one - Zend Framework, Cake)</li> <li>String manipulation (He can explain concatenation)</li> <li>Security (SQL Injection, XSS)</li> <li>Client side programming (Javascript, Ajax).</li> <li>Some PHP's built-in functions.</li> </ul> http://stackoverflow.com/questions/301291/a-career-in-programming-and-now-for-something-completely-different/301337#301337 5 Answer by milot for A career in programming - and now for something completely different? milot 2008-11-19T08:54:18Z 2008-11-19T08:54:18Z <p>I had a colleague who is a good developer but he dreams of him self as a bartender so in a talk he told me that he loves and dreams to work as bartender but he took a programming course and he became a developer but his plan was to quit development job and to work as bartender sometime in the near-future.</p> http://stackoverflow.com/questions/289873/is-it-a-good-idea-for-a-programmer-to-work-from-home/290120#290120 0 Answer by milot for Is it a good idea for a programmer to work from home? milot 2008-11-14T13:45:38Z 2008-11-14T13:45:38Z <p>I am doing this as a part-time developer for a project which is for a virtual team and all the team members are geographically separated, it really depends on the self discipline, my experience is great and I am being paid to work 6 hours a week but I am working more than 6 hours because I don't want my work just do be done, but to be done how it must be done and the project manager is very happy and comfort how the work is going.</p> http://stackoverflow.com/questions/290061/what-does-the-syntax-in-c-mean/290070#290070 1 Answer by milot for What does the '=>' syntax in C# mean? milot 2008-11-14T13:27:59Z 2008-11-14T13:27:59Z <p>Instead of using anonymous method like this:</p> <pre><code>somevar.Find(delegate(int n) { if(n &lt; 10) return n; }); </code></pre> <p>you simply write it like this:</p> <pre><code>somevar.Find(n =&gt; n &lt; 10); </code></pre> <p>It will take the data type based on the return value.</p> http://stackoverflow.com/questions/228320/cs-majors-hardest-concepts-you-learned-in-school/255779#255779 2 Answer by milot for CS Majors: Hardest concept(s) you learned in school? milot 2008-11-01T17:06:12Z 2008-11-01T17:06:12Z <p>Transformation between Non Deterministic Finite Automata (NFA) to Deterministic Finite Automata (DFA) in theory of formal languages, it was very strange at once but when the time has gone and the practice made its magic everything was clear then.</p> http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/233563#233563 Comment by milot on What is your favorite "programmer" t-shirt? milot 2009-10-01T08:11:30Z 2009-10-01T08:11:30Z This is thinkgeek.com's fault -&gt; <a href="http://www.thinkgeek.com/tshirts-apparel/unisex/itdepartment/9a0e/" rel="nofollow">thinkgeek.com/tshirts-apparel/unisex/&hellip;</a> http://stackoverflow.com/questions/1012616/c-sendkeys-send Comment by milot on C# SendKeys.Send milot 2009-06-18T13:58:10Z 2009-06-18T13:58:10Z No this is for a project that I was assigned to do. In my own language we have some special characters &quot;&#235;&quot; and &quot;&#231;&quot; which I have to remap the &quot;[&quot; and &quot;]&quot; keys to match the special characters that I showed you, in order when the people write to our native Albanian language to ahve the keys remapped. http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012738#1012738 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:52:24Z 2009-06-18T13:52:24Z Thank you very much for your suggestion, but I need to remap the keyboard layout programmaticaly. http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012689#1012689 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:48:57Z 2009-06-18T13:48:57Z by switching key sends doesn't work. http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012689#1012689 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:45:34Z 2009-06-18T13:45:34Z I need this to be global, I am using Windows Hooks to get the global keys that are pressed. http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012639#1012639 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:44:30Z 2009-06-18T13:44:30Z but I get &quot;sa&quot; characters! http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012651#1012651 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:43:08Z 2009-06-18T13:43:08Z It doesn't help, I tried :) http://stackoverflow.com/questions/1012616/c-sendkeys-send/1012644#1012644 Comment by milot on C# SendKeys.Send milot 2009-06-18T13:41:55Z 2009-06-18T13:41:55Z I edited the post, you can re-read it. http://stackoverflow.com/questions/891938/developer-notebook-configuration/892001#892001 Comment by milot on Developer notebook configuration milot 2009-05-21T14:16:23Z 2009-05-21T14:16:23Z Yes I meant max of 2kg but at the time that I wrote the comment I was run out of caffeine and I just wrote it fast :) thank you for correction. http://stackoverflow.com/questions/891938/developer-notebook-configuration/892001#892001 Comment by milot on Developer notebook configuration milot 2009-05-21T11:21:34Z 2009-05-21T11:21:34Z I think yes, if you must take it everywhere. But NO if you barely grab it from your desk, I had bad experience with heavy weight laptops. http://stackoverflow.com/questions/526761/set-qlineedit-focus-in-qt/526790#526790 Comment by milot on Set QLineEdit focus in Qt milot 2009-02-09T09:02:16Z 2009-02-09T09:02:16Z It can be any signal which it's signature is matched with the slot's one, so it can be connected to a signal which doesn't take any parameters. http://stackoverflow.com/questions/367121/cross-platform-desktop-apps-an-approach/367142#367142 Comment by milot on Cross-Platform Desktop Apps -- An Approach? milot 2008-12-15T08:06:28Z 2008-12-15T08:06:28Z Now we have different experiences, I've built an simple app using QT and it look-and-feel is native on Windows and Linux as I tested. But still you cannot have the native power of the cross-platform toolkits. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84687#84687 Comment by milot on What's your favorite "programmer" cartoon? milot 2008-11-20T22:36:59Z 2008-11-20T22:36:59Z I laughed a lot with this one! http://stackoverflow.com/questions/303773/favorite-data-structure Comment by milot on Favorite Data Structure milot 2008-11-19T23:40:02Z 2008-11-19T23:40:02Z I've asked a question that I ask my colleagues both at work and University, so I decided to ask the same question here to read the responses from other programmers here. I am not here for points/reps because it doesn't make me a good or bad programmer! people can use google to find answers. http://stackoverflow.com/questions/303773/favorite-data-structure Comment by milot on Favorite Data Structure milot 2008-11-19T23:32:41Z 2008-11-19T23:32:41Z Well it was my second question as a member of SO so I didn't knew that questions like this must be marked as community wiki so I've changed the post to community wiki. Thank you.