application

Interesting Applications of Interfaces

Why are interfaces useful? Actually, I have a [small] idea of why interfaces are useful/necessary but... What are [interesting or realistic] applications of interfaces? ...

IDE for C application development that you admire most

I am looking for a good Integrated development environment for developing applictaions in C language for both windows and linux. IDE should have: good interface, easy file management, auto filling and any advanced options. Tell me which IDE you most admire for these tasks For general PC application development For embedded app...

Is it possible to display gridview or table instead of listbox which appears when autocomplete is enabled ?

I want to develop YUI autocomplete like autocomplete in my program in c#.net (VS2005). It a windows application. Is it possible to show search result in gridview or table when characters are entered in textbox? ...

embedding an application within a c# program with gtk#

Hi all, I'd like to embed a movie watching application like VLC into my C# program using the GTK# binding. Googling, I haven't seen many solutions that people have claimed to be easy or that work. Experiences? Help? Please! Thanks, jbu ...

Win32: Is it possible to build an app that houses other apps?

I was wondering, how would you go about writing an application that basically houses other applications inside of it? The reason I ask is that I'd love to build an app that 'conquers' my current explosion of open windows. I've used virtual window managers before and they're nice and all, but I could do so many things with an app like I...

How to set the $PATH as used by applications in os x

I'm using ant to build my project, and use the 'svnversion' executable to insert a version id into my sources for easy tracking of versions. Running this ant file from the command line works, I've set my $PATH in .profile to include the path to svnversion and it works fine. Now I try and run this same ant file from inside Eclipse and t...

Do theoretical computer science topics, such as regular vs non-regular languages, the pumping lemma, and grammars have "real world" development applications?

I'm familiar with the real world applications of finite automata and regular expressions, but topics such as these other ones are giving me more problems as I'm not seeing any real world applications. ...

How much of an applications "smarts" should reside in the database?

I've noticed a trend lately that people are moving more and more processing out of databases and in to applications. Some people are taking this to what seems to me to be ridiculous extremes. I've seen application designs that not only banned all use of stored procedures, but also banned any kind of constraints enforced at the databa...

C#: Setting CurrentCulture and CurrentUICulture of an application

Is there a way of setting culture for a whole application? All current threads and new threads? We have the name of the culture stored in a database, and when our application starts, we do CultureInfo ci = new CultureInfo(theCultureString); Thread.CurrentThread.CurrentCulture = ci; Thread.CurrentThread.CurrentUICulture = ci; But, of...

Products Similar to Progress AppServers

I work in Progress ABL and use what we call AppServers. Application Servers, processes that can talk to a Progress database and run business logic on the on a server and then send a response back to the client. These come in 4 modes but I'm most accustomed to state-reset which is an appserver that preserves state throughout the connecti...

Multi-user taggable text snippet app for report creation?

What's an easy way for our small workgroup to write status notes (length: a sentence to couple paragraphs) that can then be filtered by date range, sorted by project, and grouped by category to prepare monthly and annual group reports as editable documents? Would like to find (or slightly modify) an existing web or non-web app, but Saa...

how to get the memory used by a java process in java

Hi, I am running JBOSS server by deploying my own classes.Now i started doing some operations on my application.Now i would like to know the memory used by my application before and after performing operations.please support me in this regard ...

What application have you integrated with/developed on - that you would intentionally leave off your resume

You may well be an expert now working with "Application X"... However the hair pulling was so much that you'd never add it to your resume (even though it might sound impressive) for fear that a future employer might think your the ideal candidate to "migrate", "integrate" or otherwise work with "Application X". Feel free to elaborate o...

Releasing your web application into the wild

Let's say you've written the next social networking phenomenon (or any other web app). You've chosen Java, Tomcat, Apache and Oracle (or whatever setup that you like). You know want to get it out there on the web and have people sign up and start using it. What is the next step for something that you have written at home and want to...

Why can application developers do datasebase stuff but database developers try to stay clear of application stuff ?

In my experience, this has been a contentious issue between "backend" (database developer) and "frontend" guys (application developer, client and server side). There have been many heated pub discussions on this subject. I just want to know is it just people have different mindsets, or lazy to learn more and feel comfortable in what ...

Good examples of C applications?

Everyone knows that C is hard to program in, provides you with almost no useful abstractions, and is even dangerous. However, given enough design and discipline, it's possible to write clean, portable, modular code. What are some good examples of this? I'm looking for real world applications or other open source projects that are reasona...

How to open a zip file in a CD from silverlight control in Silverlight 2.0 Application?

We have a silverlight application from which we are trying to open a zip file which is placed in a CD.Can any one tell how to open .zip files from local path of CD from SilverLight control. Thanks & regards, Sheetal ...

.NET - Find external applications main thread ID.

I'm trying to find the handle of the main thread of an external application. The program I am trying to find the main thread of is multithreaded and it is important I always find the main thread. I know that at most there will be one copy of this program running. This is how I am doing it at the moment: Process[] someProcesses = Process...

Create an URI for an application

Hey. I want to have an URI for my app. For example something like this: app name:GetIt uri: getit:// Is there an easy way to create one? ...

How to detect if application is memory bound ?

How to detect if an application is memory bound ? Is there some kind of pattern or a tool ? Mostly for C++ and C# applications... I don't think that there is such a tool in Microsoft Visual Studio. ...