open

Open Search spaces replacement issue

Hello.I am using open search, from opensearch.org . The problem is if the user types spaces after the search word, the spaces are replaced with + signs. Is there a way of controling, possibly trimming or replacing, what is going to be sent in the search box of my website from opensearch? ...

Open an URL in a web browser and refresh it continuously from C# app

Hello, The title is self explanatory I guess. How can I develop a C# application to open a page in a web browser, given the URL, and refresh it continuously (always the same URL). Thanks! ...

The best open sources scripts for city-guide sites

I am looking for the best open source scripts for city-guide sites. Any suggestions? ...

web analytics open source software recommendations

What do people use to gather metrics for their site? Do you have any open source recommendations? I would like something based on php + mysql, easily extensible and in addition to getting UX usage information, I would also need to know how my product gets used in the backend. Database and web server metrics is also something I would be...

Open mailto after click in IE8/Chrome

I'm currently trying to do the following: Trigger: click on a name in a select list. Action : open mailto-link in current window, thus opening an email client. $(document).ready(function(){ // Define click-event $('option').click(function(){ var mail = $(this).attr('value'); window.open('mailto:'+mail, '_self'); }); ...

Why would an OS X bundle take about 30 seconds to open?

Hi, We wrote a simple OS X executable in objective c. It opens and runs very quickly when called. We then put that executable into a .app bundle. When calling "open" from the command line on that bundle, or double clicking the app from the finder the "open" call can take upwards of 30 seconds to return. This is especially confusing ...

In need of help with setting up the open source library JFreeChart

I am having trouble with setting up the open source library JFreeChart for creating charts using Java. This is the process I have followed so far in trying to set it up: I downloaded the latest version from their download page http://sourceforge.net/projects/jfreechart/files/. I then unpacked the jfreechart-1.0.13.zip in the directory...

UIApplication openUrl not working with formatted NSString

I have the following code to open google maps: NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@, Anchorage, AK",addressString]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]]; But it doesn't work and there is no error. It just doesn't open. ...

.vbproj the project is not supported by this installation

I have visual studio 2008 installed in my pc when i try to open a .Net 2005 Solution with multi-projects, there are project in vb and c#. The only web project on this solution display the following message: .vbproj the project is not supported by this installation I try to open the web project separately from the solution and I not hav...

Open source test automation tools for functional testing of web applications

what are some good open source test automation tools to test web applications ? ...

C++ open() fails for no apparant reason

The following code: char filename[64]; ifstream input; cout << "Please enter the filename: " << endl; cin >> filename; input.open(filename); if (!input.is_open()) { cout << "Opening file " << filename << " failed." << endl; exit(1); } fails, it enters the if() and exits. What could possibly be the cause for this? I'm using ...

Recognizing file - Python

Ok, so the title may trick you a bit, and I'm sorry for that but didn't find a better title. This question might be a bit hard to understand so I'll try my best. I have no idea how this works or if it is even possible but what I want to do is for example create a file type (lets imagine .test (in which a random file name would be rando...

in c shell, how to open a file that contains a single digit

I need to open a file using c shell. The file contains a single integer, and I need to put it into a variable, increase it and put back into the file. Meaning, if the file contains the number 5, I need, after the program runs, that the file contains the number 6. Any suggestions? ...

Any advices for AS3 Open Source tools?

Hello All, I am looking for open source tools to do Actionscript3 web development. (Web Sites) I know about the existence of tools such as Eclipse+plugins and Flash Develop for the coding but I am most concerned about the graphics part. Is there any tool out there to create SWFs with all the graphics for animate with AS3 later? And bes...

Open Flash Chart 2, Pie chart set values problem, php

Does anyone know how to set the values for a pie chart in the Open Flash Chart 2?? i have like a percentage for a visitors sources, and i don't know how to display them , because they changed a lot of stuff in the v2 http://teethgrinder.co.uk/open-flash-chart-2/tutorial-4.php what i have now in the data generating is this (from the ex...

three out of five file streams wont open, i believe its a problem with my ifstreams.

#include<iostream> #include<fstream> #include<cstdlib> #include<iomanip> using namespace std; int main() { ifstream in_stream; // reads itemlist.txt ofstream out_stream1; // writes in items.txt ifstream in_stream2; // reads pricelist.txt ofstream out_stream3;// writes in plist.txt ifstream in_stream4;// read recipt.tx...

Why won't my jQuery UI dialog show up when it's div is nested?

Hi, I'm trying to show a dialog (div) that's inside another div. This way, I can easily keep all my dialogs together. The page looks something like this: <div id="bookshelf"> <div id="login">dialog</div> </div> I've added the needed properties to it: $("div#bookshelf div#login").dialog({ autoOpen: false }); and try to make it...

How to write JavaScript to a separate window?

I have opened a new window with JavaScript: var newwin = window.open('','preview','width=600,height=500'); Now I want to write some JavaScript to the window: newwin.document.write("<script type='text/javascript'>alert('Hi!');<" + "/script>"); newwin.document.close(); However, the script never gets executed. Am I doing something wro...

Object request broker open source

Hi, Is there out there any open source ORB api, something like JAVA's RMI or .NET's Remoting? ...

jQuery - Opening links within tabs

Hi all, At present I have some jQuery tabs and these tabs contain links. Unfortunately on following one of the links, the new page opens as if you were following any normal link i.e. not within the tab which is want I would want to happen. Have tried following this section but to no avail: http://jqueryui.com/demos/tabs/#...open_links_...