I have a flashbuilder project with a big image. The problem is that the default preloader does not load the images/swf's inside the project.
Is there a way to preload them?
Hi,
I need to debug a class library project that is provided to the main project (an ASP .NET website) as a DLL. For example, I need to put some breakpoints in order to check what's happening during the execution.
I tried this : http://msdn.microsoft.com/en-us/library/605a12zt.aspx, unfortunately it didn't work...
Any idea?
Thanks
I'm doing the simplest ajax request possible:
public ActionResult SayHello()
{
return Content("YYAAAY");
}
//////////
<div id="Div1">
<%= Ajax.ActionLink("SAY HELLO", "SayHello", new AjaxOptions { UpdateTargetId = "Div1" })%>
</div>
It works when I start an empty ASP.NET MVC project, but when I use it in my current project, it displays the whole page recursively instead of YYAAAY phrase only.
Where might be the problem?
When I create a new ASP.NET project in Visual Studio 2010, it creates the scripts directory, like it should, however the version of JQuery it sticks under the scripts directory is an old version of JQuery. Version 1.36 I believe. How can I update this so that Visual Studio 2010 will include the newest version of jquery? I know I can remove it and manually add it, but I don't want to have to do this everytime I create a new project.
If I open a solution, unload a project then reopen the solution visual studio remembers not to not load the project again.
How can I do this outside of visual studio? Which file is this setting stored in?
Visual Studio's annoying conversion wizard won't let me open the solution without converting all the projects, I have already converted the ones I want to work with and want to set the other ones to be unloaded.
Hi all,
I am using the Maven Embedded Glassfish Plugin and it works great, but unfortunately it creates a temporary directory in my main project directory. I would like it to use target so that every time I clean the project, the embedded directory also gets wiped.
Is there a setting for that?
Walter
There are three major frameworks for iPhone audio :
AVFoundation Framework
CoreAudio Framework
OpenAL Library
And in turn CoreAudio Framework has
AudioToolkit Framework and
AudioUnit Framework
Is this correct?
Suppose I import AVFoundation Framework into my project and it in turn needs a feature which is provided by CoreAudio Framework.. Can it internally access the features of CoreAudio without importing CoreAudio framework into my project?
Hi everyone,
I want to use iReport with my J2EE project (JSP/Servlet) in order to generate automatically any report that I want.
I don't Know how to integrate ireport with my project and with eclipse and how to genarate reports.
Thanks for Help.
For a mentoring project, I am looking for an online repository of classic computer vision exercises, similar to Project Euler, but geared towards image processing problems that could be solved in MATLAB or OpenCV.
Anyone have any ideas?
I created very simple Context Menu using Shell Extension in C#. It works fine under Windows XP 32 bit but under Windows 7 64 bits menu items not appearing.
I tried to build Setup output to x64 but no effect.
Simple Source contains ContextMenu and Setup project is under http://bit.ly/9nGd41
Looks like Wow6432 should be handled by Setup project, same for registration and adding to Global Assembly Cache
I would be appreciate for help / suggestions with this issue.
Hi guys.
I'm working on this project and I have to open a new browser tab. Actually, I have to open a target="_blank" link without the link. I know is not right to interfere with the user preferences, but hey, this is the project requirements.
So, long story short, i have to replicate the target="_blank" behavior only with javascript.
Is this even possible? Thanks!
I'm trying to compile my project including route-me using armv7 although am struggling with the following error, i have older versions of the same project in git which compiles fine with armv7 so a setting must have changed somewhere to break it, here is the error:
Undefined symbols for architecture armv7:
"_pj_fwd", referenced from:
-[RMProjection latLongToPoint:] in libMapView.a(RMProjection.o)
"_pj_inv", referenced from:
-[RMProjection pointToLatLong:] in libMapView.a(RMProjection.o)
"_pj_init_plus", referenced from:
-[RMProjection initWithString:InBounds:] in libMapView.a(RMProjection.o)
"_pj_free", referenced from:
-[RMProjection dealloc] in libMapView.a(RMProjection.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any help would be greatly appreciated.
What is the best chess engine released under permissive free software license? By permissive free software license I mean, that it is legal to incorporate the engine's code into my project without having to release the source code of my whole project.
It seems that lazy loading is enabled by default in EF4. At least, in my project, I can see that the value of
dataContext.ContextOptions.LazyLoadingEnabled
is true by default. I don't want lazy loading and I don't want to have to write:
dataContext.ContextOptions.LazyLoadingEnabled = false;
each time I get a new context. So is there a way to turn it off by default, say, across the whole project?
Hi
I upgraded an iPhone project from the 2.2.1 SDK to 3.0 SDK recently...
And when I build the project I am getting the following warning:
GCC 4.2 default deployment target 10.6.2 for architecture 'i386' and
variant 'normal' is greater than the maximum value 10.6 for the
Simulator - iPhone OS 3.1.2 SDK
I have the iPhone OS Deployment target set to iPhone OS 3.0
Any idea what could be causing this 'warning' to show up.
Regards
- SY
Greetings!
I want to extract some properties from different Maven POMs in a XSLT via the document function. The script itself works fine but the document function returns an empty result for the POM as long as I have the xmlns="http://maven.apache.org/POM/4.0.0" in the project tag. If I remove it, everything works fine.
Any idea how the make this work while leaving the xmlns attribute where it belongs or why this doesn't work with the attribute in place?
Here comes the relevant portion of my XSLT:
<xsl:template match="abcs">
<xsl:variable name="artifactCoordinate" select="abc"/>
<xsl:choose>
<xsl:when test="document(concat($artifactCoordinate,'-pom.xml'))">
<abc>
<ID><xsl:value-of select="$artifactCoordinate"/></ID>
<xsl:copy-of select="document(concat($artifactCoordinate,'-pom.xml'))/project/properties"/>
</abc>
</xsl:when>
<xsl:otherwise>
<xsl:message terminate="yes">
Transformation failed: POM "<xsl:value-of select="concat($artifactCoordinate,'-pom.xml')"/>" doesn't exist.
</xsl:message>
</xsl:otherwise>
</xsl:choose>
And, for completeness, a POM extract with the "bad" attribute:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- ... -->
<properties>
<proalpha.version>[5.2a]</proalpha.version>
<proalpha.openedge.version>[10.1B]</proalpha.openedge.version>
<proalpha.optimierer.version>[1.1]</proalpha.optimierer.version>
<proalpha.sonic.version>[7.6.1]</proalpha.sonic.version>
</properties>
</project>
Hi All,
I have created a static library following this link.
But I am facing Problems in using the library. For reference on how to use static libraries in an iPhone project I followed this link .
But I am stil struggling with the "How to implement static libraries in any other iPhone project?" question.
Thank you all.
Hi all!
I have a source code of an OpenSource project which I get from SVN. I was able to run autogen -- configure -- and make successfully (through the terminal). But I want to build the same project with Eclipse, and I can't port manually those source files to eclipse though. So, How can I set Eclipse to use external make files ? can anyone please help me ? Thanks.
Hi am going to do some project there i need
to show integral , sigma, pie , etc.. so is there any equation edtior controls available. so
I have to integrate to my Asp.Net project
I got one editor ie: LAtex Equation editor but it show the html format in the textbox ,and also it show his site name etc on the Equation popup editor, it not free at all.
Any idea pls..
I've a base project which has a dependency on a custom war to be downloaded from a remote repository.
I'm able to download and run the war, however the custom war has some html & js files which i need to get extracted in my base project's webapp directory.
How do I specify a location for the custom.war to explode at a specified directory?
I am starting a new project that needs to connect to a repository that offers JCR and CMIS APIs.
The project is in Java and both APIs offer every operation we need.
What API would you chose and why? JCR or CMIS?
Hello,
I'm searching for a screen capturing tool which captures areas of an website/web-application based on the url. The very best for me would be an firefox/ie addon with an API accessible via javascript.
Example:
URL, Coordinates, Filename
http://foo.com/project/show/33; rectangle:10,10,50,50; myapp-area1.jpg
http://foo.com/project/show/33; rectangle:100,100,150,150; myapp-area2.jpg
I have a class uses the following lines, it works fine in a Google App Engine project:
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
But when I included this class in another project, it cause error : package javax.jdo.annotations does not exist
What should I do to find javax.jdo.* ?
Frank
Hi there,
how do I create a bundle with resources like images and xibs to share it between apps? I saw that there's a way to do it when creating a new project, but there must be a way to do it based on a finished project, right?
Thanks in advance
–f
I have a .ico that I want to add to several class library DLL projects, using Visual Studio Pro 2008. For each project, I added the ico, set the built type to 'embedded resource' and set the icon in the project prefs page. Still the icon is the default.
What did I miss?
Thanks.