resources

Magento custom currency saving?

I'm trying to get some currency exchange rates in a seperate php file in magento and saving them: <?php // Initiate application $mageFilename = 'app/Mage.php'; require_once $mageFilename; Mage::app(); // Code to create my $rates array /** CODE **/ foreach ($rates as $currencyCode => $currencyRates) { Mage::getModel('directory/c...

problem Accessing .NET DLL resources with res editor

Hello guys, Simple question : why can't I see any resource from my EXE ? compiled in c#, VS 2005, source files contain many .resx files... but so far I can't access them with any resource editor Any hint ? ...

Resource ID question

Hi, may I know is it possible I use the resource id but I didnt set the Content View in the activity? for example: abc.xml have one TextView id = "R.id.Text". Can I use the use TextView name = (TextView)findViewById(R.id.Text); method in the activity which was setContentView(R.layout.def);? P/S: sorry about my bad english, hope you guy...

Where to find good resources to learn XAML?

I'm looking for (online) resources to learn/lookup XAML constructs. Can you recommend any good blogs, tutorials, references for XAML? ...

Viewing available message strings (from mc.exe) in a 3rd party DLL

Is there a way to view all the messages (ie messages created for FormatMessage by the mc.exe message compiler) available within a DLL? It appears they are added as a single resource as type 11. Unfortunately that resource is binary. ...

Android - Updating TextView String through AIDL Service

Hello, I have an app that uses a TabHost. Several of the Tabs share a common HUD. I am using a service to periodically update those values by calling an AIDL function when ready. However, since several of the Tabs are using the same HUD I would like to abstract that part out. I thought about having the HUD.xml use a String resource as...

C# Write Resource from Download

Alright, so I have been wondering how to do this for a while. Basically, what I want to do is instead of downloading a file directly to the hard drive can I make my application "download it to resources" I need to Download the file or bytes, and write it to resources. Using a method like this to download byte[] example; ...

Translate Resources

Hi. How Can i translate .Net resources to another language? i am looking for a software that able me to translate .NET resource from a language to another language. For example Persian to English. i saw the software that used Google translate API for translating. but it just translated from English to another... thanks. Please Introduce ...

Automatically embed multiple icons in a .NET Executable

I basically have the same issue as this question: Embed multiple icons in WPF EXE My .NET 2.0 WinForms application currently has this when you click "Change Icon" in explorer: What I would like to see, and with some hacking about as suggested by the above article I get this: However the process of getting there all of the version ...

Changing ResourceDictionary doesn't visably affect Window in WPF

I have a simple WPF application I'm using for experimenting. I have two themes defined in seperate xaml files, changing the xaml to point to them worked fine. By the way, in the xaml I'm using a straight ResourceDictionary element, not a ResourceDictionary.MergedDictionaries one. I want to let the user select which theme to use, so I...

Change System Culture.

Hi. How can i change system culture that affects all pages(programmatically)? i saw this thread. but i want to change culture in my Login page with this codes. protected void btnChangeLanguage(object sender, EventArgs e) { Thread.CurrentThread.CurrentCulture = new CultureInfo("es"); Thread.CurrentThread.CurrentUICulture = new C...

Problem with changing culture

Hi. I did Override InitializeCulture in base page. Protected Overrides Sub InitializeCulture() Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("Fa-IR") Thread.CurrentThread.CurrentUICulture = New CultureInfo("Fa-IR") MyBase.InitializeCulture() End Sub but still my culture is english united state . a...

Resource Compiler question (initially posed as "UAC together with Subst don't work well together")

I am trying to run VS2010 with UAC on. ResourceCompiler complains that it cannot find a file located on a subst'ed drive. Here's a fusion log. *** Assembly Binder Log Entry (8/16/2010 @ 1:54:39 PM) *** The operation failed. Bind result: hr = 0x80070002. The system cannot find the file specified. Assembly manager loaded from: C:\Wind...

Load an embedded animated Cursor from the Resource

I have an animated Cursor file (*.ani) in the resources and want to show it as a cursor in my application. How can I load it from the resources? I looked up in the Internet, but there are only ways to show it when u have a real file and if it is not embedded in the resources. ...

How to load StringTemplateGroups from the WEB-INF directory of a web archive

Hello everybody, this question is somewhat related to this question: StackOverflow: Howto load a resource from WEB-INF directory of a web archive I want to use StringTemplate and want to load my templates via a StringTemplateGroup. Until know I use the method shown in the related question to get single files from the WEB-INF folder, b...

Edit embedded resource (Visual Studio)

This should be simple, but Visual Studio stubbornly refuses to cooperate: I have a C# project (Visual Studio 2005) with bitmaps as embedded resources, BUT I CAN'T GET AT THEM! I've been struggling with the GUI and MSDN "help", and can't get to the embedded bitmaps to edit them. How is this done? ...

Override method for default RESTFUL Routes in Rails

Given a line something like below in routes.rb map.resources :users The routes generated might be something like this: users GET /users(.:format) {:controller=>"users", :action=>"index"} POST /users(.:format) {:controller=>"users", :action=>"create"} new_user GET /users/new(.:format) ...

Android: Optimize for high-dpi devices only but still support (small- and) medium-dpi screens

I'm building a game with graphic assets in hdpi resolutions (hence I put the files in drawable-hdpi directory). I don't want to have a corresponding mdpi resolution of the images, and I will code everything in 240-dpi based pixel coordinates. Is it possible to still allow mdpi and ldpi devices to run the app, by automatically scaling th...

Problem running heavy application

I developed an "heavy" application (700 Mb !). With an "apk installer" application, i can install it on the Nexus One SD card (Froyo "installLocation" option). My application is heavy because of the videos it contains (located in /raw directory). The problem I have, is that it crashes when launched, with this error : 08-18 11:22:16.179:...

Rails 2.3 Namespace and Nested Shallow Resources Prefix Issue

I've added two namespaces into my routes that split the public and admin areas respectively. The idea is that they share models but the views and controllers are different for each namespace. My admin namespace is /admin and my public namespace is just / So... map.namespace :admin, :path_prefix => "/admin", :name_prefix => "admin_" do...