application

upgrading iPhone application via iTunes

Hi, I want to upload a new beta version of my iPhone application for beta testers group. Users save their data in the Documents folder. What do i need to do in order for users to upgrade their application without loosing their data? Thanks in advance, Nava ...

How can I Monitor the Performance of Individual Apps on Windows?

My XP machine has become terribly slow and I want to identify the application at fault. It seems to be related to disk access rather than processor hogging. I can look at the task manager to get a good idea but it's not ideal. I was wondering if there was some application that can monitor all aspects of processes effectively. Is Proc...

Use Django Framework with Website and Stand-alone App

Hey, I'm planning on writing a web crawler and a web-based front end for it (or, at least, the information it finds). I was wondering if it's possible to use the Django framework to let the web crawler use the same MySQL backend as the website (without making the web crawler a "website" in it's self). Cheers, Pete ...

Application Hosting

Hello, There are some applications on my computer (Win XP Home) that are native WIN32 applications that I would like to host from an application built in .NET that could offer password protection before running sed application. Is there a nice solution to my problem? (over 2 years of C#.NET experience) ...

'TimeToLiveTimeout' property for SJAS JDBC Connection pool

My application runs on Sun Java Application server v8.1 and it connects to an 0racle(10g) DB using the application server's jdbc connection pool. The datasource class name used in the pool is 'oracle.jdbc.pool.OracleDataSource'. I have enabled connection caching and I want to use the 'TimeToLiveTimeout' property for this DataSource.'Tim...

How to make a skinnable application?

Specifically, I want to know how the music player Muziic is skinnable. Is it just image boxes in a panel that change depending on what the XML in the skin says? And how would I do something like this in C# or C++? ...

IIS 6.0 application pool stop issue

Hello everyone, In my IIS log, I found warning level event ID 1013, which says the stop time exceeds expected stop time for worker process of a specific web application. My question is, how could I know or track from what reason IIS worker process stops? Does this warning level event ID means worker process application pool is stopped ...

Application pool recycle after "Fixed number of requests"

Hello everyone, I am using IIS 6.0 on Windows Server 2003. I want to learn what means recycle after "Fixed number of requests" in application pool setting? My current confusion is, suppose I set this number to 100, and the 99th person connects to my web site, than the 100th person comes and the 100th person will trigger application pool...

Storing Videos in Web Application or Otherwise

Hello All, I'm looking to let users of my web application upload videos to my site, however i believe i will be constrained by how much storage i will actually have. Is there any alternatives such as being able to store videos on Youtube via the api and recall them when needed. Any help for the design of how videos should be stored woul...

How can you detect if your MFC application is not responding?

How can you detect if your MFC application is not responding? ...

How do you disable closing an application when it is not responding?

How do you disable closing an application when it is not responding and just wait till it recovers back? ...

Conditional dialogs in Setup application in VS2008

I have added two dialogs to the install user interface. The first dialog prompts the user for the type of install (two radio buttons). Based on the answer it drives what components get installed (all working well), but I also want it to conditionally display the 2nd dialog based on the answer. I would have thought there would be a CO...

Can an SQL Server application role issue DBCC DBREINDEX?

I have an application that uses a SQL Server application role on the database side. During one of the application’s processes, I need it to reindex a table, however, I run into problems because apparently the application role doesn’t have permissions to run the DBCC DBREINDEX command. Do you know of a way to enable that? Here’s the erro...

What technologies are suitable for building Queue Management Systems?

I figure out some technologies that can help me to build Queue Management Systems. Each terminal will send multicast to others. All the terminals get messaging in sync in real time. I'm not sure that do I really need a database server as backend or not? ...

How do I bind a macro to a key in Word 2007 without recording a new macro?

As the title so eloquently put it, I need to know how (or if it's even possible) to bind a macro to a key in Microsoft Word 2007 without recording a new macro each time. I find myself writing new macros directly in code and then not being able to bind them to a key. Or I might just want to rebind a macro to another key. ...

Offline web application

I’m thinking about building an offline-enabled web application. The architecture I’m considering is as follows: Web server (remote) <--> Web server/cache (local) <--> Browser/Prism The advantages I envision for this model are: Deployment is web-based, with all the advantages of this approach Offline-enabled UI (html/js) synchronizat...

Flex : Dimensions of an application

<?xml version="1.0" encoding="utf-8"?> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init1()" width="100%"> <mx:Script> <![CDATA[ import mx.controls.Alert; public function init1():void { Alert.show(this.width.toString()); } ]]> </mx...

Cocoa: Hide one application

Is it possible to hide one specific application using cocoa? I know you can hide all other applications using the following code [[NSWorkspace sharedWorkspace] performSelectorOnMainThread:@selector(hideOtherApplications) withObject:NULL waitUntilDone:NO]; But is it possible to hide just one specific application say Safari for example...

Getting 'Public Sub New()' has multiple definitions with identical signatures after converting a website to WAP

I have converted a web site to a web application and after conversion I am getting loads of errors saying almost(50) 1. Getting 'Public Sub New()' has multiple definitions with identical signatures 2. 'UpdateProgress1' is already declared as 'Protected Dim WithEvents UpdateProgress1 As System.Web.UI.UpdateProgress' in this class. CAn ...

Stop launchd task When App is Opened

Hi Everyone: I'm wondering if there is some way I can stop a launchd task when a application is open, and then start it again when the application is closed. My launchd task is set to be notified when a file is changed and then do some UNIX code with the file. However, my application makes a lot of changes to this file so I can't have...