resources

Online Java Book

Is there an online java book like Dive into Python for learning Python? Other resources online besides the standard Java Documentation (which is awesome but almost too technical) thx ...

Good resources for windows shell extension programming?

Duplicate of: Tutorial for Windows Shell Extensions I'm learning about programming windows shell extensions, and have been having difficulty finding good resources. What are the essential books, tutorials, reference sites, etc., for delving into shell extensions? ...

how to get file from resources as a stream? (.net)

I've got few files in resources (xsd files) that i use for validating received xml messages. The resource file i use is named AppResources.resx and it contains a file called clientModels.xsd. When i try to use the file like this: AppResources.clientModels, i get a string with the file's content. i would like to get a stream instead. i do...

Good programming website like Stack Overflow?

What other good collaborative programming/software development/engineering websites do you know of? I'm not looking for language or platform specific websites. Nor am I looking for something similar to the format of Stack Overflow. My main criteria is that the community is knowledgeable, helpful active friendly I know the question i...

C# Satellite Assemblies? Do I need to link default culture resource

We would like to employ satellite assemblies to contain various locale dependent resource files. Question is ... do we need to link the default culture? We have a separate project which will contain all of our different culture resource files. As is shown below, we have the project with two resource files inside of it. ProjRES Reso...

Resources for Development Using DirectX in C#?

Could some one provide me some good resources for development using DirectX in C#? ...

BASSMOD_MusicLoad loading from resource in Delphi

Ok, So I created a RC file: Chipas RCDATA "chiptune.xm" And compiled it to RES. Added this RES, BASSMOD.pas and BASSMOD.dll to my project dir. Now I need to play that chiptune from the resource. How can I do it? I tried this, but it doesn't loads. procedure play; begin MyResource:=FindResource(HInstance, 'Chipas', RT_RCDATA); if M...

CS related scholarships?

Are there any good (as in recommended) (and free) resources available for finding CS related scholarships? ...

How do I read a resource file from a Java jar file?

I'm trying to access an XML file within a jar file, from a separate jar that's running as a desktop application. I can get the URL to the file I need, but when I pass that to a FileReader (as a String) I get a FileNotFoundException saying "The file name, directory name, or volume label syntax is incorrect." As a point of reference, I h...

Is there any way to share resources in a Silverlight library project?

In a silverlight application you have App.xaml, but in a Silverlight library you don't. I tried using generic.xaml but I think this serves the specific purpose of applying styles to all controls based on their type. In case, I just want a place to put things like paths or objects that I will reuse throughout the library. ...

How can you change the highlighted text color for a WPF TextBox?

The WPF TextBox natively makes use of the System Highlight color for painting the background of selected text. I would like to override this and make it consistent since it varies by OS/user theme. For ListBoxItems, there is a neat trick (see below) where you can override the resource key for the HighlightBrushKey to customize the Syst...

(ASP.NET MVC) Will this make my webapp slow if I use GlobalResources for localization only?

I have a multilingual site and I want to use Global resources only, I was wondering if it could cause my site runs slower? ...

Resources for moving to Python

What are good online resources to learn Python, quickly, for some who can code decently in other languages? edit: It'll help if you could explain why you think that resource is useful. ...

EXE, Resource and Code Reduction

How can I reduce resources inside my application? I have tried a number of tricks I have reduce and rewritten code, reduce line number, Reduce comments, Compressed the final EXE, but this is not the way I want to go, Improve the variable type cast, Remove ICONs,BMP,JPG, from inside the application I need my applications to be as small as...

CodeBetter.com like blogs for Java..

I'm moving from .Net to java. So i wanted to know any good community blog site like CodeBetter.com, of java developers. EDIT: i'm looking for something more than just coding examples, like CodeBetter.com or Artima.com, which influence your thinking. ...

What are good resources for getting started with jQuery?

jQuery and JavaScript in general are new ground for me. What are some good resources to get me up and running. I am particularly interested in page manipulation - eg moving elements about programmatically. ...

Resources in project file in VS2008 gets "reused" creatively by the form designer, possible to avoid?

We have some auto-generated resource files in our project in Visual Studio 2008, with some localized versions, and in one of these localized versions, there is a string which in this case is empty. More explicit. We have a core resource file, with lots of string resources. We then have 4 other localized versions of thisfile, and in one ...

Getting started with a 2d online game

I've plotted out the basic game idea outline, but rather than make another mod of some other game, I want to dip my toes into the waters of stand-alone game development at long last. This will likely be an RPG-style, top-down online multiplayer versus game with elements of puzzle solving, cat and mouse mind games, and even some shooter ...

How do I bind resource strings in XAML to multiple attributes within the same control ?

Is it possible to bind an additional resource string to another attribute within a control. I already have one attribute bound to a resource but also need another. I can't see a way of doing it as I would need an extra DataContext but oviously can only have one. The additional attribute I need to bind to is Content within the hyperlink ...

.NET resources hierarchy unrelated to culture

I have some string resources, e.g. a user welcome string. By default it should be "Hello", but for customer X it should be "Greetings". I'd like to use .NET's resources implementation, and have the strings sit in constants or in files or wherever I like, plus the hierarchy model fits my needs: customer X's resources override the user we...