|
E-Texteditor recently announced going open-source with their open company model. However after reading through I am not sure if this model is really open.
The way I understand is that they open up the source and contributors, depending on how much the...
Started by aleemb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It looks perfectly fine to me as an open....
Google takes contributions.
The actual open source part of it is a project called Chromium.
Google Chrome is the same way.
Some bits private to retain control and that doesn't make it truly open.
|
|
I use FPDF to generate a pdf file and open it in a new window.
how to pop up the print window when it is opened in a new window?
Started by skargor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're just opening the raw PDF in the window, you.
You cannot print directly from Javascript, but you can open the prompt.
()" />
This is Javascript, which will then open the browser's Print dialog.
|
|
If I open a file with vim dir/to/my/file.c how can I easily open the directory dir/to/my in vim's filebrowser?
Started by JtR on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
If you edit with the pwd command on unix it will open the current directory you with :Ex[plore] ? From :help Ex :
:Explore will open the local-directory browser on the current file's mentioned, you can just do ":Explore....
You are editing.
|
Ask your Facebook Friends
|
Using target="_blank" in the navigateToUrl
with firefox on windows it opens in new tab, with firefox on mac it opens a 'popup',
anyway how to make the window popup in a new tab on ff on mac as well?
Started by Kasper on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This may be more likely to trigger a pop-up.
JavaScript to open the window, using ExternalInterface.
|
|
I use ubuntu and have an samba share. From file browser I can open files from samba with open office but from krusader it makes a local copy in /tmp and open that temp file instead of original file. Same issue with gnome commander.
How can I open files...
Started by telebog on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Specifically, the share shows up "Places" column.
Nautilus, I can save to that location with Open Office.
|
|
As you know. You have to write open_basedir = '/var/home' etc
I want to write like this: open_basedir = '/var/home/*/'
Which i want is php should restrict every directory which is in home directory, for every different directories.
Short question: How...
Started by ONSC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
BTW, I haven't tested it but perhaps open_basedir = "~" works.
You must specify each path in the directive :
open_basedir = "/var/home/path1/:/var a custom php.ini file for each user.
You can.
|
|
How in JS/jQuery do I pop open the "Save As" dialog for a newly opened window. Basically I am scraping some data off of a web page. As such I am opening a new window via:
dataWindow = window.open('blank','dataWindow');
I then write the output to the blank...
Started by GregH on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's a good suggestion in this thread to make a Save As dialog happen by returning a content-disposition header to make the browser... .
ExecCommand is not an ideal way to do this kind of thing, since it's a pretty browser-specific extension to javascript .
|
|
The problem I've got is that when the preferences window is opened and then closed, it will not open again. Why is this happening and how can this be fixed?
EDIT: Just noticed also I've got the same problem with Main Window.
The window is being opened...
Started by Joshua on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It sounds like you forgot.
To be able to close and re-open it without loading from the nib again.
|
|
Using Open Office 3.1.1 for Mac (OS X 10.5.8) and trying to open PDF's. Found the Sun PDF import extension, downloaded but can't seem to get the thing to work - am i just being daft? Tried opening the .zip file with OO as it says in the 'Comments' on ...
Started by Ho Li Cow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
PDF import is beta v 0.4 at the moment
Open Open Office and chose File->....
It is small, fast and open-source, and isn't bogged down on the documents complexity, have a look at oo-wiki pages.
You could try Sumatra PDF reader.
|
|
I have an winforms application that loads in excel files for analysis. Currently, in order to open the excel file the file must not be already open in excel otherwise a FileIOException is thrown when I try and load in the file.
What I would like to do...
Started by Calanus on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Var file = File.Open think this is the case as you can... .
If you are trying to open it for read only then you should be OK.
How are you trying to open the file?
If you are trying to open it for read/write then you'll get the exception.
|