target

HTML Link opening a page that Redirect to a Quicktime .MOV file displays garbage characters in IE when Target is _blank

Hi, I have a .NET page that does a Response.Redirect to a Quicktime .mov file. When I create a link to this .NET page, if the link opens in the same window (i.e. no Target defined on the anchor tag), all is good and IE displays the Quicktime movie just fine. However if I set the Target of the link to "_blank" which opens a new window, I...

Reading the target of a .lnk file in Python?

Hi, I'm trying to read the target file/directory of a shortcut (.lnk) file from Python. Is there a headache-free way to do it? The .lnk spec [PDF] is way over my head. I don't mind using Windows-only APIs.My ultimate goal is to find the "(My) Videos" folder on Windows XP and Vista. On XP, by default, it's at %HOMEPATH%\My Documents\My Vi...

Can you create a "superset" target in Xcode ?

For the purposes of unit testing I'd like to create an iPhone project target in Xcode that includes all of the release application files, plus some additional files containing code useful for UI unit testing. I can do this by duplicating the original application target; however, the problem with this is that every time I add a new sourc...

Can a team function predictably and deliver (on time) without a project manager?

Or they (team members) need someone to keep pushing? Edit: The above line was supposed to be sarcastically funny. Sorry to throw you guys off. I am talking more in the lines of distributing that work within the team, and not having one person assume and/or perform project management activities. ...

Custom NSControl target/action howto!

I have a custom NSControl that acts as sort of a two dimensional slider where you can drag a handle around the view. I added a few class specific methods and the only ones I overrode were the mouse actions and drawRect. My question is, how do I get it to implement target action? How can I make it behave like a slider and continuously sen...

.NET - Target platform/processor at compile time

Is there a #define in C# that allows me to know, at compile time, if I'm compiling for x86 (Win32) or x64 (Win64)? ...

iPhone: one nib, different assets. Bundles?

I have an iPhone application that comes in differently skinned flavors, with different art assets and sounds, but all the same code. I've got things set up with multiple targets, but the problem I'm having is I have to have a different set of UIBuilder nib files, one per view per target, set up to point to the correct art for that targe...

NAnt newbie - support chart

Hi all Will any of you guys be kind and explain the framework support chart shown here: nant.sourceforge.net. My primary interest is the meaning of the terms target and runtime in the context of nant? Thanks in advance / derdres ...

WPF label counterpart for HTML "for" attribute

Is there some attribute in WPF that I can add to element, so when I click it the target control get focus? The closest thing I have found is 'Target', but it works only with access keys and clicking it has no effect. ...

target namespace of schema

Hello everyone, I want to do XML validation to validate whether an input XML file conforming to a schema file (.xsd). My question is when do we need to specify the target namespace parameter and what is the function of the target namespace parameter? I got this question from the following MSDN pages, http://msdn.microsoft.com/en-us/li...

Choose a MSBuldTarget to launch with Cruisecontrol.Net

Hi, I want to use CCNetRequestSource wich is the name of the trigger wich launch the Msbuild task. For exemple when "toto" trigger is exected i want to launch the "toto" target on MsBuild. Is it possible ? It's for a nightly build, i want to create MSI file and doc at this time, i created the specific target in MSBuild but i don't found...

Castle DynamicProxy2: Get the Target inside an Interceptor?

I'm using Castle DynamicProxy2 to "tack on" interfaces to retrieve fields from a dictionary. For example, given the following class: public class DataContainer : IDataContainer { private Dictionary<string, object> _Fields = null; public Dictionary<string, object> Data { get { return _Fields ?? (_Fields = new Dictio...

Target flash version with the compiler (mxmlc)

When I run mxmlc with the -target-player attribute, it reports, "unknown configuration variable 'target-player'", can anyone help me with specifying the target player? ...

What could cause the error message 'Target "1" does not exist in the project "xxx".' running Ant on Windows?

I'm using ant.bat (in Ant 1.7.1) to build the all target in a build.xml file, on Windows 2003 Server. (I've substituted "xxx" in the error message for the project name in that file.) It builds successfully, but then ends with: 2009-06-10 17:26:03 | all: 2009-06-10 17:26:03 | 2009-06-10 17:26:03 | BUILD FAILED 2009-06-10 17:26:03 | Ta...

HTML popup window refering to its creator.

Supose I create a pop-up in home.html with something like: <a href="somepage.html" target="_new">link</a> How can I make a link IN somepage.html change the content of the browser window/tab that contained the original link (the windows that has home.html)? Can this be done by plain HTML? Or do I need JavaScript? ...

target value for ssrs line chart report

Hi, I am working on SSRS Line chart report. I have plotted data for Fuel consumption for every month using data values (Fuel consumption) and category grouping (Jan-Dec). Data can be inconsistent i.e. for one or more month. I am facing problem in plotting lower limit and upper limit series for the data, which has to be consistent i.e ...

XCode Different Resources For Different Targets

Hi. I am developing an iPhone app and there will be a Full as well as a Lite version of that app. In order get both bundles from the same source code and xcode project I added another target to the xcode project. Now, I want to have the Lite target copy only a subset of the resource files to the bundle. But, xcode won't simply let me d...

How to make links break out of iframe when you only control the iframe page (not the framed pages)?

I have a site that displays other sites through an iframe on certain pages. It does this in order to display a toolbar that is relevant to the reader (like Facebook and Owly does). However, when the user chooses to leave the original site I want the bar to go away. As you might gather, I don't control the sites in the iframe, and they're...

Target architecture for Tiger-compiler

I am writing a Tiger compiler in F# and I have finally reached the point where I can no longer postpone the decision of a target architecture. This is my first compiler, but it will definitely not be my last. So... what would be a good target architecture for a first compiler? I have thought about targeting the CIL (.NET), but the inte...

Force any HREF in an IFrame to use its parent as the target

I'm currently using an IFrame to sandbox user generated content on a website. This eliminates any styling issues with our main stylesheets. However, when a user generates a link using our rich text editor, we would like the link to open in the parent and not just open the link in the IFrame. I realize you can set a target to the paren...