active questions tagged desktop-application - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:07:04Zhttp://stackoverflow.com/feeds/tag/desktop-applicationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935756/what-applications-can-you-make-with-the-programming-language-ruby1what Applications can you make with the programming language Ruby? Imran2009-12-20T12:52:51Z2009-12-21T11:03:13Z
<p>What applications can you make with the programming language Ruby? Can you name a few commercial/famous ones written only in Ruby?</p>
<p>What I'd really like to know is can you just learn Ruby instead of C/C++ to make commercial software e.g web server, photoshop, desktop applications, even an operating system etc.</p>
<p>Except Ruby on Rails which I already use!</p>
http://stackoverflow.com/questions/1758337/why-change-from-wpf-to-silverlight-43Why change from WPF to Silverlight 4bambuska2009-11-18T19:14:05Z2009-12-19T13:06:27Z
<p>I'm working on an application we made WPF instead of Silverlight as we wanted a full blown desktop application with the whole unique feeling and advantages that gives. However, with the announcement of Silverlight 4 I hear there is a buzz about Silverlight mostly being the preferred choice also for desktop applications. </p>
<p>So; why should I consider moving my WPF application to Silverlight 4 - given that I still want a desktop application? </p>
http://stackoverflow.com/questions/1922085/sql-server-security-configuration-options-for-windows-desktop-client-server-appli0SQL Server Security Configuration Options for Windows Desktop Client/Server applicationunknown (google)2009-12-17T14:16:36Z2009-12-17T22:43:44Z
<p>I am developing a windows desktop client/server application in .NET where the client application connects to SQL Server Express 2005 via the SQL native client and a connection string. The client then executes SQL over the connection on the database directly (no stored procedures). </p>
<p>How can I configure SQL Server (or windows) security in such a way that only my signed application binaries can connect to the database and nothing else from the client machines? (ie. not SQL Server Management Studio Express, hacked versions of my binaries or other malicious code) Would I need to embed cryptographic keys in my application? If so, how can these be protected from disassembly attacks?</p>
<p>The client or server machines can be placed on a corporate domain. Using SQL Server full edition instead of SQL server express is also an option. I would also like to still be able to run SSMSE locally on the server machine for upgrades and support work (the server will have physical doors-and-locks security to prevent access to it).</p>
<p>My application needs to read data from tables to calculate summary information. The summary information does not need to be secured but the detailed individual rows do. I think this requirement excludes any form of table based permissions combined with windows accounts or sql server user names and passwords.</p>
http://stackoverflow.com/questions/1917480/how-can-make-a-c-client-server-run-over-internet1How can make a C# Client - Server run over internet?Emanuel2009-12-16T20:33:37Z2009-12-16T20:44:09Z
<p>The current application that I'm working on is a Client - Server C# application and work very well on a network. Now I'm thinking if it can run over the internet. The question is how to do this? How can I start the Server on my computer and in what circumstances so that every Client over the internet to connect to? What software I need to do this?</p>
<p>Every idee/advice can be very useful.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1834629/where-to-perform-the-data-validation-for-a-desktop-application-on-the-database-o2Where to perform the data validation for a desktop application? On the database or in code?luvieere2009-12-02T17:48:24Z2009-12-15T07:11:25Z
<p>In a single-user desktop application that uses a database for storage, is it necessary to perform the data validation on the database, or is it ok to do it in code? What are the best practices, and if there are none, what are the advantages and disadvantages of each of the two possibilities?</p>
http://stackoverflow.com/questions/1901101/auditing-desktop-application-user-and-securing-access-to-a-desktop-application1Auditing desktop application user and securing access to a desktop applicationsurajs2009-12-14T14:01:32Z2009-12-14T14:53:12Z
<p>Question is about providing auditing (who used the application, when) and securing (who can launch the application - no fine grain control or data security) a desktop application developed you. </p>
<p>What would you prefer?</p>
<ol>
<li><p>Have an authentication mechanism built into your application</p>
<p>If using this option, we have to include user and password management, login screen, etc. within the application itself. </p></li>
<li><p>Use underlying OS for auditing and authenticating</p>
<p>Here the application needs to be configured after installation such that only users belonging to certain groups can execute the main program or edit the configuration file.</p></li>
</ol>
http://stackoverflow.com/questions/1849650/effect-on-clients-of-moving-from-net-framework-2-0-to-3-53Effect on clients of moving from .NET framework 2.0 to 3.5Robert Gowland2009-12-04T21:07:12Z2009-12-14T13:54:36Z
<p>We have a desktop application run on a few thousand client computers. We want to move from framework 2.0 to 3.5, but are concerned with the impact on clients. I understand that 3.0 and 3.5 are additions to the framework, and that they install service packs to 2.0; what I want to know specifically:</p>
<ol>
<li>When a client upgrades to the latest version (forced upgrade) and they only have framework 2.0 or 3.0, will Windows go and grab 3.5 invisibly in the background? </li>
<li>If not, can we make this part of the installer or is it only available via Windows Update? (<strong>Edit</strong>: We use MSI.)</li>
<li>If there is no way to make the process invisible to the user, is there a site that provides step-by-step instructions?</li>
<li>If a customer is on a box where they don't have rights to update the framework, is there anything that can be done to make the app still work correctly?</li>
</ol>
http://stackoverflow.com/questions/1888067/unable-to-authenticate-in-imap-server-through-windows-application0Unable to authenticate in imap server through windows applicationVaishu2009-12-11T13:28:48Z2009-12-13T19:13:25Z
<p>In C#,I'm using LumiSoft.Net.IMAP.Client library to connect to the imap server and I'm viewing my emails through that class library... I used it for more than 5 months. Now, when I tried to authenticate, it shows the following exception (even though the server is connected..) </p>
<p><em>Server returned:CAPABILITY IMAP4rev1 UNSELECT LITERAL+ IDLE NAMESPACE QUOTA ID XLIST CHILDREN X-GM-EXT-1 UIDPLUS COMPRESS=DEFLATE</em></p>
<p>I searched for this error. I came to know that the imap server protocol was changed so, this error occurs. Now, Wat I should do for that, whether to change my class library ?? Plz, help me... </p>
http://stackoverflow.com/questions/1884995/wysiwym-editor-for-desktop-net-winforms3WYSIWYM editor for desktop (.NET/WinForms)unknown (google)2009-12-11T00:06:30Z2009-12-11T00:24:21Z
<p>What can I use as WYSIWYM editor for desktop application (preferably .NET/WinForms)? I need functions as paragraphs, headings 1, 2, 3, (un)ordered lists, strong and no other formating (restrictive). Editor <a href="http://www.wymeditor.org/" rel="nofollow">wymeditor.org</a> is bad for me purpose because I can paste anything to it from clipboard. I prefer no webbrowser/javascript editor integration. Thanks.</p>
http://stackoverflow.com/questions/1881621/usability-and-accessibility-for-desktop-applications1Usability and Accessibility for Desktop ApplicationsMagicAndi2009-12-10T15:12:36Z2009-12-10T17:28:52Z
<p>Hi, </p>
<p>I am about to start developing a desktop application, and I am interested in making the application both usable and accessible for end users. Can anyone suggest online resources that offer guidance for developing usable desktop applications? In particular, I would be interested in learning about how to test desktop applications for usability. I am aware of <a href="http://www.w3.org/WAI/ER/tools/complete" rel="nofollow">several tools to validate HTML for accessibility</a>; how could you test a desktop application for accessibility?</p>
<p>Thanks, MagicAndi.</p>
http://stackoverflow.com/questions/1874672/desktop-applications-and-authentication-is-there-a-list-of-authentication-opti2Desktop applications and authentication... Is there a list of authentication options?Workshop Alex2009-12-09T15:31:04Z2009-12-09T15:46:17Z
<p>Several sites, including this one, are using OpenID to authenticate their users. And of course, OpenID is a good solution to manage user accounts, simply by linking them to their OpenID account.</p>
<p>But are there similar solutions that could be used for desktop applications? I know there's CardSpace, where you create a custom ID card to contain your identity and optionally protect it with a pincode. But are there more alternatives for authentications on a desktop system or on systems within a local intranet environment?</p>
<p>And yes, I can write my own system where I keep a list of usernames and (hashed) passwords and then build my own login system but I just hate to invent my own wheel, especially when I need to keep it secure.</p>
http://stackoverflow.com/questions/1099937/software-which-can-stream-any-flv-file0software which can stream any flv fileAnirudh Goel2009-07-08T18:55:07Z2009-12-08T15:06:50Z
<p>i know this is not programming related, but i have a scenario.</p>
<p>Each video streaming site has a flash video plugin and upon doing the view source i can find the link of the flv file it is streaming. Now i wanted to make an application or work on an existing one, where i can copy and paste the url of the flv file and it streams it for me. Some thing like an application which can stream flash videos for me.</p>
<p>If you think this question isn't worthy of this place can any one suggest me a better place for it to ask at.</p>
http://stackoverflow.com/questions/90530/what-is-your-session-management-strategy-for-nhibernate-in-desktop-applications4What is your session management strategy for NHibernate in desktop applications?MarioH2008-09-18T06:37:16Z2009-12-08T13:56:50Z
<p>I find it much more difficult to manage your session in a desktop application, because you cannot take advantage of such a clear bondary like HttpContext.
So how do you manage your session lifetime to take advantage of lazy loading but without having one session open for the entire application?</p>
http://stackoverflow.com/questions/1812767/desktop-windows-arrangement1desktop windows arrangementdole doug2009-11-28T15:23:28Z2009-12-02T10:18:59Z
<p>Hi there</p>
<p>I remember that Jeff was talking in a podcast about an utility which help him to send opened windows to certain zones of the screen, or resize them, just by using some keyboard combination. This seems to be verry useful, especially when you work on two monitors and you don't wana broke your work flow by talking the mouse, moving the window, coming back to keyboard.</p>
<p>Can you recommend me any of this type of applications?</p>
<p>ps: this might be a superuser.com question but this type of utility is more used on coders world, because they don't like to use mouse so much. That why I';m waiting an answer from you, from the programmers. </p>
http://stackoverflow.com/questions/1815745/is-it-possible-to-develop-a-desktop-application-which-integrates-with-the-faceboo2Is it possible to develop a desktop application which integrates with the FaceBook API?mekasperasky2009-11-29T15:04:57Z2009-11-30T06:42:46Z
<p>I would like to develop a desktop application to interact with the facebook API.</p>
<p>The user would be able to browse their profile and post details such as the music which they are playing or the applications which are being installed or being used.</p>
<p>Is this possible? </p>
<p>Are there any relevant tutorials?</p>
<p><img src="http://imgur.com/rOV7K.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1818018/client-server-in-vb-net-application0client server in vb.net applicationashok 2009-11-30T05:44:09Z2009-11-30T05:49:45Z
<p>Hello Guys,</p>
<p>I need to develop a vb.net payroll application, client and server are geographically dispersed, data is stored in server database. Can you please help me how to create application for client system and server system.</p>
http://stackoverflow.com/questions/1814371/ideas-for-a-windows-desktop-application1Ideas for a windows desktop application Mohit Deshpande2009-11-29T01:46:33Z2009-11-29T01:58:23Z
<p>I am starting to make my own apps and publishing them. The problem I face is that my apps are mainly for my purposes. What are some problems that you face while in windows? I need some desktop application ideas that are simple but helpful. </p>
http://stackoverflow.com/questions/1796057/net-desktop-app-how-do-store-change-application-settings-or-connection-strings1.net desktop app - how do store/change application settings or connection strings?stan g2009-11-25T10:35:01Z2009-11-25T11:05:32Z
<p>I need to give the user the ability to change application settings, in this case the location for the application database. I noticed that Application Settings are read only at run time, but this needs to be application-wide, not user-specific. How do I persist an application-wide connection string in windows.forms that is changeable at runtime?</p>
http://stackoverflow.com/questions/1502471/sending-text-to-different-email-server0Sending text to different email serverunknown (google)2009-10-01T07:48:09Z2009-11-25T07:00:03Z
<pre><code> SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
try
{
MailAddress fromAddress = new MailAddress("myname@gmail.com", "Lenin");
smtpClient.Host = "localhost";
//smtpClient.Host = "";
//smtpClient.Port = 25;
message.From = fromAddress;
message.To.Add("myname@gmail.com");
message.Subject = "Feedback";
//message.CC.Add("admin1@ gmail.com");
//message.CC.Add("admin2@ gmail.com");
// message.Bcc.Add(new MailAddress("admin3@ gmail.com"));
// message.Bcc.Add(new MailAddress("admin4@ gmail.com"));
message.IsBodyHtml = false;
message.Body = txtComments.Text;
smtpClient.Send(message);
MessageBox.Show("Email successfully sent.");
}
catch (Exception ex)
{
MessageBox.Show("Send Email Failed." + ex.Message);
}
</code></pre>
<p>please help to sent email to different server .. gmail.com/yahoo.com/inbox.com ..etc using windows application.
thanks for the help.</p>
http://stackoverflow.com/questions/1794468/what-makes-a-good-application0What makes a good application? [closed]Mohit Deshpande2009-11-25T03:41:25Z2009-11-25T03:48:25Z
<p>What are your opinions on a good application. <b>!NOT JUDGING THE CONTENT!</b> I just made an application that I am going to deploy soon and I wonder what finishing touches should put on it before it is deployed? I already have an about box and splash screen. My friend, who is a web developer, is making a webpage to host my application.</p>
http://stackoverflow.com/questions/1787399/adobe-air-vs-java-for-internet-cafe-time-manager-application1Adobe Air vs Java for Internet Cafe Time Manager Application.Pennf0lio2009-11-24T02:24:35Z2009-11-24T02:47:49Z
<p>Hi,</p>
<p>I'm planning to do a little project to expand my knowledge in programming. The application I'm trying to build is an Internet Cafe Manager (I Know there are a lot software out there that is similar to what I'm building.). I had chosen this project since it involves connecting to a network, displaying data and time, and has a client and server version of the application.</p>
<p>Now I wan't to get your opinion on what language and approach do you prefer for me to use. I am thinking I will be using Air or Flex since I have a some experience with flash and I am also a fan of good interfaces of AIR/Flex. Also I am thinking that there maybe some read AIR application I can integrate to rapid my development. Java is also in my list, Two of my programmer friend suggest that I will go for Java, But I don't have any background on java.</p>
<p>What Do you think? Please let me know your opinion.</p>
<p>Thank You!</p>
http://stackoverflow.com/questions/1781209/how-to-update-clients-which-access-a-windows-service-on-a-remote-server0How to update clients which access a windows service on a remote server?Sloane2009-11-23T05:11:53Z2009-11-23T05:20:04Z
<p>Update involves updating the binary and quite a few libraries. Please advise if this is possible by tweaking just the server side? Maybe, if I could just send a message with a link for the updates. Currently, There is no provision </p>
<p>It uses a tcp channel configuration to communicate.</p>
http://stackoverflow.com/questions/1771757/difference-b-w-connecting-to-sql-server-from-asp-net-and-desktop-application-in0Difference b/w connecting to SQL Server from ASP.net and Desktop application. In terms of CAL?Muhammad Kashif Nadeem2009-11-20T16:50:10Z2009-11-21T19:06:47Z
<p>-What is difference between connection to SQL Server from ASP.net and Desktop application?</p>
<ul>
<li><p>Why purchasing a Client Access License (CAL) for every device that accesses your server is not needed in web?</p></li>
<li><p>If I have a CAL for 10 devices and I need one more device to connect to SQL Server, can I do this using Web service?</p></li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/1758300/why-is-wpf-loosing-terrain-with-silverlight-4-coming1Why is WPF loosing terrain with Silverlight 4 coming? [closed]bambuska2009-11-18T19:05:55Z2009-11-21T14:39:29Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/1758070/what-does-wpf-still-have-to-offer-over-silverlight-4">What does WPF still have to offer over Silverlight 4?</a><br>
<a href="http://stackoverflow.com/questions/1758337/why-change-from-wpf-to-silverlight-4">Why change from WPF to Silverlight 4</a> </p>
</blockquote>
<p>I'm working on a WPF application. We considered using Silverlight instead of WPF, but decided we want a full blown desktop application with the whole unique desktop application feeling and advantages that gives. However, starting today there has been a lot of buzz out there about Silverlight 4 being announced at PDC09, and people stating that there aren't many arguments left to choose WPF over Silverlight (4). </p>
<p>So; what's the buzz about Silverlight 4? Why can Silverlight now be used instead of WPF? And when should WPF still be used? </p>
http://stackoverflow.com/questions/1723896/how-to-build-a-user-friendly-filter2How to Build a User Friendly FilterRoboto2009-11-12T17:20:03Z2009-11-19T16:01:53Z
<p>Our application displays tons of valuable information to our users in a table. We have a filtering capablity that is based on boolean/logic searches. Even after coaching, users still tend to not understand how to use filters because AND OR > >= etc are foreign to them. This filter is easy for programmers since it is easily translated into code. Any examples on how this can be made more user-friendly and less prone to error? </p>
http://stackoverflow.com/questions/1747540/which-technology-to-use-for-desktop-mediabar-container-application0which technology to use for desktop mediabar container application?Kavitha2009-11-17T09:16:18Z2009-11-17T09:16:18Z
<p>Which technology to use for desktop mediabar container application with the below features:</p>
<ol>
<li>Desktop - Media bar container application </li>
<li>Should work in Windows, MAC & Linux </li>
<li>Media bar will have Ads, Tickers & Other third party applications </li>
<li>Have to write Engine & GUI </li>
<li>Involves multi threading </li>
</ol>
http://stackoverflow.com/questions/1747265/mediabar-container-application-desktop-application-looking-for-suggestions-on0Mediabar Container application (Desktop application) - Looking for suggestions on the opt technologyKavitha2009-11-17T07:59:09Z2009-11-17T08:27:34Z
<p>I need to develop an application with the below features</p>
<ol>
<li>Desktop - Media bar container application</li>
<li>Should work in Windows, MAC & Linux</li>
<li>Media bar will have Ads, Tickers & Other third party applications</li>
<li>Have to write Engine & GUI</li>
<li>Involves multi threading</li>
</ol>
<p>Anyone could suggest the opt technology for developing the same would be appreciated.</p>
<p>We have planned to do it in QT. But few suggest Adobe AIR.</p>
http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss10Which common features of desktop applications do most web applications miss?splattne2008-12-16T10:51:11Z2009-11-10T07:28:33Z
<p>Stackoverflow User <a href="http://stackoverflow.com/users/17602/luke">Luke</a> wrote in <a href="http://stackoverflow.com/questions/138761/web-applications-desktop-applications#171113">this answer</a>:</p>
<blockquote>
<p>The boundaries between desktop and web
applications have really blurred.
Whilst once upon a time the nature of
developing for the web was totally
different to developing for the
desktop, nowadays you find the same
concepts [...] cropping up in both.</p>
</blockquote>
<p>Since I am continually looking to improve my existing web applications, I'd like to know <strong>which common features of "classic" desktop applications do most web application miss?</strong> </p>
<p>For example, most desktop apps <a href="http://stackoverflow.com/questions/250055/aspnet-warning-on-changed-data-closing-windows">prompt the user to save unsaved data leaving a page or closing a window</a> - a feature that many web applications miss. It could be that some feature aren't even necessary or are compensated in some other way. Maybe there are features which can't be implemented in (a classic) web application?</p>
http://stackoverflow.com/questions/1700606/java-based-usb-application1Java based usb applicationSushant Taneja2009-11-09T12:08:42Z2009-11-09T12:36:08Z
<p>Hello All,</p>
<p>I working on a Java based application which can be carried around by the user in a USB flash Drive. At the startup I want to check for existing JVMs on the machine the USB is plugged-in.</p>
<p>How can I achieve it ???</p>
http://stackoverflow.com/questions/1129383/non-trivial-desktop-apps-that-use-ruby3Non-trivial desktop apps that use Ruby?Mark A. Nicolosi2009-07-15T04:14:14Z2009-11-08T00:41:01Z
<p>I'm about to start a project developing a Ruby desktop application. I expect to to be fairly big and I want to learn techniques for dividing code among modules and other techniques for managing complexity. Most large apps I've looked at are Rails apps, but these aren't very helpful, because most of the work is done by Rails itself.</p>
<p>What source code would you recommend I take a look at? I'm not interested in libraries or Rails apps, because I get how they do things. CLI apps are OK, but I'm mostly interested in GUI apps (I'm using Gtk+, but I can learn just as much from apps using other GUI toolkits).</p>