external

Firefox addon to open source file(s) in your favorite IDE

While developing a web application in Visual Studio, I want to be able to quickly open a source file (an xsl, a js, etc, not the "view source" result) in Visual Studio. My idea is to: Write out http response headers (in debug mode), identifying the local files (c:...\bla.aspx) that helped build up the response Read these http headers i...

What is the explanation behind the below declaration/keyword?

Hello, I would like to know what the following declarations do. I have seen them in a C code on MSVisual Studio Compiled code. extern "C" __declspec(dllexport) extern "C" __declspec(dllimport) I know somewhat that they are used to declare external linkage for functions(functional defined in different source file.But would like to kno...

jquery document ready in external script

My page has an outside script that contains some jQuery. Most of it runs fine except this bit: $(document).ready(function(){ alert('x'); }); That bit of code works fine when i run it inside the HTML page but not in the .js file. I have no other library in the HTML, i do have a window.onload inside the HTML but if i remov...

How to read an external page's title?

I think it's possible with jQuery, but any ASP.NET serverside code is good for my situation too. With jQuery I can load a page to for example a div, and filter the div for <title> tag, but I think for heavy pages, it is not good to first read all of the content and then read the title tag.. or maybe it has a very simple solution? anyway...

What version of GNU GCC supports the TR1 extern templates?

What is the earliest GNU GCC (g++) version to support the TR1 extern templates? For example, is it already supported in version 4.0? ...

External editor in Visual Studio 2008

Is there any way to set up external editor integration for VS2008? By this I mean when I double-click on a .CPP file in the Solution Explorer, it should open in the external editor, not the internal VS one. To keep it simple let's say I want it to open the file in Notepad++ (or how about Notepad to make it even simpler). ...

controlling execution of another process through c#

i have written a c program to which i pass in a script like code and it executes it and prints the results for me. some thing like if i send for i in 1 to 10 print i it'd create and run code which would essentially print values from 1 to 10. however i wanted to integrate step wise running of the code for which i added a functionality ...

How to add external jars in batch file in Java

I have a java batch file consisting of 4 execution steps written for analyzing any Java application. In one of the steps, I'm adding few libs in classpath that are needed for my core application to run. If any of Java applications that I'm analyzing need specific jars, then how do I add them in the classpath mentioned in the batch file. ...

getting external variables via file - eval/include

This should be fairly simple from what I can find online, but I can't seem to get it to work. I've got a widget which I want to enable others to edit (text, images, css, etc). so I've provided them the ability to pass an external page in via a url variable. The problem is that I can't then access the values they provide via the page...

Calling a file from a website in Ruby

Hi guys, I'm trying to call resources (images, for example.) from my website to avoid constant updates. Thus far, I've tried just using this: @sprite.bitmap = Bitmap.new("http://www.minscandboo.com/minscgame/001-Title01.jpg") But, this just gives "File not found error". What is the correct method for achieving this? ...

How to use blowfish in C++ as an external dll in C#

Hello, It seems there's no blowfish in C# that would do the same as this one.So I decided to use it as an external and if it doesnt work again then translate the whole blowfish in C#. But first I'll try to use as an external. Could you take a look at the C++ blowfish and tell me if I have to change the function parameters(some of them ...

Xampp - Redirect external url to localhost

I use an installation of Xampp to test my files locally before I upload them to my web server. My web pages usually contain a lot of 'hardcoded' links, which means to test any links (or any forms etc) I need to change the hardcoded link to point to localhost, and then rechange it after I am done testing. What I am looking for is a way t...

Storing jquery code in external file and directory structure?

Hi there, Can anyone can confirm the best idea for storing jquery code, initially i was inserting everything in the HEAD of a document but i am seeing more and more code being used across pages, Is the best way to use include files .. with the extension .JS? Anything else or better with respect to this? What would be the best place...

Can I pass parameters from and external .swf using Actionscript 3.0?

I have a main .fla file that I am using to load a sequence of three games. If the user wins a game, they go on to the next game. Is it in any way possible to pass to the main project whether the user has won the game? I have tried using loader.content, but that does not seem to be working. I am using Flash CS3. ...

Declaring external functions depending on whether they exist

Hi. I would like to declare an external function from the kernel32.dll library whose name is GetTickCount64. As far as I know, it is defined only in Vista and in later Windows versions. This means that when I define the function as follows: function GetTickCount64: int64; external kernel32 name 'GetTickCount64'; I will certainly not ...

unresolved external symbol Error - C

Linking... mongoose.obj : error LNK2019: unresolved external symbol _send@16 referenced in function _push static uint64_t push(int fd, SOCKET sock, SSL *ssl, const char *buf, uint64_t len) { uint64_t sent; int n, k; sent = 0; while (sent < len) { /* How many bytes we send in this iteration */ k = len - sent ...

Submit to External website and have site submitted from redirect to another page

I have to have a page submit to an external website. Not a problem. Problem is the external website displays a successful message, not good, I need to get the site it was submitted from to be redirected to something more user friendly. The external website won't redirect, which I think might be the easiest, if I pass it a redirectto p...

Embed external application under Windows

hello, I have a Windows desktop application that I want to add some functionality to. Unfortunately the source code is not available, but it has a COM API. So, my desire is to embed this application in my own window (with menus, toolbar, etc) and link events through the COM API. How do you suggest I embed one application within anoth...

Programatically detect and setup an external screen?

Hi. Is it possible in Java (or any other language?) to detect if there's an available external screen (on VGA or DVI) and start the screen, and send graphics (text and stuff) to it. An example: In Powerpoint, if you have an external screen connected, and you go "live" or start the presentation, it will show on the external screen. I'm ...

Integrating external applications with my applications

I have 2 desktop applications that I wish to integrate with external applications. One of the applications is extended with plugins which are developed by me, to provide specific features which are not common for all distributions. The situation can be described in the following diagram: As I mentioned, I want to integrate (receive an...