The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
13 views

Opening a file inside a file? (HTML)

is there a way to open a ".html" file inside of a normal file like ".zip" or a custom file ".somearchiveofstuff" So far i have tried this: http://imgur.com/5UHmbrm Thanks.
3
votes
1answer
45 views

Combination of std::ios::openmode to truncate if the file exists but prevent new file creation?

I have asked earlier if there was a combination of openmode to avoid modifications of an existing file. Now I would like to know if the contrary is possible : if the file already exists, truncate it ...
1
vote
2answers
87 views

Parallelizing the Gaussian Blur Algorithm with OpenMP

I was trying to parallelize the gaussian blur function using OpenMP, but I am new at OpenMP, and when I tried to parallelize the two for loops (I don't think there are any variables that need to be ...
0
votes
1answer
13 views

Open Epub from uri ActivityNotFoundException Error Android

Im open a epub file when I press a button, but when my android don“t have any epub reader, show an toast saying please install epub reader, but my code not works, and stopp my app saying the app stop ...
0
votes
0answers
41 views

Python check if file is in use on Windows [duplicate]

I've done some searching on how I can see if a file is in use by another process before i try and open it. Best I've seen is the code below, but it seems a bit hacky to me, wondering if there might ...
0
votes
0answers
2 views

Facebook open graph Identical objects displaying different

I've created two custom action->object pairs in my app with identical structure (except each one has a own one custom property). 1) action: 'Rescue' -> object: 'Guardian' Guardian have custom ...
0
votes
0answers
4 views

Tabstrip open full new page

So I have a problem with tabstrip, this one: http://www.telerik.com/products/aspnet-ajax/tabstrip.aspx[1] Basically the way I have it working is, I have a screen with tabs along the top, and another ...
-1
votes
0answers
25 views

Github APIs (and similar open sources) codes in our app for Apple app review? [closed]

Are we allowed to use Github APIs (and similar open sources codes) in our ios app. Will it affect our Apple Store's app review? My concern comes from the non-public API prohibition from Apple Review ...
0
votes
0answers
39 views

Open Matlab/Simulink file and select block from Java GUI

I would like to open a Matlab/Simulink file from a GUI (Java/Eclipse), select a certain block within the simulink model, and somehow get back the path of that block. I know how to implement a Browse ...
-2
votes
0answers
34 views

IOS 6.0 Open Alternative defining Bundle ID

I'm completely new to IOS programming & so apologies if the question is a bit basic - but I'm trying to implement the answer found in iOS 6.x open command line on jailbreak - however I'm unsure ...
0
votes
2answers
32 views

Find window previously opened by window.open in new tab in chrome

I have the following code (from related) that works for finding a reference to previously opened windows and closing them. var playerUrl = 'http://my.player...'; var popupPlayer= window.open('', ...
-1
votes
0answers
6 views

Unable to submit “Common” Action Type

I write this question knowing full well it will never be answered, but here we go. Setting up Open Graph is a TRAINWRECK. I have been trying to get this feature functioning properly for well over a ...
0
votes
1answer
43 views

Making fifo in C

I have two problems with my code. First problem is that once I create a fifo, I don't know how to add a condition in the code so in future running, if the fifo exists - then just don't create it. ...
1
vote
1answer
58 views

Chrome extension: open link in new tab?

In my Stackoverflow foler I have stackoverflow.ico and 2 bellow files. When imported it to Chrome, it show the icon in adress bar but when I click on it, chrome dont open any new tab. What is my ...
0
votes
3answers
45 views

Opening Files From Any Directory (Python)

Im writing this basic code that runs files on my computer but right now it can only open files from the directory it is in. is there a way to open files from anywhere on my computer or would i have to ...
0
votes
1answer
16 views

Minimization of open word documents

I am using this code to get and minimize all open Word documents. Word.Application wordApp = new Word.Application(); Word.Documents docs = wordApp.Documents; wordApp.ScreenUpdating = true; ...
-5
votes
1answer
33 views

In Java, how can I open all applications in the application folder? [closed]

I don't have any code yet, I just need some tips on how to make the program go to a directory (applications), select all, and open them (or open them one by one with a for loop). How do I do this!?! ...
0
votes
0answers
25 views

Facebook share from within an Iframe which directs to a Parent page

We have parent page with an Iframe in it. We want people to use a Facebook share button (using Addthis.com) within the iframe, and that the share will: Get the parent page URL, and link the share to ...
0
votes
0answers
12 views

Checking if class is open

is there a way to access a class that is currently open(you could potentially write in it)? Something like isOpen(), but for your current class. Without THIS, because I access from another plugin ...
0
votes
1answer
21 views

Mac open grep file list

I want to search for a string in files and pipe the resulting file list to OSX's "open" command, thus opening all files that contain said string for editing in their default editor (aka not vim). For ...
-1
votes
0answers
36 views

Linux: Which process or kernel component could open that port? [closed]

I have a box with a freshly install debian squeeze, but with a custom kernel: root@cerberus:~/qemu-kvm# uname -a Linux cerberus 3.9.0-pp-03 #8 SMP PREEMPT Thu May 9 11:56:36 CEST 2013 x86_64 ...
0
votes
0answers
38 views

C open a text file passing path

I'v tried to use this code to open a txt file in my program, but nothing is happening. ShellExecute(NULL, "open", filename, NULL, NULL, SW_SHOW); I would appreciate any help, since system.start() ...
2
votes
1answer
50 views

Alter file.show() behaviour

I'm running file.show() in RStudio on a Mac, like this: filename <- "/Users/me/reports/myfile.pdf" # replace with file location/name file.show(file.path(filename), title="My File") This does two ...
1
vote
2answers
57 views

Open file reads only one line

I have an issue with file reading in perl. There is a following source: use strict; use warnings; sub main() { my @lines = file_read("test.c") or die; file_print(@lines); } sub file_read { ...
0
votes
2answers
38 views

Android How to know if my app is open when I managed a push-notification

Using Android, when I received a notification push throw my GCMIntentService, I want to know if my app is open or not, because if my app is open when the user click on the notification I want to do ...
0
votes
0answers
11 views

jQuery Fancybox and pass of variables

i have this <form id="form" action="javascript:parent.$.fancybox.open({href : 'reserva.php?funcio=ryry', type: 'iframe'});" method="post"> ...etc.. this open a fancybox window ...
0
votes
0answers
11 views

Video Advertisement not being served through Open Graph

I am trying to figure out if Facebook is scraping my flashVars in which is telling my swf to make an ad call. My goal is to embed a video player through the open graph syntax and show the ...
0
votes
1answer
22 views

Debugging open() command call with truss

Using truss -t'open' $(program_call) I get: open("command.txt", O_RDONLY|O_NONBLOCK) = 5 response FIFO file descriptor = -1 // Open call was literally sandwiched between print commands, but its ...
-1
votes
1answer
50 views

Unable to open FIFO for writing

'Server' program side: #define RESP_FIFO_NAME "response" /* Global Variables */ char *cmdfifo = CMD_FIFO_NAME; /* Name of command FIFO. */ char *respfifo = RESP_FIFO_NAME; /* Name of response FIFO. ...
0
votes
0answers
17 views

How to slowly Scroll Through Webpage (Opened In a Native Desktop WebBrowser) Using Java

I want to be able to open, lets say a CNN news article, and slowly scroll through it. I perfer to open it in a web browser because my attempts to open a website using JEditorPane yielded negative ...
1
vote
1answer
17 views

What xls parser library is used in open office?

What does open office use for importing xls files and csv files. Is it a library (or a body of code that can be easily packaged) that I could use in my project for importing xls and csv files? I'm ...
1
vote
0answers
20 views

android ioio open accessory doesn't work, while adb works

I'm able to get my application working when I have USB debugging on. But when I turn of debugging so I can use open accessory, the application doesn't work. What happends is that when I connect the ...
0
votes
0answers
3 views

Can I use open graph to see the top activities that people are doing at any given time?

I would like to see what activities are ocurring at certain times so I can tailor playlists to certain times of days based on people's activities. Is this possible with Open Graph without creating an ...
0
votes
1answer
13 views

Cannot open the same Jquery UI dialog using another DIV tag

I've been trying to find a solution to allow me to open the same dialog box when a user doesn't have access to a particular site. I am only able to open the first DIV I assigned the ID to. You can ...
0
votes
1answer
62 views

Android - Save XML from Url and read it

I'm making android App and I need to download a xml file from an URL and open it, How I can do this? public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
0answers
18 views

Open graph Like review Rejected

I was Implementing open graph like for Android App, I had submitted Action type Like for review. They had rejected it by saying. *Approval Status:* Changes Needed Please address the following ...
0
votes
3answers
44 views

Opening files in python

I am getting a weird error when I try to open a file in my python program even though they are in the same directory. Here is my code: def main(): #filename = input("Enter the name of the file of ...
0
votes
0answers
15 views

Both parent process and child process stuck at opening named pipe

Parent process has successfully created named pipes for each helper process using mkfifo(pipe_name, S_IWUSR | S_IRUSR) Then it launches helpers, and opens each pipe by: ::open(pipe_name, O_WRONLY); ...
0
votes
0answers
20 views

Open/ Close Eclipse project using Ant

My application is a dynamic web application which is dependent on 9 different modules with only java source. The source code of the application and the dependent components are maintained in the SVN. ...
0
votes
1answer
17 views

MATLAB function open works in workspace, but not in function

I am trying to create a video file with MATLAB. Here is my function: function [vidObj] = createVideo(frames, frameRate, filename) %Create video object num_frames = size(frames,2); vidObj = ...
-1
votes
0answers
18 views

Export HTML to MSWORD [closed]

I can export HTML to Word It works perfect.(With Open XML) but problem is when you open this exported .doc file and want to save with different name , when I click on "Save as" Link in MSWORD dialog ...
0
votes
0answers
12 views

Getting user groups using Open Directory API in Mac OS X?

Mac OS X is ready bind to Active Directory using Directory Utility from System Preferences, how could I query user groups using ODQuery, ODSession, etc. Any tip, link or statement are welcome.
0
votes
0answers
37 views

Is it possible to open a remote mac .app application from a web server?

I'd like to launch a mac application (.app) directly from a web server from a shell script. I can launch shell scripts directly from the server using curl: curl -s http://myserver/myscript.sh | sh I ...
0
votes
0answers
18 views

How to save and open an organizer/agenda in java (netbeans)?

I lately made a program in netbeans which can show progress in certain "projects" of the user. It is far from finished but it is almost usable. :) It's fairly simple: "it consists of four labels ...
0
votes
1answer
57 views

Unable to open file C

For the following snippet of code, I get an error Unable to open file: No such file or directory redirect_ptr is char** And I have tried printing redirect_ptr[0], it prints it correctly. Any idea ...
0
votes
0answers
39 views

w3wp.exe crashes when calling [System.Data.Odbc]::OdbcConnection.Open()

I am using Microsoft Visual Web Developer 2010 Express to build a webpage that pulls data from a database to populate a drop-down list with relevant options. Everything works just dandy when I debug ...
0
votes
1answer
24 views

Displaying facepile of all users who like page through the Facebook graph API

I am an admin on both a facebook page and app and am wondering if it us possible to output a facepile of users on my website using the open graph api? I know the default behaviour is to only show ...
1
vote
0answers
11 views

Add an invited guest as an administrator to an event using Open Graph API

I'm trying to add a guest as an administrator using the Open Graph Events API. Don't see this as a feature in the documentation. Anyone try this or know if this is even possible?
0
votes
2answers
98 views

How to open a bmp image file from C program

What I want it not the normal fopen() function. I want to open the image, as in, when I double click on the image, then the way it opens in the imageViewer. I want to open it like that. Is there any ...
0
votes
1answer
63 views

Asp.net how to allow client open file in localhost?

I'm very new to asp.net and also networking. May be this question sound a bit dummy to you. I'm having asp.net project. This is not about internet it's only in LAN. I just want to let client open a ...

1 2 3 4 5 22