resources

Exchange Server Organizational Structure

I need to figure out a way to build a hierarchy by Director->Manager->Employee from an exchange server. I have very limited knowledge of exchange, so does anyone have any ideas for me? Thanks ...

Good/simple books/resources for learning codegear c++ builder?

Aside from asking specific questions here. Do you know of any good books or online resources for learing c++ builder (9)? I find the built-in help system extremely clumsy and awkward to use. I am unable to find books on the subject on amazon. Most of the web throws delphi at me when I do searches for specific questions. Conversly - ...

Suggestion for template book for C++?

I am learning templates. Which book is worth buying for doing template programming? I already have The C++ Programming Language and Effective C++. ...

How can I retrieve an embedded xml resource?

I added an XML file as an embedded resource in my class library by using the accessing the project properties in Visual Studio and then Resources | Add Resource | Add Existing File... I've tried to access the file using the following code, but I keep getting a null reference returned. Anyone have any ideas? var path = Server.MapPath("~...

Why are XAML resources unlike CSS styles?

In Expression Blend you can create a font-size of say 18 and then create a "font-size resource". Coming at this from HTML/CSS, I cannot think of when I would want to make a style for a "font-size" and one for a "font-style" and one for a "font-weight". Instead I want to make a font called "CompanyHeader" and have 10 different attributes...

Best Resource for Online Music

I want to build an application, that deals with music. Don't want to get too specific, but a user will search for a song, and then they select it. I looked at Favtape, but they have no API. iMeem doesn't allow off site media playing, so my question is, is there any online resource that has a vast selection of songs? ...

Concurrency and Coordination Runtime (CCR) Learning Resources

I have recently been learning the in's and out's of the Concurrency and Coordination Runtime (CCR). Finding good learning resources for this relatively new technology has been quite difficult. (A quick google search brings up "Creedence Clearwater Revival" as the top result!) Some of the resources I have found: Free e-book chapter fr...

Where are SharePoint resources strings located.

I have a page layout, PeopleSearchResults.aspx programmed by someone else. It contains the following tag for a SharePoint refine people search results control. Title="<%$Resources:sps,RefineByTitle%>" Where on earth/SharePoint do I look to find the string that code references? ...

Where can I find people to collaborate on software projects?

I mean not on open source, but software to build and sell. They don't have to be programmers, they can be also people who have ideas or with a marketing background. Is there any good internet platform for this? ...

Building resources into a DLL for reuse, MFC/VC++

For example, I want to build a DLL exporting a function called ShowDialog, which displays a dialog and changes the text in one of the dialog buttons. The dialog and all other resources should be bundled in the DLL. I did a quick test and when the DLL tries GetDlgItem() with a certain control ID, it gets a null pointer back. I'm assuming...

VC++ resources in a static library

Is it possible to build resources into a static library and reuse them by simply linking with the library? I'm primarily thinking about the case where you call a function in the library which in turn accesses resources. ...

Displaying all the resources strings in a resx file

I have a "GUI Strings" .resx file in my application that holds all the strings that I display. I can obviously access each string directly via Resources.Resource_GUI_Strings.CameraSettings_BrightnessLabel But how do I list all the settings in the .resx file, as their (name, value) pair, is my only option using reflection? I want to...

VGA standard for Graphics Controller

I'm attempting to create a generic graphics controller for VGA monitors with an Altera FPGA via a VGA connector, but I cannot find any good online resources explaining the standard specification which monitors use. I've found all the pin descriptions and some resources which describe how to create a specific graphics controller, such as ...

What are your favorite resources concerning RESTful WCF?

Please let me know your favorite books, blogs, articles etc about RESTful WCF. I know how to Google - what I'm really looking for are sites, books, etc that you have personally used and gained something useful from. Thanks! ...

Excessive memory allocation in Java Sandbox security

Under the Java security model it is possible to block most dangerous actions from untrusted classes, but the last time I checked (a few years ago now) it was still possible for untrusted code to perform a denial of service attack by continually allocating memory until the JVM crashes with an OutOfMemoryException. Looking now, I can't see...

WPF - App.xaml file does not get parsed if my app does not set a StartupUri ??

Background: I'm creating a WPF app using MVVM, and using a DI container to build my ViewModels My App.xaml looks like this: <Application x:Class="WpfApp.App" ...xmlns etc... StartupUri="MainWindow.xaml"> <Application.Resources> <app:ServiceLocator x:Key="serviceLocator" /> </Application.Resources> </Application>...

Any video lectures about Unix and Computer Networking??

Hi,I need some videos lectures to learn them myself because I am not a computer science student. Can you share some with me? Thanks. ...

How do you include images as resources in a C++ executable?

Is it possible include images (jpegs) as resources in a win32 c++ executable? If so how? ...

How to Access a Local Resource in a Theme from an ASP.net Page?

I have a resource file placed in the App_LocalResources folder inside the folder for a theme in App_Themes like so: \App_Themes\Theme1\App_LocalResources\Resources1.aspx.resx How can I access the resources in this file from a web form in my project, assuming the web form is called Resources1.aspx having Theme="Theme1"? ...

How to update Dynamic Resource within a Dynamic Resource?

I have a visual brush which is a group of shapes, the main colour of which is a dynamic resource itself - so the shape is for example MyShape and the Colour, MyColour which is referenced by the Shape object. My problem is when I update the colour for this - it only happens the first time the shape is loaded (the colour needs to be set fi...