I found a guide on how to add new attributes to users, it explains that for this operation I must modify some files in the app / code / core / Mage directory (the directory that contains Magento’s modules).
But if i make some changes in that folder will this affect future upgrades?
Will an upgrade will delete my changes?
Should I limit the changes only to my modules to not have problems with updates?
In my Blackberry application, I have a email address I want the user to be able to send an email to. I would like to have the built in Email Application run the compose screen with the "to" field filled in with the email address I supply, similar to how desktop mail clients respond to a "mailto" link. Does the API have a function for this?
What if I think, that I found a bug in an open-source-app? What steps can I do, to provide as much helpful information for the programmers, as possible? And how I report best, to avoid to be annoying for the programmers?
How to produce an iphone app which calculates the battery status? Is there a particular API that i need to use?
Has anyone got a link to any online tutorials?
Hi. I'm absolutely in love with the way GWT does rpc. Is there anything similar for JSE you have experience with that:
a) is not spring
b) doesn't require a jee/servlet container to run the server side
c) is not rmi that comes with jse
TIA.
I need to code a simple form application and I want to make it easy to deploy (without installing libraries or dependencies), I don't want to use visual studio cpp or csharp because clr apps compile with .net frameworks and I have no much experience with mfc and dialogs.
So I was wondering which libraries does a simple delphi vcl forms app (those using TForm) use, because I've never had to install anything to run simple delphi apps.
I have an issue with my application when windows shuts down - my app isn't exiting nicely, resulting in the End Task window being displayed. How can I use the debugger to see what's going on? e.g. is there a way to send the windows shutdown message(s) to my application so it thinks windows is shutting down, so i can see exactly how it behaves?
Hi there,
Is there a way to change the name that displays on the AppStore, rather than the name associated with the credit card/apple ID associated with the developer programme?
For example, if my name on my credit card was foo, and the name on the apple ID was foo, but I actually want the name displayed on the AppStore (i.e. next to my App's name and details) to be bar.
BTW: The programme is individual.
Many thanks,
Jack
Guys,
I've got to build a GUI to be run on Desktops in Java. I'm decently new to Java, and I"m trying to understand what Maven is best suited for. Is this the type of application that would be well suited for Maven? Could someone just give me a 100 word explanation of what Maven basically is?
Thanks,
Joe
I have an app that I want to be launchable either explicitly when tapped or when a parameterized URL is clicked on on a webpage in Safari running on iPad or iPhone.
Can someone sketch the approach for me and/or point me to the relevant docs? Thanks so much.
Cheers,
Doug
Hello,
I am using the .NET 4.0 client profile for my app and I run a dual core with 4 GB Ram and a fast hard disk.
nothing big is done at the start just showing a generic List in a wpf listview.
How can I make the cold start faster of my assembly ?
The desktop app should start the web server on launch and should shut it down on close.
Assuming that the desktop is the only client allowed to connect to the web server, what is the best way to write this?
Hi
Winforms - why does a "Show()" after a system tray double click end up in my app minimized?
How do I ensure Inthe notifyicon double click event that my hidden main form comes back visible as normal, not minimized (nor maximised for that matter too)
J2SE Client Server App: Client calls RMI message. Server handles RMI method and returns, but Client never receives it.
Any ideas how this could happen? Our attempted solution is to set client read timeouts and come up with a framework for resending requests or otherwise handling those failures gracefully.
But really, I'd like to know any root causes for how this might happen rather than addressing the symptoms.
I know a site can have many apps but all the examples I see have the site called "mysite". I figured the site would be the name of your site, like StackOverflow for example.
Would you do that and then have apps like "authentication", "questions", and "search"? Or would you really just have a site called mysite with one app called StackOverflow?
I have installed a couple of free apps on my Android phone and then later "upgraded" to the paid full version. My first instincts for doing the same would be to create two apps with the same package name so that installing one overwrites the other, but apps in the Market must be unique by package name.
What are some patterns and best practices for sharing code and resources for free and paid versions of the same app and any naming conventions or project structures that work for this scenario as well?
I am an indian resident. Developers in India cant sell android apps on android market. Can anybody enlighten me with any other legal means through which i can sell my apps on android market.
I have my cousin who is an US citizen, residing in california. Is it possible to sell my app using her as my proxy. Please do ask me if i was not clear enough.
Basically I want to build a web app that will try windows authentication and if authentication fails then will provide the user with a login form ?
I do not want to have different web apps for different authentication modes.
Is this possible ? Did I missed some points about this ?
I am looking to add a browse button to a visual studio app something simular to the the dialog box in the 'fileupload' tool. I am looking to be able to graphically select any file from my computer or a computer across a network. Can anyone help. Thanks in advance.
Looking in Process Explorer it uses; Virtual Size: 550,000k , Working Set: 28000k
Why does my simple hello world console app use so much memory?
I take it the difference between the Working Set and Virtual Size means that difference will be paged to disk?
/I am running 64 bit XP.
Thanks
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello world");
Console.ReadLine();
}
}
I use AVAudioPlayer to play an mp3 file to a user within my iPhone app. This all works fine and dandy. I even update a PLAY/PAUSED button depending on the state of the player. But it would be nice to know how much longer the song will play.
So How do I show the time remaining?
I am developing a game with Unity 3D and want to use custom code to get strings in the various languages I will be supporting. I've read articles about using the Android "res/values-xx/" directories (such as this page: http://developer.android.com/training/basics/supporting-devices/languages.html). If I do not store my translated strings in this way is there a downside? My main concern is whether the Google Play store may not know what languages my app is localized for.
With my current code base I'd like to build two or more different versions of my Android app (free, premium, ...). For the iPhone (XCode) I can definte different targets. Is there something similar implemented in Eclipse?