applications

Media Playlist

How to create a dynamic playlist in C# .NET for playing audio files? ...

Developer-centric iPhone applications

As a developer who has an iPhone, I am looking for applications that are developer-centric. What iPhone applications do you find useful as a developer? ...

Can you share the session variables between two .net 2.0+ applications?

I was told this works, but... I guess I'm just not getting this, it seems there's a hidden step I may be missing, can anyone correct this or point out my mistake? Thanks. I have a blank solution: - inside is two .net 2.0 web applications 1) webapp1 2) webapp2 I want them to share the same session data. My page setups: Application 1:...

Keeping applications and infrastructure connected

I work in an IT department that is divided into two groups. One group develops and manages applications, the other manages the company's infrastructure and servers. One of the problems we face is a break down in communication. I work for the application group and one of the problems I have is not being notified when a server is taken ...

Windows event for new added application into memory

Hi. Is there any way to get some Windows event when new application(s) gets added into memory/taskbar? I can get running applications by iterating through Process.GetProcesses() (although, explorer processes will be excluded for some reason), but that means that I have to check for new processes every few seconds which isn't very good. ...

Databases from scratch

How do I create a database management system from scratch? Are there any books, sites and tutorials with great quality? With great quality I mean that it should be simple to use and straight forward in explaining the concepts. Here are examples of caliber quality resources that I'm looking for: If I were to create an operating syste...

How can I enumerate/list all installed applications in Windows XP?

When I say "installed application", I basically mean any application visible in [Control Panel]->[Add/Remove Programs]. I would prefer to do it in Python, but C or C++ is also fine. ...

Login logistics

I'm writing a suite of applications that all require login to a server. It's come together quite nicely, but I've run into a logistic snag. The nature of the applications require that they be closed and launched again later with some frequency. It is very annoying to have to login every time one of the applications needs to launch. I'm ...

Applications of Python

Hi, What are some applications for Python that relative amateur programmers can get into? For example, Ruby has Rails for building web applications. What are some cool applications of Python? Thanks. ...

What is the least resource intense data structure to distribute with a Python Application

I am building an application to distribute to fellow academics. The application will take three parameters that the user submits and output a list of dates and codes related to those events. I have been building this using a dictionary and intended to build the application so that the dictionary loaded from a pickle file when the appli...

How to create a uninstall command for a Windows-based application in the Application Folder.

Hi, Can anyone explain to me how to create a uninstall command for a Windows-based application in the Application Folder when creating a new setup project in visual studio 2008. I've found info on the net but nothing helping me so far. If you could supply me with links or instructions it would be great. Thanks. ...

Real-life C application to show at introductory course

I am holding a course on the C programming language, and I want to show the students some real-life useful applications of C, to catch their interest. Usually all they see are boring programs, with no practical utility, so I am wondering what sort of useful applications can be presented, maybe something that they can use on their own (ho...

Getting Session is not a memeber of My while converting a web site to web application

Currently I have a web site project having refernces to many other projects. I am converting the website to Web Application. I am keep getting Session is not a member of My, Cache is not a member of My, Logon is not a member of My. Any one has any idea how to get rid of these errors ...

Sharing global variables across multiple servers/applications.

I am looking to set up a central point of control for settings that exist across several web servers, server applications, and possibly even internal desktop tools. The current situation is that I have a settings file on each webserver or within each application, with Global Variables defined: Admin Email, Where to store uploaded files,...

Communication between Intranet Applications

I have two separate web applications, both in the same intranet. One of the two is a legacy application, strictly a static site, being served via Apache. The other application is new, one that I am currently building, and will be a dynamic site, with a database. In the first application I want to have a few form pages, that collect in...

Benefits of using XML Accelerators

What are XML Accelerators and how do they work? Is anyone using them in a production environment for systems that performs heavy XML processing? If yes, then how have you benefited in using them? ...

WPF application is crashing when we change the number format in regional settings.

In my WPF application where I am using one user control containing some radio buttons and style & color settings from one resource.xaml. When I change the Number format in Regional Settings (Changing decimal seperator as "," and digit seperator as "." ) the application crashes. But if I launch the application by Enabling the Visual Studi...

What are good/bad ways of providing help for an application..?

I'm in the process of developling various applications for whom the end users are both engineers and salesman. Some of the operations and options may not be immediately obvious to all users. All applications are delivered with a PDF and paper manual - but of course nobody reads them! I would like to improve the usability of the applicat...

looking for an e-book about Architecting Applications using .NET

Hi all Sorry, I really don't know that whether I can ask my request here or not. but actually, I need to read a book named: "Microsoft® .NET: Architecting Applications for the Enterprise" I googled internet but I didn't find.... Do you have it's e-book? ...

Modeling entities for specific applications - Entity Framework

Hi, I have 2 applications: Manager UI - Which should be able to create a user with all its fields (username, email, age etc.) and display them. Core component - which only need the UserId and Username field, and need to be very performant. It also shouldn't be able to write to the database. It seems I need 2 different models, one for...