application

Can Lua be used for application development?

With intermediate knowledge of VB6, recently people have been suggesting to "upgrade" to a new language. I'm thinking about Lua - it's easy, simple and speedy. But there doesn't seem to be any infomation about creating applications similar to K3b, uTorrent, CCleaner and mIRC. ...

Composite application guidance help pls

Im tring to make a composite application (i am still learning how it all works) Lets say there are two regions with a view in each that interact with each other via drag and drop, view A contains a list of tasks that view b (which contains a list of People) doesnt really know about. When I select some tasks in the list from view a and...

Objective-C class time delay?

I was wondering if anyone knows of a class in objective-C that stops/delays the application at a specified amount of time during runtime? I've already looked at the Time Manager and NSTimer and don't see how I could possibly put a delay in there. I've never used these two classes before though, so maybe someone else has and could give me...

Mylyn like App for my Desktop

Hi there, so i am a big Fan of Mylyn. I like to manage all my Tickets/Tasks etc in Trac. I am looking forward to get an app like Mylyn for my regular Desktop outside Eclipse. Its not really programming related...but managing Tasks is one challenge we are facing every Day. Any suggestions? Edit: At the moment i am starting my own solu...

Application verify license enforement?

If I enforce a licensing restriction on my application,say the first time the application runs,then should my application check the restrictions (could be a encrypted license file) each time? How do you design this part? What is the best way? Basically I would like someway to save CPU cycles somehow(encryption means decryption blah blah ...

How important is size in an application?

When creating applications (Java, run on a normal computer). How important is program size for users? For example, would it be necessary to replace .png's with .jpg's, convert .wav's to .midi's, or strip down libraries to save space, or do users generally not care if my program is 5mb when it could be 50kb if stripped down? Thanks. ...

win-based application (c#) needs a class for handling DB Connection

Hi... I think having a class (clsConnection) which we can take advantage of it in order to execute every SQL queryies like select, insert, update, delete, .... is pretty good. but how complete it could be? How? ...

Using web hit counter to track application usage, recommendations wanted

I have an internal tool written in java. It would be useful to get a little feedback on how much it is used by colleagues. A simple solution would be to have the application display an image which it fetches from a web hit counter like application and just look at how often the image is accessed. So what I am looking for: a stand-alone ...

Problem with localizations in web application

I'm working on a web application using C# that has to be localized. On my login.aspx page it does not seam to find the login.aspx.resx file. I have use Tools->Generate Local Resource for the page and every thing was working fine. But now for some reason it is not able to load the resource file. In my code it calls GetLocalResourceObject...

In a large Application is there any way to distinguish user-defined classes with built-in classes?

Hi. In a large Application is there any way to distinguish user-defined classes with built-in classes without checking ? ...

How can i make a website as a iphone native application?

Hey all.. I'm planning to convert my website into an iphone native application. I'm stuck up at the point how to achieve this. As i am new to iphone development, I'm not getting any idea on how to develop this. Initially, i have developed the first screen i.e., LOGIN screen of my application. My server is built in JAVA. I'm able to se...

Framework for making a web-application who's content is managed

Is there a system (such as a development framework, Wiki or CMS) that enables you to build rich web applications, but where you can make all the text of the application content-managed? For example, there might be screens that display charts and statistics, and a data entry form, and a form for modifying properties of something. The un...

How to rewind application state?

I'm developing a Java desktop flight simulation. I need to record all the pilot actions as they occur in the cockpit, such as throttle controls, steering, weapon deployment, etc. so that I can view these events at a later time (or stream them live). I'd like to add a visual replay feature on the playback of the events so I can visually ...

What happens to sessions during deployments?

When deploying a web project written in ASP.Net, what happens to user sessions? Do users currently logged in lose their session data? And moreover, does the Web Application Project in Visual Studio differ from the Web Site Project in this respect? ...

How Do I Change What the UIPickerView Says?

I am developing an app that uses the PickerView, but I can't figure out how to change what it says. Currently it just says "Cupertino, Sunnyvale, etc" and it won't go up or down. And when I do the simulator, it just shows up as a blue rectangle. ...

How can you have a Tab Bar Controller and a Table View?

I am trying to make it so that on one of the tabs there is a table view Any ideas? Thanks ...

What does "error: redefinition" mean? and how do i fix it?

I got this error twice. it says "error: redefinition of '-[SampleTableViewController tableView:cellForRowAtIndexPath:]'" ...

Loose coupling in Mashup API(s)

We are planning to integrate our JEE application to use certain API(s) of products exposed in ProgrammableWeb. Usually the mashup API(s) either expose a user code or an identifier against which all CRUD operations are done. How do you enable the mapping between the local user identifier and the user identifier exposed by those API(s). Wo...

Find the open forms in c# windows application

I am using this function to close existing form and open a new form. If there is no exixting form, it throws error. Error : Target : System.Object MarshaledInvoke(System.Windows.Forms.Control, System.Delegate, System.Object[], Boolean) Message : Invoke or BeginInvoke cannot be called on a control until the window handle has been c...

Application.DoEvents, when it's necessary and when it's not?

Hi what is the necessity of using Application.DoEvents and when we should use it? ...