Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
140 views

Open a file in a running java jar

If I have a jar file that is running, what is the best way for it to handle the opening of launched files to it - is there any cross platform way of doing this or would I have to make it a native ...
2
votes
2answers
105 views

How to structure opening hours of a place? May-be there's even an ontology for it?

Does anyone know any ontology which specifies opening hours of places? For example, I have a museum, which has 2 seasons. For low season (season start and end is specified), it is opened 10.00 - 18.00 ...
2
votes
6answers
4k views

How do I read hex numbers into an unsigned int in C [Solved]

I'm wanting to read hex numbers from a text file into an unsigned integer so that I can execute Machine instructions. It's just a simulation type thing that looks inside the text file and according ...
1
vote
1answer
101 views

Xcode 4 crashes every time I open a certain project [closed]

Whenever I'm opening a project, that was opening just fine yesterday, my Xcode 4 crashes. This is the Developer Preview version. Also, it started doing this when I went in to the 'split' view. This ...
1
vote
2answers
402 views

C# Excel file opening problem (Visual Basic “Module not Found” error)

My problem is occuring when I try to open a .xls document by MS Excel from C#, and this document contains macros. I'm using Microsoft.Office.Interop.Excel library (v12). By this operation I'm getting ...
1
vote
1answer
306 views

Opening an existing file from netbeans

I've created an application in Netbeans 6.9 where my ultimate aim is to create a .tcl file(or text file will do). When i run my application once I create the .tcl file and save it at a location. When ...
1
vote
3answers
2k views

Closing child windows in Cocoa when the main window is closed

I'm a Cocoa newbie so it is likely that my approach is wrong but .. I have an app which opens several child windows (after the main/parent window has been loaded) using NSWindowController and ...
1
vote
6answers
456 views

problem opening file c++

Must be a simple answer but I am at a loss, here is the code that is returning an error. I have tried with and without the starting slash. I won't know the full path, I want it to be relative from ...
0
votes
1answer
48 views

How to check if a file is fully copied before opening it OTHER THAN using a try catch [closed]

Possible Duplicate: How to test if a file is fully copied in .NET As of almost 2012, is there still no better way to check if a file is fully copied as to open it within a try~catch block? ...
0
votes
1answer
39 views

Does opening an iphone app via URL still call applicationDidFinishLaunchingWithOptions

If you open up an iphone app from a custom url scheme, does the applicationDidFinishLaunchingWithOptions method still get called. In my app I create a UITabBarController with 4 UIViewControllers in my ...
0
votes
2answers
41 views

pb when opening file then re-saving

I am creating a program that encrypts/hashs messages I have a list that contains (date,user,encryption, message,encryptedmessage) => Variables.oHistorique.Liste_historique. When I just encrypt ...
0
votes
1answer
115 views

Jquery opening menu onclick, stoping them and adding children

I'm in a mad situation. I am a beginner javascripter. (you can say that not beginner even) I'm trying to do opening menus (horizontal) onclick. It will be 4 level. I've done second level by searching ...
0
votes
1answer
157 views

File opening animation like in iBooks and Photos.app on iPad

When you open a PDF file in iBooks.app, its thumbnail expands to entire screen, then it shows a PDF page. And when you open a photo in Photos.app on iPad, its thumbnail expands to entire screen too. ...
0
votes
1answer
112 views

Database MySQL > Storage > Opening Hours of Shop

I have a database with shops and i would like to add their opening hours (start time - finish time from Monday to Sunday). Opening hours can be any value (incremental 15 minutes). I have a table for ...
0
votes
1answer
60 views

Get opening tag with jquery

I have an issue where I need to format html that's stored in a client cache in the following format: html[0] = '<tr>' html[1] = '<td>text</td>' html[2] = '<td>text</td>' ...
0
votes
1answer
65 views

How to open a text file of some xyz format which is placed in the sd card in the android device

How to open a text file of some xyz format which is placed in the sd card in the android device, if anybody knows please help me.
0
votes
2answers
69 views

opening a file format

I've been looking on certain sites for some time now, but I cant seem to find anything usable about file formats. There is a certain file format on my computer, which I want to re-create to make ...
0
votes
0answers
210 views

Opening a password protected PDF Document

How do I programmatically open a password protected PDF. I want to use ruby to open a password protected PDF and read its content. I would like to know whether its possible and if it is possible ...
0
votes
1answer
85 views

hyperlink open is separate windows

I have used a js code to open a hyper link in a new window. function openNewWindow() { alert("hello"); var theurl="http://www.google.com"; popupWin = window.open(theurl, 'open_window', ...
-1
votes
2answers
116 views

HTML Comments inside Opening Tag of the Element

When I try this <option disabled = "disabled" <!-- Used to disable any particular option --> selected = "selected" <!-- Used to pre-select any particular option --> ...