resources

Is it possible to embed and use a portable executable in a .net DLL?

The easiest way to think of my question is to think of a single, simple unix command (albeit, this is for windows) and I need progmatic access to run it. I have a single command-line based executable that performs some unit of work. I want to call that executable with the .net process library, as I can do with any other executable. Ho...

How do I disassemble a VC++ application?

I believe the application has some parts that target .NET, and some that don't. I'm particularly interested in looking at the resource files, if there are any. ...

Access Global .resx file in ASP.Net View Page

I am currently building in Version 3.5 of the .Net framework and I have a resource (.resx) file that I am trying to access in a web application. I have exposed the .resx properties as public access modifiers and am able to access these properties in the controller files or other .cs files in the web app. My question is this: Is it poss...

A good, free resource to learn the fundamentals of C (not C++) development?

Any recommendation for a good, free resource to learn the fundamentals of C (not C++) development covering basic topics such as Algorithms, Control Structures, Functions, Arrays, Pointers, Structures, et cétera? ...

How to create and use resources in .NET

How do I create a resource that I can reference and use in various parts of my program easily? My specific problem is that I have a NotifyIcon that I want to change the icon of depending on the state of the program. A common problem, but one I've been struggling with for a long time. ...

What are the best resources for design patterns and their uses?

When it comes to the use of design patterns, I am guessing there are three types of shops. Those who wouldn't know a pattern if it hit them in the face - these usually prefer the Ctrl-C / Ctrl-V approach to code-reuse. Those who spend hours a day searching their legacy code in hopes of implementing one more great pattern - these usually ...

ResourceManager and Unit Testing

I was curious if anyone had any problems creating unit tests around using the ResourceManager. I am using Visual Studio test edition and it appears that the satellite assemblies don't get loaded during the test. When I try to get a resource for another culture, the test always fails and the resource manager always falls back to the def...

Where can I get good answers to my Perl-related questions?

AFAIK one of the objectives of Stack Overflow is to make sure anyone can come here and find good answers to her Perl related questions. Certainly beginners would ask what is the best online source to learn Perl but others might just want to ask a question. Probably the friendliest place is the Monastery of Perl Monks. It is a web site w...

How is AJAX implemented, and how does it help web dev?

From http://en.wikipedia.org/wiki/AJAX, I get a fairly good grasp of what AJAX is. However, it looks like in order to learn it, I'd have to delve into multiple technologies at the same time to get any benefit out of it. So two questions: What are resources that can help me understand/use AJAX? What sort of website would benefit from AJ...

Finding GDI/User resource usage from a crash dump

I have a crash dump of an application that is supposedly leaking GDI. The app is running on XP and I have no problems loading it into WinDbg to look at it. Previously we have use the Gdikdx.dll extension to look at Gdi information but this extension is not supported on XP or Vista. Does anyone have any pointers for finding GDI object...

How do you find media resources for game-dev?

I've been wondering, as a lone game developer, or to say a part of team which has only got programmers and people who like to play games... How do I manage the void created by lack of artists (sprites/tiles/animations) in such a situation??? What do you do in that case? and suppose I am a student, with no money to hire artists, is ther...

Can people recommend some good books and resources on unit testing?

Can people recommend books and other resources on unit testing? All levels from beginning to advanced techniques. ...

Resources that have to be manually cleaned up in C#?

What resources have to be manually cleaned up in C#? ...and what are the consquences of not doing so? For example, say i have the following code: myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Black); //Use Brush If i don't clean up the brush using the dispose method, i'm assuming the garbage collector frees the memory ...

How do you extract an RT_RCDATA section from a Win32 executable (preferably in C#)?

The only way I know how to do this currently is opening up the EXE in Visual Studio. I'd love to be able to do this entirely in C# if possible. Other options include: P/Invoking LoadResource() from the Win32 API Using an existing tool (anybody know one?) Other ideas? Thanks! ...

Reading custom resource from within MIDP 2.0 midlet

Hello everybody, How can one load custom (not an image, nor a sound file) resource file from /res within .jar using MIDP 2.0? Thanks in advance. ...

Good Resource Loading System

I'm currently looking for a resource management system for actionscript3. More specifically in this case, I'm looking for opinions on off-the-shelf resource loaders/managers from people who have used them, are they clean/simple to use? are they designed to be extended? I plan on using this with an MVC like system, Mate is next on the...

As a programmer without formal CS training or a CS degree, what am I missing?

I have worked as a programmer for over ten years, with a pretty good grasp of PHP, classic ASP, and VB. But I am self-taught, first using books and magazines, and now the Internet to improve my skills. [Edit: I studied engineering in school, so I quickly learned enough programming to get my lab work done (Fortran, Pascal, and Assembly i...

Good resources to learn the Factor programming language?

What are some good resources to learn the Factor programming language? I understand that Factor is based on Forth, so I guess resources on Forth would be nice too. ...

Resources for code generation of database objects

I am working a project where I need to generate a series of classes to represent/access data in the database. Third party projects such as hibernate or subsonic are not an option. I am new in this subject domain, so I am looking for information on the topic. The project is in .net and I am using MyGeneration. I am primarily looking for i...

How can I compare multiple .resx files?

How can I compare the content of two (or more) large .resx files? With hundreds of Name/Value pairs in each file, it'd be very helpful to view a combined version. I'm especially interested in Name/Value pairs which are present in the neutral culture but are not also specified in a culture-specific version. ...