I want to design an app that launches other sub-apps.
Main View will contain 4 buttons. Clicking on each button respectively will launch the other sub-apps.
Each sub-app will have a UITabBarController which has its own different views. At any point I want the user to be able to go back to the Main View from any of the sub-apps.
I am not sure how to design this in IB.
Hello,
I'm thinking of writing an app for the iphone. But I'm confused in regards to the objective-c language. Am I correct in saying that I have to do my own memory management? Is Objective-C a managed language such as C# and/or Java?
Thank you!
i wonder if the new bundle component in symfony 2.0 will be available as a stand-alone component?
cause the other was very useful and i think the bundle component will be awesome.
if it's released as a component i dont have to simulate it with my own solution.
thanks!
CodeIgniter claims do sanitize POST variables. I'm also using DataMapper which I believe also does it's own thing. I would like to double check to make sure it's doing what it's supposed to be doing. How can I do this?
Hello everybody.
My current career is in software testing, but I feel that I am wasting my time, maybe because I don't know the future path of this career, and where I will arrive in the future if I continue in this career. And I don't know how can I develop myself in this career. Can I have my own job in this field? Please give me good suggestions and opinion.
Many thanks.
Is there a way to make the compiler create the default constructors even if I provide an explicit constructor of my own?
As some times I find them very useful and find it a waste of time to write the copy constructor, especially for large classes.
Hello,
I have a solution with many components and each component has its own version file (AssemblyInfo.cs). Currently each file as the standard structure:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
I would like to use the file version as the component version and keep that independent but I would like to have the "Product Version" be the same for all the components.
I would like to do that by having a file at the solution level that is used by all the projects to get that version embedded.
Any suggestions
Thanks
Tony
I am pulling a long timestamp from a database, but want to present it as a Date using Tags only, no embedded java in the JSP. I've created my own tag to do this because I was unable to get the parseDate and formatDate tags to work, but that's not to say they don't work.
Any advice?
Thanks.
The Boost.Test documentation and examples don't really seem to contain any non-trivial examples and so far the two tutorials I've found here and here while helpful are both fairly basic.
I would like to have a master test suite for the entire project, while maintaining per module suites of unit tests and fixtures that can be run independently. I'll also be using a mock server to test various networking edge cases.
I'm on Ubuntu 8.04, but I'll take any example Linux or Windows since I'm writing my own makefiles anyways.
Hi,
I've seen so much C# code in my time as a developer that attempt to help the GC along by setting variables to null or calling Dispose() on classes (DataSet for example) within thier own classes Dispose() method that
I've been wondering if there's any need to implement it in a managed environment.
Is this code a waste of time in its design pattern?
class MyClass : IDisposable {
#region IDisposable Members
public void Dispose() {
otherVariable = null;
if (dataSet != null)
dataSet.Dispose();
}
#endregion
}
Is it possble to Modify the Window's Login screen and add our own buttons/links? For example is it possible to do something like this?
The above screen has a link and when clicked it should start a win forms application?
I have a
periodically_call_remote
that I want to fire right away (as if the code was present without the setTimeout) as well as call periodically. Is there a nice way to do this use PCR, or do I have to roll my own?
I'm using jQuery/jRails if it helps.
Currently there exists a need to create an application that will serve 5 different customers each requiring their own specific URL and content repository. My question is when designing this application what should my considerations be for protecting the content of the individual customers while meeting the requirements of the unique URL. The system will be sitting on Windows with a postgres database and java as the implementation language.
I know that it is possible to forward lock an application that is being installed via the marketplace. Is it possible to forward lock an application distributed by my own webserver?
I am not a programmer, but a designer. I created a static web site in Dreamweaver (CS4) and my client would like to be able to update a news page on his own. I have looked in to several CMS options and haven't found one that seems to fit my needs. Mainly, simple to set up, possible to set up and, preferrably, free to set up. Any suggestions? I'm all ears.
Thanks
Hi,
I am looking for a C++ library for image processing. I need the library to threshold a PPM photo (color photo). Should I write my own code? what do you guys think? Thanks in advance.
The iPhone Mail application has an edit button in the navigation bar. Tapping that button shows a delete button in the toolbar and shows checkbox controls in the table cells. Tapping one or more checkboxes then tapping the delete button causes the checked messages to be deleted.
How can I add similar functionality to my own code?
Here's a screenshot of the effect I'm looking for:
Hello, how can I insert my own class objects into ptr_map from boost. The objects are templated so I can't use some static typename in the map. So I did:
ptr_map<string, any> someMap;
My class inherits the boost::noncopyable.
someMap.insert("Test", new MyClass());
The error is: error: no matching function for call to ‘boost::ptr_map.
I ran ldd command on an executable created by Open MPI. It shows a reference to libpthread.so
Using LD_PRELOAD variable I created my own implementation of pthread_create, but from the it output it seems that MPI implementation is not calling pthread_create as I had expected.
Why does ldd show pthread so file in output if it is not being used?
does Open MPI not use a separate MPI thread for every node to implement the functionality?
I've got my app approved a while ago and used the * provisioning profile so I created somehting like:
com.mydomain.MyApp
but now I have the necessity of adding push notifications and I can't due I am using the * provisioning profile and it needs to have its own app ID and profile.
How should I proceed in order to achieve an app update without breaking anything
My HP laptop uses Windows Update to deploy updates for some of HP's integrated software. How'd they do that? What API will allow you to integrate with Windows Update to deploy your own patches?
Hi all,
I have some code generated by Moyea web player free trial version. Because it's a free version, the link goes to their website. How can i change the link to my own preferred location with the free trial version?
Hi,
I want to detect if a window form is open and if it is then I would like to bring it in front rather than opening it again.
I know I need a form collection for this but I want to know if there is a built in form collection that holds all the forms in VB.NET or I need to implement my own.
Thank you.