PostId int64 13 11.8M | PostCreationDate stringlengths 19 19 | OwnerUserId int64 3 1.57M | OwnerCreationDate stringlengths 10 19 | ReputationAtPostCreation int64 -33 210k | OwnerUndeletedAnswerCountAtPostTime int64 0 5.77k | Title stringlengths 10 250 | BodyMarkdown stringlengths 12 30k | Tag1 stringlengths 1 25 ⌀ | Tag2 stringlengths 1 25 ⌀ | Tag3 stringlengths 1 25 ⌀ | Tag4 stringlengths 1 25 ⌀ | Tag5 stringlengths 1 25 ⌀ | PostClosedDate stringlengths 19 19 ⌀ | OpenStatus stringclasses 5
values | unified_texts stringlengths 47 30.1k | OpenStatus_id int64 0 4 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7,031,161 | 08/11/2011 18:44:58 | 837,783 | 07/10/2011 16:25:42 | 16 | 1 | How to access objective-c properties in class methods | It's impossible to access an objective-c property in a class method like this:
@interface MyClass
@property (nonatomic, retain) NSMutableArray myStudents;
@end
@implementation MyClass
+ (id)myClassMethod { return self.myStudents; } // bad
@end
This MyClass happens to be a single... | objective-c | singleton | null | null | null | null | open | How to access objective-c properties in class methods
===
It's impossible to access an objective-c property in a class method like this:
@interface MyClass
@property (nonatomic, retain) NSMutableArray myStudents;
@end
@implementation MyClass
+ (id)myClassMethod { return self.myStudents... | 0 |
6,135,117 | 05/26/2011 07:26:29 | 770,858 | 05/26/2011 07:26:29 | 1 | 0 | Regular expression problem.. | Expression should start with a alphanumeric and should have alphabets, @, $, %, _, - and a
single space in the middle and should ends with alphanumeric!"
e.g. 1a1 --valid
e.g. 1111-- not valid
e.g. 2222$2211--valid
e.g %11a25 --invalid
| javascript | null | null | null | null | 05/28/2011 08:09:51 | too localized | Regular expression problem..
===
Expression should start with a alphanumeric and should have alphabets, @, $, %, _, - and a
single space in the middle and should ends with alphanumeric!"
e.g. 1a1 --valid
e.g. 1111-- not valid
e.g. 2222$2211--valid
e.g %11a25 --invalid
| 3 |
5,168,071 | 03/02/2011 13:25:40 | 639,054 | 03/01/2011 08:54:51 | 141 | 15 | List sub-directories with ls | How could I list sub-directories with ls, with '-d' only the current directory is shown. I want something like `find . -type d -maxdepth=1` would give me.
| linux | shell | null | null | null | 03/02/2011 14:06:22 | off topic | List sub-directories with ls
===
How could I list sub-directories with ls, with '-d' only the current directory is shown. I want something like `find . -type d -maxdepth=1` would give me.
| 2 |
11,391,704 | 07/09/2012 08:46:26 | 1,327,029 | 04/11/2012 15:45:27 | 45 | 0 | How to customize joomla extension? | I installed ContactForm Version:2.13 extension into my joomla website.
Its working fine but by default ,it shows a link - "Show contact form" and after clicking it, a pop up form is opening.
I want to open that form after clicking an image.
How can i do that? | joomla | joomla2.5 | null | null | null | 07/10/2012 15:40:23 | not a real question | How to customize joomla extension?
===
I installed ContactForm Version:2.13 extension into my joomla website.
Its working fine but by default ,it shows a link - "Show contact form" and after clicking it, a pop up form is opening.
I want to open that form after clicking an image.
How can i do that? | 1 |
5,559,256 | 04/05/2011 22:18:51 | 403,915 | 07/27/2010 21:47:50 | 61 | 10 | Private functions / Variables enforcement in python | I see a lot of python code that does "loose" private variables / functions. They'll declare functions / variables with one underscore (eg. _foo) and then use it just in the class / file. It really annoys me that they don't use the double underscore because eventually, someone will call this "private" member from outsid... | python | null | null | null | null | null | open | Private functions / Variables enforcement in python
===
I see a lot of python code that does "loose" private variables / functions. They'll declare functions / variables with one underscore (eg. _foo) and then use it just in the class / file. It really annoys me that they don't use the double underscore because eventu... | 0 |
3,288,153 | 07/20/2010 08:23:06 | 396,569 | 07/20/2010 08:23:06 | 1 | 0 | how many sites powered by codeigniter? | help me please!!! | codeigniter | null | null | null | null | 07/20/2010 08:25:19 | off topic | how many sites powered by codeigniter?
===
help me please!!! | 2 |
11,289,157 | 07/02/2012 07:08:55 | 1,326,517 | 04/11/2012 12:13:15 | 42 | 2 | Exclamation in url gets converted to %21 - Works fine in firefox, not working in chrome and IE | pls check this website, http://1008designs.in/
the design works perfect in Firefox, but when it comes to Chrome and IE, I'm getting a big problem.
The `!` in the url gets converted to `%21` in Chrome and IE. Because of this the URL doesn't works. pls help asap. I want to fix this issue soon.
Everything else fi... | jquery | html | css | internet-explorer | google-chrome | 07/10/2012 13:25:25 | too localized | Exclamation in url gets converted to %21 - Works fine in firefox, not working in chrome and IE
===
pls check this website, http://1008designs.in/
the design works perfect in Firefox, but when it comes to Chrome and IE, I'm getting a big problem.
The `!` in the url gets converted to `%21` in Chrome and IE. Becaus... | 3 |
9,144,916 | 02/04/2012 21:56:16 | 1,175,704 | 01/28/2012 20:40:56 | 1 | 0 | dialog code wrong somewere? | Can someone help with this code. what am looking for is for the button on my dialog to go back a page
. so i dont have to press the phone back button thank you.
java file
import android.app.Activity;
import android.app.Dialog;
import android.content.Intent;
import android.os.Bundle;
import ... | android | dialog | null | null | null | null | open | dialog code wrong somewere?
===
Can someone help with this code. what am looking for is for the button on my dialog to go back a page
. so i dont have to press the phone back button thank you.
java file
import android.app.Activity;
import android.app.Dialog;
import android.content.Intent;
impor... | 0 |
11,411,680 | 07/10/2012 10:47:54 | 733,332 | 05/01/2011 13:59:18 | 395 | 9 | MBProgress HUD crashing application on reloadData on tableView | I am using this piece of code to display an MBProgressHUD over the top of one of my views while I download data from a web-service, the only problem is that occasionally this code will cause the app to hang, doing nothing while the HUD displays "Downloading" and the screen is locked. Also, if I have something like a k... | iphone | objective-c | ios | uitableview | mbprogresshud | null | open | MBProgress HUD crashing application on reloadData on tableView
===
I am using this piece of code to display an MBProgressHUD over the top of one of my views while I download data from a web-service, the only problem is that occasionally this code will cause the app to hang, doing nothing while the HUD displays "Downlo... | 0 |
301,994 | 11/19/2008 14:18:22 | 9,707 | 09/15/2008 19:43:36 | 481 | 9 | What is the best Eclipse GWT plugin? | We're going to investigate GWT for our project. When searching for an Eclipse GWT plugin I got many.
- [Googlipse][1]
- [GWT-Tooling][2]
- [Cypal studio][3]
- Other?
In your view, what is the best GWT plugin for Eclipse and why?
[1]: http://sourceforge.net/projects/googlipse
[2]: http://code.g... | eclipse | gwt | eclipse-plugin | null | null | 09/20/2011 14:17:32 | not constructive | What is the best Eclipse GWT plugin?
===
We're going to investigate GWT for our project. When searching for an Eclipse GWT plugin I got many.
- [Googlipse][1]
- [GWT-Tooling][2]
- [Cypal studio][3]
- Other?
In your view, what is the best GWT plugin for Eclipse and why?
[1]: http://sourceforge.ne... | 4 |
8,571,421 | 12/20/2011 06:02:38 | 399,145 | 07/22/2010 13:40:20 | 42 | 0 | How to filter the baselines(UCM) alone from describe command? | As we are having many components , I am trying to describe all the baselines using following command
cleartool describe -l baseline:Baseline_2.1.0.13@\My_PVOB
It provides output like follows
"Build 13"
master replica: My_PVOB@\My_PVOB
owner: Admin
group: ABC
stream:Components_Integratio... | clearcase | cleartool | clearcase-ucm | null | null | null | open | How to filter the baselines(UCM) alone from describe command?
===
As we are having many components , I am trying to describe all the baselines using following command
cleartool describe -l baseline:Baseline_2.1.0.13@\My_PVOB
It provides output like follows
"Build 13"
master replica: My_PVOB@\My_PVOB
... | 0 |
8,389,789 | 12/05/2011 18:08:20 | 134,597 | 10/14/2008 19:52:38 | 1,906 | 49 | HTML coding style | Ok...
We've got:
- HTML 4.whatever...
- XHTML
- HTML 5
HTML 5 is supported on most desktops today, beyond that HTML 4 is probably just about unversally supported, and I'm not really sure what point of XHTML is at this point in time.
The question is at this current point in time what is considered good "C... | html | coding-style | null | null | null | 12/06/2011 13:02:01 | not constructive | HTML coding style
===
Ok...
We've got:
- HTML 4.whatever...
- XHTML
- HTML 5
HTML 5 is supported on most desktops today, beyond that HTML 4 is probably just about unversally supported, and I'm not really sure what point of XHTML is at this point in time.
The question is at this current point in time wha... | 4 |
8,101,217 | 11/11/2011 23:34:02 | 137,629 | 07/13/2009 19:01:05 | 171 | 1 | Need help adding slashes to a text box onblur so it looks like a phone number | I'm terrible at JS regular expressions and I'm counting on an intelligent being to help me accomplish what should be a trivial task.
Onblur, I want a text field of 10 numbers '1234567890' to be formatted as 123/456/7890 using JS.
And Onfocus, it should revert to the number '1234567890' without slashes.
That's ... | javascript | html | css | null | null | 11/12/2011 00:19:38 | not a real question | Need help adding slashes to a text box onblur so it looks like a phone number
===
I'm terrible at JS regular expressions and I'm counting on an intelligent being to help me accomplish what should be a trivial task.
Onblur, I want a text field of 10 numbers '1234567890' to be formatted as 123/456/7890 using JS.
A... | 1 |
11,494,096 | 07/15/2012 17:31:03 | 1,527,210 | 07/15/2012 17:20:46 | 1 | 0 | PHP IDE: How is that functionality called | please how is called the functionality in IDEs when your cursor is on some of your method and you press (for example) Ctrl + MOUSE CLICK and you will be moved to the method’s source code (i know for sure that PhpEd has it).. I am looking for some PHP IDE for MAC with this feature and i found nothing :// I tried Aptana,... | php | php-ide | null | null | null | 07/16/2012 13:35:28 | off topic | PHP IDE: How is that functionality called
===
please how is called the functionality in IDEs when your cursor is on some of your method and you press (for example) Ctrl + MOUSE CLICK and you will be moved to the method’s source code (i know for sure that PhpEd has it).. I am looking for some PHP IDE for MAC with this ... | 2 |
8,344,950 | 12/01/2011 16:41:00 | 1,066,031 | 11/25/2011 17:13:25 | 8 | 1 | Java socket output stream | Can you have an `PrintWriter` and `ObjectOutputStream` on the same sockets output stream?
out_stream = new PrintWriter(socket.getOutputStream(), true);
obj_stream = new ObjectOutputStream(socket.getOutputStream(); | java | sockets | networking | null | null | null | open | Java socket output stream
===
Can you have an `PrintWriter` and `ObjectOutputStream` on the same sockets output stream?
out_stream = new PrintWriter(socket.getOutputStream(), true);
obj_stream = new ObjectOutputStream(socket.getOutputStream(); | 0 |
5,699,393 | 04/18/2011 06:45:04 | 709,187 | 04/15/2011 05:10:53 | 1 | 0 | How to make custom UIComponent Accessible? | I added a MXML component in flex and selected the base as UIComponent. I want to make it accessible so that automated testing tools can Access it. I am using TestComplete for automated testing. As TestComplete uses Microsoft Accessibility classes. Now it treat my component as the Graphics.
How Can I do this??
| flex | flex3 | accessibility | testcomplete | null | null | open | How to make custom UIComponent Accessible?
===
I added a MXML component in flex and selected the base as UIComponent. I want to make it accessible so that automated testing tools can Access it. I am using TestComplete for automated testing. As TestComplete uses Microsoft Accessibility classes. Now it treat my componen... | 0 |
11,466,042 | 07/13/2012 07:32:38 | 1,522,464 | 07/13/2012 02:55:20 | 1 | 0 | Not able to load javascript in my html file using ajax. | I am using AJAX to call a html file and the file uses jquery and javascript which I have already called in the page before .But the javascript (and CSS) are not being executed. How can we get my javascript to work.
The page uses the same CSS and Javascript which the page which has already been loaded uses. So how ca... | javascript | html | ajax | null | null | 07/14/2012 21:19:32 | not a real question | Not able to load javascript in my html file using ajax.
===
I am using AJAX to call a html file and the file uses jquery and javascript which I have already called in the page before .But the javascript (and CSS) are not being executed. How can we get my javascript to work.
The page uses the same CSS and Javascript... | 1 |
5,562,313 | 04/06/2011 06:34:29 | 508,127 | 11/15/2010 10:28:18 | 1,052 | 6 | How to design a class with nested property? c# | how to design a class with nested property. like instance.property1.property2.
please discuss a this with small code in c# as a result class will have nested property.
thanks | c# | null | null | null | null | 04/06/2011 08:12:32 | not a real question | How to design a class with nested property? c#
===
how to design a class with nested property. like instance.property1.property2.
please discuss a this with small code in c# as a result class will have nested property.
thanks | 1 |
9,925,584 | 03/29/2012 12:43:44 | 1,298,904 | 03/28/2012 17:50:07 | 1 | 0 | autocomplete Textbox control wpf | I have a requirement in WPF where i have to filter particular values in the DataGrid via an Autocomplete textbox control. We are to search the particular field through a combobox which is bound to the columns of our datagrid. i am keen about some reference of how to filter number of records of that particular column us... | wpf-controls | wpfdatagrid | null | null | null | 03/30/2012 18:58:05 | not a real question | autocomplete Textbox control wpf
===
I have a requirement in WPF where i have to filter particular values in the DataGrid via an Autocomplete textbox control. We are to search the particular field through a combobox which is bound to the columns of our datagrid. i am keen about some reference of how to filter number o... | 1 |
5,513,970 | 04/01/2011 13:21:24 | 687,628 | 04/01/2011 13:11:58 | 1 | 0 | (subsonic) problem with deleting rows (my table contains Deleted column) | I have a table named 'Test' contains
- id int
- name nvarchar
- Deleted bit
columns.
First i install subsonic in my project using sql server 2000.
where i try to delete some rows, it throw object null exception for me on line:
repo.Update(); //object reference not set to...
-------
I config su... | subsonic | null | null | null | null | null | open | (subsonic) problem with deleting rows (my table contains Deleted column)
===
I have a table named 'Test' contains
- id int
- name nvarchar
- Deleted bit
columns.
First i install subsonic in my project using sql server 2000.
where i try to delete some rows, it throw object null exception for me on line:
... | 0 |
10,189,172 | 04/17/2012 10:06:56 | 1,196,969 | 02/08/2012 10:52:49 | 46 | 1 | To download the package from local server | How to download any package to your device from the local server in android ? | android | download | localserver | null | null | 04/18/2012 12:24:33 | not a real question | To download the package from local server
===
How to download any package to your device from the local server in android ? | 1 |
8,447,168 | 12/09/2011 14:46:40 | 1,085,598 | 12/07/2011 12:29:14 | 15 | 0 | Nothing showing under PHP and mySQL <tr> | I'm looping a table with mySQL and with a while function and the table builds all the table headers and the loop, but nothing under the loop. I have a <?php endwhile ?> after the loop but it won't display anything under that. It will echo more than one tr from the database but I loose the rest of the page! | php | mysql | table | while-loops | null | 12/09/2011 16:35:29 | not a real question | Nothing showing under PHP and mySQL <tr>
===
I'm looping a table with mySQL and with a while function and the table builds all the table headers and the loop, but nothing under the loop. I have a <?php endwhile ?> after the loop but it won't display anything under that. It will echo more than one tr from the database ... | 1 |
3,254,729 | 07/15/2010 10:35:30 | 175,469 | 09/18/2009 11:16:54 | 557 | 21 | Web user account management components | I need to create user account registration / login / management components for a Spring backed web application. I'm intending to use Acegi to help with the authentication side of things. Is there a framework / set of components that can help with the boilerplate account validation e-mails, forgotten password handling e... | java | spring | web-applications | spring-security | null | null | open | Web user account management components
===
I need to create user account registration / login / management components for a Spring backed web application. I'm intending to use Acegi to help with the authentication side of things. Is there a framework / set of components that can help with the boilerplate account valid... | 0 |
7,623,741 | 10/02/2011 00:00:32 | 469,906 | 10/08/2010 06:28:30 | 3 | 0 | Programming language for beginning indie developer? What direction should I go? | I know C++ and java. My school focuses on Java but it doesn't seem to be very appropriate for game design. I wouldn't even consider Java if it wasn't for Minecraft. I want to make some nice and small indie games. If they go far great, but I also want to be marketable to be safe.
It seems like C#/XNA seems to be cat... | language | indie | null | null | null | 10/02/2011 00:56:41 | off topic | Programming language for beginning indie developer? What direction should I go?
===
I know C++ and java. My school focuses on Java but it doesn't seem to be very appropriate for game design. I wouldn't even consider Java if it wasn't for Minecraft. I want to make some nice and small indie games. If they go far great, ... | 2 |
9,579,901 | 03/06/2012 08:03:18 | 1,225,105 | 02/22/2012 06:32:56 | 18 | 2 | Move to top function is not working in kineticJs | I am trying to load multiple images onto a canvas using html5 img tag.<br>
and images are replaceable .eg there are 5 list of images
The images are also draggable<br>
and onclick of a particular images replaces the last uploaded image from the same list,<br>
The problem I m facing is that when I upload a new elemen... | javascript | image | drag-and-drop | html5-canvas | kineticjs | 07/19/2012 02:05:56 | too localized | Move to top function is not working in kineticJs
===
I am trying to load multiple images onto a canvas using html5 img tag.<br>
and images are replaceable .eg there are 5 list of images
The images are also draggable<br>
and onclick of a particular images replaces the last uploaded image from the same list,<br>
The... | 3 |
10,412,787 | 05/02/2012 11:26:11 | 1,369,846 | 05/02/2012 11:07:23 | 1 | 0 | How does one prevent detection of a Wordpress installation by chromesniffer, builtwith and various security testing software? | if it gets detected then things become easier for script kiddies to attack, using the most recently available public exploits. | php | wordpress | security | website | null | 05/02/2012 12:25:44 | not a real question | How does one prevent detection of a Wordpress installation by chromesniffer, builtwith and various security testing software?
===
if it gets detected then things become easier for script kiddies to attack, using the most recently available public exploits. | 1 |
7,827,650 | 10/19/2011 20:23:36 | 975,767 | 10/02/2011 20:07:18 | 6 | 0 | Button getting EXC_BAD_ACCESS? | im trying to create a simple app that allows you to switch views. I can go to the next view but when i click the back button i get a EXC_BAD_ACCESS error on this line in the main.m:
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
This is the code im using to go back:
... | button | ios5 | exc-bad-access | ibaction | xcode4.2 | null | open | Button getting EXC_BAD_ACCESS?
===
im trying to create a simple app that allows you to switch views. I can go to the next view but when i click the back button i get a EXC_BAD_ACCESS error on this line in the main.m:
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
This is t... | 0 |
7,937,013 | 10/29/2011 04:28:36 | 379,100 | 06/29/2010 14:34:26 | 6 | 0 | PHP book recommendation | I just completed reading "Head first php" and have also referred "php essential training" from lynda. Now i am very much comfortable with php syntax and basics, which book or tutorial shall I next start with? | php | books | null | null | null | 10/29/2011 04:38:57 | not constructive | PHP book recommendation
===
I just completed reading "Head first php" and have also referred "php essential training" from lynda. Now i am very much comfortable with php syntax and basics, which book or tutorial shall I next start with? | 4 |
8,950,956 | 01/21/2012 05:36:38 | 1,161,933 | 01/21/2012 05:32:26 | 1 | 0 | How add list(ArrayList) in JFrame? | how can I add a list from arraylist from a class created by me to a Jframe window? | jframe | null | null | null | null | 01/21/2012 14:10:15 | not a real question | How add list(ArrayList) in JFrame?
===
how can I add a list from arraylist from a class created by me to a Jframe window? | 1 |
10,486,942 | 05/07/2012 18:12:34 | 1,274,693 | 03/16/2012 18:16:48 | 1 | 0 | What are some blogs for php practices? | I am a beginner learning PHP codes with a book for myself. I believe in adventures more than rules, and I wanted to know some blogs or web resources which gives real time examples because I am bit tired about learning just the syntax and structures. | php | php5 | null | null | null | 05/07/2012 18:14:26 | not constructive | What are some blogs for php practices?
===
I am a beginner learning PHP codes with a book for myself. I believe in adventures more than rules, and I wanted to know some blogs or web resources which gives real time examples because I am bit tired about learning just the syntax and structures. | 4 |
11,530,374 | 07/17/2012 20:27:07 | 953,628 | 09/19/2011 22:33:42 | 164 | 24 | XMLTextWriter C# and no data found for standard xml | So I am dealing with some hard core Legacy code here. We are talking .NET 2.0. My problem is that my program when run is spitting out an exception with the information saying No Data found for Standard XML. I am using the class XMLTextWriter. As this is for work I cannot paste a lot of the code however below is a bit o... | c# | exception | error-handling | xmltextwriter | null | null | open | XMLTextWriter C# and no data found for standard xml
===
So I am dealing with some hard core Legacy code here. We are talking .NET 2.0. My problem is that my program when run is spitting out an exception with the information saying No Data found for Standard XML. I am using the class XMLTextWriter. As this is for work ... | 0 |
133,571 | 09/25/2008 14:12:16 | 20,907 | 09/23/2008 05:27:24 | 16 | 0 | How to convert multiple <br/> tag to a single <br/> tag in php | Wanted to convert
<br/>
<br/>
<br/>
<br/>
<br/>
into
<br/>
| php | null | null | null | null | null | open | How to convert multiple <br/> tag to a single <br/> tag in php
===
Wanted to convert
<br/>
<br/>
<br/>
<br/>
<br/>
into
<br/>
| 0 |
3,997,434 | 10/22/2010 13:50:14 | 484,269 | 10/22/2010 13:50:14 | 1 | 0 | Web OS final year project | i m a final year student and planning for my project. i have given my thought on devoloping a web operating system using HTML,JS,CSS with linux support.
Do provide me some suggation and tutorial or sourcecodes(if any)
thank u. | php | javascript | web | final | webos | 10/22/2010 14:06:02 | not a real question | Web OS final year project
===
i m a final year student and planning for my project. i have given my thought on devoloping a web operating system using HTML,JS,CSS with linux support.
Do provide me some suggation and tutorial or sourcecodes(if any)
thank u. | 1 |
3,499,948 | 08/17/2010 06:47:38 | 77,004 | 11/22/2008 10:24:45 | 545 | 21 | Is data copied when selecting into a temp table? | I am wondering, when selecting rows and inserting them into a temp table, is the data actually copied or just referenced?
For example:
SELECT * INTO #Temp FROM SomeTable
If the table is very large, is this going to be a costly operation?
From my tests it seems to execute about as fast as a simple SELECT... | sql-server | null | null | null | null | null | open | Is data copied when selecting into a temp table?
===
I am wondering, when selecting rows and inserting them into a temp table, is the data actually copied or just referenced?
For example:
SELECT * INTO #Temp FROM SomeTable
If the table is very large, is this going to be a costly operation?
From my test... | 0 |
10,107,413 | 04/11/2012 13:56:10 | 1,253,037 | 03/06/2012 19:02:52 | 16 | 0 | Build errors in JDK 1.5 but not in 1.6 for Connection interface | I have my class implementing the Connection interface, http://docs.oracle.com/javase/6/docs/api/java/sql/Connection.html
I was not getting any build errors when I was testing it in one of my local machine, which is having JDK 1.6 version. But on deploying the same to another remote machine which is having JDK 1.5 ve... | jdbc | null | null | null | null | null | open | Build errors in JDK 1.5 but not in 1.6 for Connection interface
===
I have my class implementing the Connection interface, http://docs.oracle.com/javase/6/docs/api/java/sql/Connection.html
I was not getting any build errors when I was testing it in one of my local machine, which is having JDK 1.6 version. But on de... | 0 |
9,955,749 | 03/31/2012 12:13:49 | 576,758 | 01/15/2011 14:12:54 | 1,746 | 50 | Get Arrow in qTip | How can I add arrow in qTip. So far I have
$('.jym').qtip( {
content: 'Ok',
style: {
name: 'cream' ,
border: {
width: 3,
radius: 8,
color: '#6699CC'
... | jquery | tooltip | qtip | arrow | null | null | open | Get Arrow in qTip
===
How can I add arrow in qTip. So far I have
$('.jym').qtip( {
content: 'Ok',
style: {
name: 'cream' ,
border: {
width: 3,
radius: 8,
colo... | 0 |
5,628,747 | 04/11/2011 23:31:44 | 656,147 | 03/11/2011 23:32:53 | 56 | 8 | What's wrong with this code? | )Hi,
I'm exporting a file in the sdcard, however, i'm facing a FileNotFound Exception (`04-12 01:26:18.494: DEBUG/Carburant(4568): /mnt/sdcard/Carburant/alaa.peugeot.settings.dat/alaa.peugeot.settings.dat (Is a directory)`
)here is the code:
try {
File sdCard = Environment.getExternalStorageDirectory();
... | android | file-io | null | null | null | 09/02/2011 20:12:23 | too localized | What's wrong with this code?
===
)Hi,
I'm exporting a file in the sdcard, however, i'm facing a FileNotFound Exception (`04-12 01:26:18.494: DEBUG/Carburant(4568): /mnt/sdcard/Carburant/alaa.peugeot.settings.dat/alaa.peugeot.settings.dat (Is a directory)`
)here is the code:
try {
File sdCard = Environme... | 3 |
8,368,645 | 12/03/2011 15:21:27 | 1,055,140 | 11/19/2011 09:36:35 | 1 | 0 | What is the difference between the domain and machine in general | I need the main basic differences between the domain and machine..
thanks in advance.. | domain | machine | null | null | null | 12/04/2011 00:47:51 | not a real question | What is the difference between the domain and machine in general
===
I need the main basic differences between the domain and machine..
thanks in advance.. | 1 |
6,882,697 | 07/30/2011 10:58:50 | 257,944 | 01/24/2010 19:55:00 | 329 | 13 | Mono C# shell script execution not giving complete output | This is what I'm doing.
public static void Main (string[] args)
{
ProcessStartInfo ps = new ProcessStartInfo();
ps.FileName = "iwlist";
ps.Arguments = "scanning";
string outp = WithOutputRedirect(ps);
Console.Write(outp);
}
public static string... | c# | shell | mono | null | null | null | open | Mono C# shell script execution not giving complete output
===
This is what I'm doing.
public static void Main (string[] args)
{
ProcessStartInfo ps = new ProcessStartInfo();
ps.FileName = "iwlist";
ps.Arguments = "scanning";
string outp = WithOutputRedirect(ps);
C... | 0 |
3,756,582 | 09/21/2010 00:52:04 | 93,781 | 04/21/2009 13:07:26 | 1,223 | 72 | Security violation in c:\ProgramData? | I am working on a SQL Compact demo app, and one of the things I my setup project does is copy an SDF file to the user's `c:\ProgramData` folder. However, when the app is run on the user's machine, I get the following error:
System.Data.EntityException: The underlying provider failed on Open. ---> System.Data.Sql... | sql-server-ce | null | null | null | null | null | open | Security violation in c:\ProgramData?
===
I am working on a SQL Compact demo app, and one of the things I my setup project does is copy an SDF file to the user's `c:\ProgramData` folder. However, when the app is run on the user's machine, I get the following error:
System.Data.EntityException: The underlying pr... | 0 |
3,374,143 | 07/30/2010 17:53:41 | 4,906 | 09/06/2008 14:21:25 | 2,361 | 53 | Anyone having (or solved) these problems with Windows 7 Virtual PC (Recording sound, Drag 'n Drop, etc.) | Windows Virtual PC problems:
1. There is no "Shared Folders" option to allow us to access folders on the Host machine within the Client machine using drive letters (E:\ etc.). We have several programs that I need to test and I need to access files on the E:\ drive, etc. Note that the Host folders that you see ... | windows-7 | audio | virtual-pc | null | null | 07/31/2010 21:08:18 | off topic | Anyone having (or solved) these problems with Windows 7 Virtual PC (Recording sound, Drag 'n Drop, etc.)
===
Windows Virtual PC problems:
1. There is no "Shared Folders" option to allow us to access folders on the Host machine within the Client machine using drive letters (E:\ etc.). We have several programs t... | 2 |
10,200,428 | 04/17/2012 23:00:35 | 1,165,441 | 01/23/2012 17:10:47 | 16 | 4 | iPhone Message button from a picture in an app? | I would like to implement a feature on my app that when a picture is clicked that it opens up a dialog similar to the dialog opened when you are on a specific picture and you click the icon at the bottom left of the screen. When that is clicked it gives you 7 buttons (Email Photo, Message, Assign to Contact, Use as Wal... | iphone | ios | null | null | null | null | open | iPhone Message button from a picture in an app?
===
I would like to implement a feature on my app that when a picture is clicked that it opens up a dialog similar to the dialog opened when you are on a specific picture and you click the icon at the bottom left of the screen. When that is clicked it gives you 7 buttons... | 0 |
8,954,232 | 01/21/2012 15:38:03 | 1,385,911 | 05/10/2012 00:43:12 | 1 | 0 | wordpress hacked - New code - 21/01/2012 | I got this code on a updated wordpress site.
Wordpress 3.3.1, and all plugins up to date.
Plugin list:
custom-contact-forms
google-maps-for-wordpress
seo-ultimate
Some theme files affected where CHMOD 644, Every time that I let a file with CHMOD 777 this start, but it will not affect only 777 files, it also ... | security | wordpress | hacking | null | null | 01/22/2012 19:30:30 | off topic | wordpress hacked - New code - 21/01/2012
===
I got this code on a updated wordpress site.
Wordpress 3.3.1, and all plugins up to date.
Plugin list:
custom-contact-forms
google-maps-for-wordpress
seo-ultimate
Some theme files affected where CHMOD 644, Every time that I let a file with CHMOD 777 this start, b... | 2 |
10,839,330 | 05/31/2012 18:39:19 | 1,334,569 | 04/15/2012 13:32:38 | 50 | 0 | Windows Forms Accept Button is not working | I am currently working on my homework which is a calculator in windows form and I am facing the problem that I have set the form accept button is equal button but by pressing the enter, backspace button is working and backspace button has background image and when I run my app then backspace button is highlighted or fo... | c# | winforms | null | null | null | 05/31/2012 21:39:23 | not a real question | Windows Forms Accept Button is not working
===
I am currently working on my homework which is a calculator in windows form and I am facing the problem that I have set the form accept button is equal button but by pressing the enter, backspace button is working and backspace button has background image and when I run m... | 1 |
9,885,974 | 03/27/2012 08:37:54 | 1,210,637 | 02/15/2012 06:41:17 | 12 | 0 | Image map in html | I am trying to add wowslider script for sliding couple of images by using (wowslider software). Software generates wowslider.js,jquery.js ,script.js and one css file style.css.
Everything is working fine in generated script but when I try to add an image map on particular area of image portion then image map not works... | jquery | html | css | imagemap | null | 03/30/2012 01:42:44 | not a real question | Image map in html
===
I am trying to add wowslider script for sliding couple of images by using (wowslider software). Software generates wowslider.js,jquery.js ,script.js and one css file style.css.
Everything is working fine in generated script but when I try to add an image map on particular area of image portion t... | 1 |
8,563,219 | 12/19/2011 15:05:02 | 528,590 | 12/02/2010 21:07:55 | 744 | 9 | OpenGL - how difficult is it to learn OpenGL ES 2.0 compared to 1.1? | I'm looking into learning OpenGL ES for making a little graphics engine in Android (and possibly iOS). I've only done a little in OpenGL before on Desktop.
I'm not sure whether I should learn OpenGL ES 2.0 or 1.1. When it comes to difficulty, is there a big difference between the two?
I know there's a few topi... | android | ios | opengl | opengl-es | null | 12/19/2011 16:56:57 | not constructive | OpenGL - how difficult is it to learn OpenGL ES 2.0 compared to 1.1?
===
I'm looking into learning OpenGL ES for making a little graphics engine in Android (and possibly iOS). I've only done a little in OpenGL before on Desktop.
I'm not sure whether I should learn OpenGL ES 2.0 or 1.1. When it comes to difficulty... | 4 |
7,237,892 | 08/30/2011 01:44:21 | 490,923 | 10/29/2010 05:44:45 | 57 | 4 | Android 4.0 features | Dev Ladies and Dev gentlemen,
As an Android Dev the challenge that I encounter over and over from my clients is asking that question that bugs a lot of Android Devs: "Can you make it look like the Iphone ?". So they were time where I would try explaining that we are talking about 2 unik platforms with its widgets a... | android | native | widgets | features | null | 08/30/2011 13:42:49 | not constructive | Android 4.0 features
===
Dev Ladies and Dev gentlemen,
As an Android Dev the challenge that I encounter over and over from my clients is asking that question that bugs a lot of Android Devs: "Can you make it look like the Iphone ?". So they were time where I would try explaining that we are talking about 2 unik pl... | 4 |
9,045,078 | 01/28/2012 12:00:08 | 928,265 | 09/05/2011 05:10:45 | 1 | 0 | Actions and objects | i would like to create a custom action XXX "got nailed at" (nail polish promotion for a chain of stores) with the object being one of the physical store locations i.e. got nailed at XXX store in London or Got nailed at XXX store in NY.
Is this possible?
Also, when it comes to submitting action and object types... | facebook | facebook-graph-api | opengraph | facebook-opengraph | null | 01/30/2012 18:12:27 | off topic | Actions and objects
===
i would like to create a custom action XXX "got nailed at" (nail polish promotion for a chain of stores) with the object being one of the physical store locations i.e. got nailed at XXX store in London or Got nailed at XXX store in NY.
Is this possible?
Also, when it comes to submittin... | 2 |
7,636,240 | 10/03/2011 14:16:00 | 864,769 | 07/27/2011 06:20:17 | 10 | 0 | unity3d, animation stuck at 1st frame | i have a menu scene and scene A, scene B. when i go to scene A, a 3D object will play some animation, and i have some button to click and make it animation also, but from menu if i go to scene B, i come back to menu then i go scene A, all the animation in scene A will not working, "animation.isPlaying" is showing true.... | animation | unity3d | null | null | null | 10/04/2011 16:39:54 | not a real question | unity3d, animation stuck at 1st frame
===
i have a menu scene and scene A, scene B. when i go to scene A, a 3D object will play some animation, and i have some button to click and make it animation also, but from menu if i go to scene B, i come back to menu then i go scene A, all the animation in scene A will not work... | 1 |
867,263 | 05/15/2009 06:34:02 | 107,510 | 05/15/2009 06:27:14 | 1 | 0 | Non-interpreted programing language for GUI | I need to write an app that reads a config file with info on the menubars it needs to create.
Normaly, i'd just use java, but I need the application to have the least run-time dependencies posible, this includes not forcing the user to download anything, even JRE, let alone something like NET Framework.
So I need... | gui | programming-languages | null | null | null | null | open | Non-interpreted programing language for GUI
===
I need to write an app that reads a config file with info on the menubars it needs to create.
Normaly, i'd just use java, but I need the application to have the least run-time dependencies posible, this includes not forcing the user to download anything, even JRE, let... | 0 |
6,227,194 | 06/03/2011 12:39:51 | 654,362 | 03/10/2011 21:49:48 | 170 | 3 | jQuery animation looping seems to send all animated elements crazy ! | i asked a question earlier about setting the animation loop to play more than twice;
once i added that code into my existing code it seems to send all my animated elements beserk; would you know what is being done wrong ?
Demo Link: http://www.prosperitymedia.co.uk/other/
the issue also is your browser might c... | jquery | null | null | null | null | null | open | jQuery animation looping seems to send all animated elements crazy !
===
i asked a question earlier about setting the animation loop to play more than twice;
once i added that code into my existing code it seems to send all my animated elements beserk; would you know what is being done wrong ?
Demo Link: http://... | 0 |
8,802,034 | 01/10/2012 10:48:45 | 923,789 | 09/01/2011 15:53:37 | 69 | 1 | ShareKit/Twitter memory leak | I've got a problem - I'm using ShareKit 2.0, and while I'm testing on iOs 5.0.1 I get some memory leaks when I'm trying to share on Twitter. To be exact, at the moment when native ios5 twitter window pops-up, and when i hit "send". The problem seems to be in TWSession. When I'm testing on iOS 4.3, and using custom shar... | objective-c | ios | xcode | twitter | sharekit | null | open | ShareKit/Twitter memory leak
===
I've got a problem - I'm using ShareKit 2.0, and while I'm testing on iOs 5.0.1 I get some memory leaks when I'm trying to share on Twitter. To be exact, at the moment when native ios5 twitter window pops-up, and when i hit "send". The problem seems to be in TWSession. When I'm testing... | 0 |
937,207 | 06/01/2009 22:55:13 | 23,630 | 09/30/2008 00:08:38 | 345 | 3 | How can I write Perl code from Perl |
I have a Perl program that reads in a bunch of data, munges it, and then outputs several different file formats.
I'd like to make Perl be one of those formats (in the form of a .pm package) and allow people to use the munged data within their own Perl scripts.
Printing out the data is easy, using Data::Dump::... | perl | null | null | null | null | null | open | How can I write Perl code from Perl
===
I have a Perl program that reads in a bunch of data, munges it, and then outputs several different file formats.
I'd like to make Perl be one of those formats (in the form of a .pm package) and allow people to use the munged data within their own Perl scripts.
Printing... | 0 |
7,692,298 | 10/07/2011 19:59:22 | 872,344 | 08/01/2011 07:12:44 | 19 | 2 | InputStream from relative path | Here is my question. I have a **relative file path** (for example "/res/example.xls") and I would like to get an **InputStream** Object of that file from that path.
I checked the JavaDoc and did not find a constructor or a method to get such a InputStream from a path...
Anyone has any idea please kindly let me know!... | java | path | io | inputstream | relative-path | null | open | InputStream from relative path
===
Here is my question. I have a **relative file path** (for example "/res/example.xls") and I would like to get an **InputStream** Object of that file from that path.
I checked the JavaDoc and did not find a constructor or a method to get such a InputStream from a path...
Anyone has... | 0 |
8,047,290 | 11/08/2011 07:42:38 | 190,803 | 10/15/2009 18:29:05 | 171 | 5 | CCSprite not displayed when placed on CCNode or position is wrong | I have this code in my init:
-(id)init {
if ((self = [super init])) {
CGSize screenSize = [CCDirector sharedDirector].winSize;
mapSize = CGSizeMake(4000, 4000);
rotateWorld = [CCNode node];
[rotateWorld setContentSize:mapSize];
... | objective-c | cocos2d | cocos2d-iphone | ccsprite | null | null | open | CCSprite not displayed when placed on CCNode or position is wrong
===
I have this code in my init:
-(id)init {
if ((self = [super init])) {
CGSize screenSize = [CCDirector sharedDirector].winSize;
mapSize = CGSizeMake(4000, 4000);
rotateWorld = [CCNo... | 0 |
11,287,711 | 07/02/2012 04:13:09 | 1,493,667 | 07/01/2012 00:12:19 | 25 | 0 | Removing unwanted text from a program | Can you help "de-bug" this program.
I have it almost perfect but when I print it includes "28" , which I don't want.
public static boolean isPerfectNumber(int n)
{
int lhs=0,rhs = 0;
for(int i = 1;i<(n-2);i++)
{
lhs += i * (n/i) ... | java | homework | null | null | null | 07/02/2012 09:22:12 | too localized | Removing unwanted text from a program
===
Can you help "de-bug" this program.
I have it almost perfect but when I print it includes "28" , which I don't want.
public static boolean isPerfectNumber(int n)
{
int lhs=0,rhs = 0;
for(int i = 1;i<(n-2);i++)
{
lhs += i * (n/i) ... | 3 |
7,133,467 | 08/20/2011 17:39:21 | 543,711 | 12/15/2010 17:48:34 | 519 | 34 | Free HTML page template for presenting mobile apps? |
I wonder if some of you came across a `nice free one-page template` for presenting iOs/android apps.
I have an application and I want to have a one-page in my website for it. I want something like [this][1] or even simpler. This example have some little PHP which is fine for me.
Any link will be appreciated :)
... | android | html | ios | templates | null | 08/20/2011 19:28:22 | off topic | Free HTML page template for presenting mobile apps?
===
I wonder if some of you came across a `nice free one-page template` for presenting iOs/android apps.
I have an application and I want to have a one-page in my website for it. I want something like [this][1] or even simpler. This example have some little PHP ... | 2 |
6,011,718 | 05/15/2011 22:36:00 | 577,057 | 01/15/2011 21:20:07 | 146 | 9 | Indexing engine. | I'm developing context discover system - which is mix of searching and suggestions. <br />
Currently I'm looking for library for indexing. <br />
After some investigation I stayed on **Lucene** and **Terrier** and found Indri not comfortable.
What are the downsides of both? What problem I can meet while using them... | indexing | lucene | search-engine | information-retrieval | null | null | open | Indexing engine.
===
I'm developing context discover system - which is mix of searching and suggestions. <br />
Currently I'm looking for library for indexing. <br />
After some investigation I stayed on **Lucene** and **Terrier** and found Indri not comfortable.
What are the downsides of both? What problem I can... | 0 |
9,007,719 | 01/25/2012 18:02:12 | 1,156,695 | 01/18/2012 16:29:54 | 6 | 0 | PHP SMS Gateway API | I purchased a SMS gateway for that they gave me only HTTP API but I need PHP API. Can anybody help me how to convert the below API to PHP API.
http://indiansms.smsmaker.in/api/sendmsg.php?user=UNAME&pass=PASS&sender=Sender ID&phone=Mobile No&text=SMS&priority=Priority&stype=smstype
I used the following code , i s... | php | sms-gateway | null | null | null | 01/30/2012 21:25:41 | not a real question | PHP SMS Gateway API
===
I purchased a SMS gateway for that they gave me only HTTP API but I need PHP API. Can anybody help me how to convert the below API to PHP API.
http://indiansms.smsmaker.in/api/sendmsg.php?user=UNAME&pass=PASS&sender=Sender ID&phone=Mobile No&text=SMS&priority=Priority&stype=smstype
I used... | 1 |
9,952,290 | 03/31/2012 01:41:15 | 1,304,337 | 03/30/2012 23:54:52 | 1 | 0 | What are the other types of caching in the Internet apart from caching web page? | What are the other types of caching in the Internet apart from caching web page?
Is forward-caching applicable in other types of caching apart from caching web page? | caching | distributed-caching | offline-caching | http-caching | data-caching | 04/01/2012 07:51:44 | not constructive | What are the other types of caching in the Internet apart from caching web page?
===
What are the other types of caching in the Internet apart from caching web page?
Is forward-caching applicable in other types of caching apart from caching web page? | 4 |
5,393,074 | 03/22/2011 14:49:25 | 488,735 | 10/27/2010 11:15:57 | 210 | 0 | How it works python gettext with PO files from http://translationproject.org ? | I'm new to Python and Django. I want to start a Django multi langual project. I see that I should use gettext to translate the strings but I'm not getting how it works.
For example. My main language is Portuguese, and I need to translate to English and Chinese. What PO files I need, and how to get the files?
Sorr... | python | django | gettext | null | null | null | open | How it works python gettext with PO files from http://translationproject.org ?
===
I'm new to Python and Django. I want to start a Django multi langual project. I see that I should use gettext to translate the strings but I'm not getting how it works.
For example. My main language is Portuguese, and I need to trans... | 0 |
491,932 | 01/29/2009 15:05:20 | 14,723 | 09/17/2008 02:19:12 | 102 | 2 | What is the best book(s) on Lisp? | I am starting a new project at work where I will be required to use Lisp as a part of some cognitive work that I will be doing. I'm not very familiar with Lisp. Do any of you know of any books that will help me get up to speed quickly? | lisp | null | null | null | null | 06/17/2012 05:03:40 | not constructive | What is the best book(s) on Lisp?
===
I am starting a new project at work where I will be required to use Lisp as a part of some cognitive work that I will be doing. I'm not very familiar with Lisp. Do any of you know of any books that will help me get up to speed quickly? | 4 |
2,557,550 | 04/01/2010 01:04:59 | 281,465 | 10/02/2009 13:07:37 | 114 | 0 | URL rewriting IIS6 | Hi i was using HttpModule to Perform Extension-Less URL Rewriting
as explained at http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx Approach 3:
works perfectly in IIS7, now i just published the solution to the live environment it doesnt work.
the reason seems to be the fac... | url | seo | null | null | null | null | open | URL rewriting IIS6
===
Hi i was using HttpModule to Perform Extension-Less URL Rewriting
as explained at http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx Approach 3:
works perfectly in IIS7, now i just published the solution to the live environment it doesnt work.
the re... | 0 |
7,839,580 | 10/20/2011 17:10:30 | 850,230 | 07/18/2011 14:43:46 | 3 | 0 | Developing A Programming Language | I'm asked to develop concept of a PL working on real world objects. E.g: for cars.
DEFINE(MYCAR (GRAY, 2010))
with this statement I created car object named MYCAR. It is just a simple example. How i can write this procedure in pseudocode? I'm really confused. And sorry for my English. | pseudocode | null | null | null | null | 10/20/2011 17:56:12 | not a real question | Developing A Programming Language
===
I'm asked to develop concept of a PL working on real world objects. E.g: for cars.
DEFINE(MYCAR (GRAY, 2010))
with this statement I created car object named MYCAR. It is just a simple example. How i can write this procedure in pseudocode? I'm really confused. And sorry ... | 1 |
4,782,750 | 01/24/2011 13:51:34 | 509,663 | 11/16/2010 15:13:30 | 233 | 11 | Manipulate $session->flash() view output in CakePHP | I am looking to manipulate the `$session->flash()` output in my CakePHP app, Currently I have the very simple default implementation of showing flash and auth error messages:
<?php
$session->flash();
$session->flash('auth');
?>
This produces a `<div>` with an ID and class that has the message i... | php | cakephp | null | null | null | null | open | Manipulate $session->flash() view output in CakePHP
===
I am looking to manipulate the `$session->flash()` output in my CakePHP app, Currently I have the very simple default implementation of showing flash and auth error messages:
<?php
$session->flash();
$session->flash('auth');
?>
This produ... | 0 |
2,359,874 | 03/01/2010 23:25:43 | 152,940 | 08/08/2009 10:35:51 | 111 | 7 | How to create "image building" effect | I'm looking for a convinient way to create such an effect in a web application: i have some picture, which has not very high resolution, and i want it to appear as a cloud of particles in some random part of the screen, and then to move to it's position.
It's ok that i will lose some resolution (i don't think that ... | silverlight | javascript | animation | null | null | null | open | How to create "image building" effect
===
I'm looking for a convinient way to create such an effect in a web application: i have some picture, which has not very high resolution, and i want it to appear as a cloud of particles in some random part of the screen, and then to move to it's position.
It's ok that i wil... | 0 |
2,901,793 | 05/25/2010 03:28:09 | 101,095 | 05/04/2009 19:18:50 | 1,900 | 94 | What's the best way to send user-inputted text via AJAX to Google App Engine? | I'm developing in Google App Engine (python sdk) and I want to use jQuery to send an Ajax request to store an answer to a question.
What is the best way to send this data to the server? Currently I have:
function storeItem(question_id) {
var answerInputControl = ".input_answer_"+question_id;
... | jquery | python | ajax | google-app-engine | null | null | open | What's the best way to send user-inputted text via AJAX to Google App Engine?
===
I'm developing in Google App Engine (python sdk) and I want to use jQuery to send an Ajax request to store an answer to a question.
What is the best way to send this data to the server? Currently I have:
function storeItem(que... | 0 |
9,086,691 | 01/31/2012 20:48:15 | 836,169 | 07/08/2011 22:05:46 | 408 | 13 | Migrating Visual Studio Solution from x86 to x64 Developer Environment | I've looked around and tried many suggestions but none have worked. I recently migrated a web-based application I developed in Visual Web Developer Express 2010 on a 32-bit machine to a newer 64-bit machine. After re-configuring everything the way I had it, I'm trying to re-compile my code but I keep getting this stupi... | .net | visual-studio-2010 | migration | 32bit-64bit | null | null | open | Migrating Visual Studio Solution from x86 to x64 Developer Environment
===
I've looked around and tried many suggestions but none have worked. I recently migrated a web-based application I developed in Visual Web Developer Express 2010 on a 32-bit machine to a newer 64-bit machine. After re-configuring everything the ... | 0 |
1,469,973 | 09/24/2009 05:57:17 | 157,650 | 08/17/2009 10:00:55 | 6 | 0 | CSS border not working in IE6 | I have a css class (given below). The border element is working fine in firefox, it creates a 6px white border around the image. But in IE(6) it is not creating any border ie only displays the image. Pls help me out I need to figure it out quickly.
.pimage2 {
background:url(../images/img2.gif) no-repeat;
width: ... | css | html | null | null | null | null | open | CSS border not working in IE6
===
I have a css class (given below). The border element is working fine in firefox, it creates a 6px white border around the image. But in IE(6) it is not creating any border ie only displays the image. Pls help me out I need to figure it out quickly.
.pimage2 {
background:url(../im... | 0 |
560,386 | 02/18/2009 09:34:54 | 64,565 | 02/10/2009 13:50:36 | 46 | 8 | What is the best MSI generating install tool available? | I am using WIX at the moment, but keep on running into limitations (such as ability to expand properties as the value of another property). Also not sure if I ran into a bug with the FileSearch element, because it is not working as expected (does not find a file that is definitely there). I can go the route of using cu... | install | wix | null | null | null | 09/21/2011 07:57:56 | not constructive | What is the best MSI generating install tool available?
===
I am using WIX at the moment, but keep on running into limitations (such as ability to expand properties as the value of another property). Also not sure if I ran into a bug with the FileSearch element, because it is not working as expected (does not find a f... | 4 |
1,957,197 | 12/24/2009 07:20:54 | 133,098 | 07/04/2009 10:50:47 | 78 | 6 | How can we configure IIS for domain name mapping | I would like to configure IIS server at(windows server 2003) for domain name mapping.
We have purchased domain name for one of our newly created website. I would like to know how can i configure IIS so that anybody from outside world can reach wensite by typing url.
say http://xyz.com/ it should redirect at my we... | asp.net | web-hosting | null | null | null | null | open | How can we configure IIS for domain name mapping
===
I would like to configure IIS server at(windows server 2003) for domain name mapping.
We have purchased domain name for one of our newly created website. I would like to know how can i configure IIS so that anybody from outside world can reach wensite by typing u... | 0 |
9,102,216 | 02/01/2012 19:46:51 | 1,072,319 | 11/29/2011 22:38:20 | 6 | 0 | Drupal Forms API: 'file' or 'managed_file' type with multiple/unlimited values | I've got a form that needs to have either a 'file' or 'managed_file' type field in it for uploading files via the form. Is there an attribute that can be set on the form item render array that will allow multiple/unlimited files to be uploaded via the one form item?
For example, when you add a new field via the admi... | drupal | file-upload | null | null | null | 02/02/2012 00:25:56 | off topic | Drupal Forms API: 'file' or 'managed_file' type with multiple/unlimited values
===
I've got a form that needs to have either a 'file' or 'managed_file' type field in it for uploading files via the form. Is there an attribute that can be set on the form item render array that will allow multiple/unlimited files to be u... | 2 |
5,837,621 | 04/29/2011 21:33:29 | 322,355 | 04/21/2010 13:59:31 | 3,972 | 143 | Why is not Visual Studio in C++ as intelligent as it's in C#? | I'm wokring on a homework in C++ in Visual Studio 2010, I've found that Visual Studio is not as wonderful as it is in C#. No intellisense , No code formating and stupid load of error messages which they might be gone togother if one error has been fixed.
Why that? | c# | c++ | visual-studio | null | null | 04/30/2011 21:19:36 | not constructive | Why is not Visual Studio in C++ as intelligent as it's in C#?
===
I'm wokring on a homework in C++ in Visual Studio 2010, I've found that Visual Studio is not as wonderful as it is in C#. No intellisense , No code formating and stupid load of error messages which they might be gone togother if one error has been fixed... | 4 |
9,928,641 | 03/29/2012 15:32:13 | 1,207,168 | 02/13/2012 15:52:28 | 1 | 0 | IE 8 CSS Selectors | I'm tring to set the style on the first div inside a fieldset and it doesn't seem to be working on IE 8. I've tried several different scenarios :first, first-child, etc and can't get it to work. Was wondering if anyone has any suggestion on getting it to work with IE 8? Thanks!
Here's what I have so far:
.par... | css-selectors | null | null | null | null | 03/30/2012 15:19:07 | too localized | IE 8 CSS Selectors
===
I'm tring to set the style on the first div inside a fieldset and it doesn't seem to be working on IE 8. I've tried several different scenarios :first, first-child, etc and can't get it to work. Was wondering if anyone has any suggestion on getting it to work with IE 8? Thanks!
Here's what I ... | 3 |
2,543,114 | 03/30/2010 05:55:36 | 14,964 | 09/17/2008 04:28:17 | 633 | 58 | VCL form and control font settings under Russian version of MS Windows |
I have a Borland C++ Builder VCL app (so I am not working with Unicode yet),
I want to provide a simple translation of controls' caption text to Russian at runtime.
I can easily use **EnumChildWindows** to get the English caption, then lookup the translation and replace the caption text using **SetWindowText**. ... | vcl | russian | localization | charset | null | null | open | VCL form and control font settings under Russian version of MS Windows
===
I have a Borland C++ Builder VCL app (so I am not working with Unicode yet),
I want to provide a simple translation of controls' caption text to Russian at runtime.
I can easily use **EnumChildWindows** to get the English caption, then lo... | 0 |
6,909,290 | 08/02/2011 08:36:58 | 833,199 | 07/07/2011 09:06:50 | 1 | 0 | SaveChanges in EntityFramework With Inherited Objects/Tables | This is my first question, so hopefully I start off on the right foot.
I am processing reports on a client/institution basis and adding the entries to a SQL Server CE 4.0 Database.
I have an Entity Framework (4.1) structure with the following hierarchy:
- [Clients] have many [Institutions]
- [Institutions... | sql-server-ce | entity-framework-4.1 | savechanges | objectcontext | null | null | open | SaveChanges in EntityFramework With Inherited Objects/Tables
===
This is my first question, so hopefully I start off on the right foot.
I am processing reports on a client/institution basis and adding the entries to a SQL Server CE 4.0 Database.
I have an Entity Framework (4.1) structure with the following hie... | 0 |
991,756 | 06/13/2009 23:22:59 | 122,595 | 06/13/2009 23:18:31 | 1 | 0 | Select Records with same Name but different Address | Trying to select records with the same customer name but different street addresses.
Data Ex:
Bob, 123 Front Lane
Bob, 43 Highway Rd
Shane, 32 Mapleleaf Dr
Cindy, 100 North St
Mandy, 121 Billy Rd Apt #1
Mandy, 121 Billy Rd
I would want to bring back both of Bob and Mandy's records only.
Any help woul... | mssql | tsql | null | null | null | null | open | Select Records with same Name but different Address
===
Trying to select records with the same customer name but different street addresses.
Data Ex:
Bob, 123 Front Lane
Bob, 43 Highway Rd
Shane, 32 Mapleleaf Dr
Cindy, 100 North St
Mandy, 121 Billy Rd Apt #1
Mandy, 121 Billy Rd
I would want to bring ba... | 0 |
5,608,939 | 04/10/2011 00:35:58 | 412,486 | 08/05/2010 22:46:44 | 18 | 0 | Who, in the world, uses the DD-YYYY-MM and DD-YY-MM date format patterns? | Who, in the world, uses the DD-YYYY-MM and DD-YY-MM date format patterns?
Should I worry about them? | parsing | date | format | patterns | null | 04/10/2011 13:12:08 | not constructive | Who, in the world, uses the DD-YYYY-MM and DD-YY-MM date format patterns?
===
Who, in the world, uses the DD-YYYY-MM and DD-YY-MM date format patterns?
Should I worry about them? | 4 |
11,308,525 | 07/03/2012 09:58:26 | 1,468,361 | 06/20/2012 06:56:05 | 1 | 1 | JavaScript innerHTML is not working in Firefox and Google Chrome | I have problem using innerHTML in my JavaScript , working fine in IE but the page is showing error and this is not working in Firefox and Chrome. while posting the page i am getting the following message
Message: Not implemented
Line: 2695
Char: 1
Code: 0
Thanks in advance | javascript | null | null | null | null | 07/03/2012 10:22:32 | not a real question | JavaScript innerHTML is not working in Firefox and Google Chrome
===
I have problem using innerHTML in my JavaScript , working fine in IE but the page is showing error and this is not working in Firefox and Chrome. while posting the page i am getting the following message
Message: Not implemented
Line: 2695
Char:... | 1 |
9,920,585 | 03/29/2012 07:06:15 | 1,068,425 | 11/27/2011 22:35:54 | 34 | 0 | How to add more than 3 sheets to an excel workbook from within MATLAB | How do I add more sheets to an excel workbook from within matlab?
I set up the workbook like so (based on code I got from someone else's post in this forum):
%# create Excel COM Server
Excel = actxserver('Excel.Application');
Excel.Visible = true;
%# create new XLS file
... | excel | matlab | export-to-excel | null | null | null | open | How to add more than 3 sheets to an excel workbook from within MATLAB
===
How do I add more sheets to an excel workbook from within matlab?
I set up the workbook like so (based on code I got from someone else's post in this forum):
%# create Excel COM Server
Excel = actxserver('Excel.Applicati... | 0 |
7,068,612 | 08/15/2011 17:56:14 | 349,026 | 05/24/2010 14:18:18 | 849 | 38 | Best algorithm for motion detection? | I wonder what is the best algorithm for motion detection of human subjects. Keeping in mind that the motion is detected for moving objects with tolerance of leaving out minor changes to the environment. Matlab/OpenCV sources would be great!
Thanks | matlab | opencv | computer-vision | null | null | 08/16/2011 00:39:32 | off topic | Best algorithm for motion detection?
===
I wonder what is the best algorithm for motion detection of human subjects. Keeping in mind that the motion is detected for moving objects with tolerance of leaving out minor changes to the environment. Matlab/OpenCV sources would be great!
Thanks | 2 |
415,654 | 01/06/2009 06:46:39 | 630 | 08/07/2008 12:10:44 | 45 | 7 | Expression.Dynamic and Operators.Assign? | I'm trying to use Expression.Dynamic() to build an assignment operation... I want to use this to selectively offer value type semantics to certain custom type instances in my language. I can't do this with a "static" (?) Expression because I don't know what the actual type is (I need the MetaObject instance and its Lim... | c# | dlr | null | null | null | null | open | Expression.Dynamic and Operators.Assign?
===
I'm trying to use Expression.Dynamic() to build an assignment operation... I want to use this to selectively offer value type semantics to certain custom type instances in my language. I can't do this with a "static" (?) Expression because I don't know what the actual type ... | 0 |
5,961,992 | 05/11/2011 09:25:53 | 683,233 | 03/30/2011 03:52:18 | 941 | 85 | Anti-Bot comment system - PHP | Hii, with some advice from SO [see the details on my previous questions if you are interested] i developed the system, which i think is quite strong for bot to automatically post comment !
I'm posting my code so you can view it and post some valuable comments !!
Any kind of constructive suggestion is welcome :) ... | php | security | bot | null | null | 05/11/2011 13:03:27 | off topic | Anti-Bot comment system - PHP
===
Hii, with some advice from SO [see the details on my previous questions if you are interested] i developed the system, which i think is quite strong for bot to automatically post comment !
I'm posting my code so you can view it and post some valuable comments !!
Any kind of cons... | 2 |
6,733,806 | 07/18/2011 13:41:19 | 849,840 | 07/18/2011 10:33:07 | 1 | 0 | jQuery issue in IE | This function works fine in Chrome but not working in IE, I'm not able to access $(".availabilityLightbox") in IE but it works fine in Chrome, pls suggest some aletnatives so that I can use this function in both Chrome and IE.
{
var url1 ='<@core.basePath/>sp/availability/populate';
$(".availabilityLightbo... | javascript | null | null | null | null | null | open | jQuery issue in IE
===
This function works fine in Chrome but not working in IE, I'm not able to access $(".availabilityLightbox") in IE but it works fine in Chrome, pls suggest some aletnatives so that I can use this function in both Chrome and IE.
{
var url1 ='<@core.basePath/>sp/availability/populate';
... | 0 |
5,983,634 | 05/12/2011 19:49:58 | 578,204 | 01/17/2011 07:42:57 | 6 | 0 | Installing Enhanced Power Kernel On Nokia N900 | I want to install Enhanced linux power kernel on n900,but m in bit fear becoz of reflashing if it didn't work properly.
Can any one let me know the pros and cones of installing Enhanced Linux power kernel??
Thanks. | linux-kernel | kernel | power | maemo | n900 | 05/13/2011 01:00:04 | not a real question | Installing Enhanced Power Kernel On Nokia N900
===
I want to install Enhanced linux power kernel on n900,but m in bit fear becoz of reflashing if it didn't work properly.
Can any one let me know the pros and cones of installing Enhanced Linux power kernel??
Thanks. | 1 |
10,225,574 | 04/19/2012 09:50:37 | 1,316,485 | 04/05/2012 23:33:25 | 1 | 0 | Urban Airship compile errors | Here is what I have, I can't get this to work. I have uninstalled and redownloaded and followed instructions to the letter. I have double and tripled checked the header paths. I have all of the files linked and set for not using ARC.
The libraries that are linked including the libUAirship.
I do have all of t... | urbanairship.com | null | null | null | null | 04/20/2012 12:15:50 | not a real question | Urban Airship compile errors
===
Here is what I have, I can't get this to work. I have uninstalled and redownloaded and followed instructions to the letter. I have double and tripled checked the header paths. I have all of the files linked and set for not using ARC.
The libraries that are linked including the ... | 1 |
8,653,665 | 12/28/2011 08:42:29 | 366,064 | 06/14/2010 06:25:51 | 71 | 13 | Some of WPF functionalities does not work on another computer | We've developed a desktop application using .NetFX3.5 which has some winforms and two WPF windows. **I've installed it on almost 20 different computers (most of them have XP) and all are working fine except for one PC** (which also has XP and relatively new hardware specs).
Here is the situation:
- `WPFWindow1` c... | c# | wpf | desktop-application | desktop-development | null | null | open | Some of WPF functionalities does not work on another computer
===
We've developed a desktop application using .NetFX3.5 which has some winforms and two WPF windows. **I've installed it on almost 20 different computers (most of them have XP) and all are working fine except for one PC** (which also has XP and relatively... | 0 |
3,513,073 | 08/18/2010 14:21:44 | 424,106 | 08/18/2010 14:21:44 | 1 | 0 | Android Sensor.TYPE_LIGHT unity | Does anybody knows the unity of the return value of Sensor.TYPE_LIGHT on Android ?
Thanks. | android | sensor | light | null | null | null | open | Android Sensor.TYPE_LIGHT unity
===
Does anybody knows the unity of the return value of Sensor.TYPE_LIGHT on Android ?
Thanks. | 0 |
9,924,274 | 03/29/2012 11:17:44 | 806,550 | 06/20/2011 11:40:04 | 620 | 24 | Maimum number of devices connected to an ADB server | According to [Android Debug Bridge][1] :
The server then sets up connections to all running emulator/device instances.
It locates emulator/device instances by scanning odd-numbered ports in the range 5555 to 5585, the range used by emulators/devices.
Where the server finds an adb daemon, it sets up a... | android | adb | null | null | null | null | open | Maimum number of devices connected to an ADB server
===
According to [Android Debug Bridge][1] :
The server then sets up connections to all running emulator/device instances.
It locates emulator/device instances by scanning odd-numbered ports in the range 5555 to 5585, the range used by emulators/devices.... | 0 |
3,207,281 | 07/08/2010 19:38:30 | 387,093 | 07/08/2010 19:38:30 | 1 | 0 | Tomcat 6 in Windows 7 | I am having problem with Tomcat 6.0 in Windows 7. I installed it to work with EasyEclipse Server Java and changed it's configuration to Manual. But now when I try to Configure Tomcat, I get " Access is denied Unable to open the service 'Tomcat6' ". Also now when I start and stop Tomcat within EasyEclipse I get the foll... | windows-7 | tomcat6 | null | null | null | 07/31/2011 22:22:24 | off topic | Tomcat 6 in Windows 7
===
I am having problem with Tomcat 6.0 in Windows 7. I installed it to work with EasyEclipse Server Java and changed it's configuration to Manual. But now when I try to Configure Tomcat, I get " Access is denied Unable to open the service 'Tomcat6' ". Also now when I start and stop Tomcat within... | 2 |
11,037,751 | 06/14/2012 16:47:53 | 1,171,620 | 01/26/2012 15:46:15 | 774 | 29 | How to publish FLV file to media server? | I have FLV file in local directory. Is it possible to publish it to media server with Flash technology?
I am trying the following but it causes "One of the parameters is invalid" in `appendBytes()` call.
protected function publishButton_clickHandler(event:MouseEvent) : void {
sourceFile = n... | actionscript-3 | flash | flv | flash-media-server | null | null | open | How to publish FLV file to media server?
===
I have FLV file in local directory. Is it possible to publish it to media server with Flash technology?
I am trying the following but it causes "One of the parameters is invalid" in `appendBytes()` call.
protected function publishButton_clickHandler(event:... | 0 |
3,243,895 | 07/14/2010 06:42:26 | 260,768 | 01/28/2010 08:24:09 | 3 | 0 | Is there a virtual machine for javascript ? | Is there a virtual machine for javascript? | javascript | null | null | null | null | 07/14/2010 06:46:59 | not a real question | Is there a virtual machine for javascript ?
===
Is there a virtual machine for javascript? | 1 |
6,104,223 | 05/23/2011 23:33:37 | 65,387 | 02/12/2009 03:01:00 | 12,334 | 474 | WPF SaveFileDialog DefaultExt ignored? | var dlg = new SaveFileDialog();
dlg.FileName = "graph";
dlg.DefaultExt = ".bmp";
dlg.Filter = "PNG|*.png|DOT|*.dot|Windows Bitmap Format|*.bmp|GIF|*.gif|JPEG|*.jpg|PDF|*.pdf|Scalable Vector Graphics|*.svg|Tag Image File Format|*.tiff";
The extension always defaults to `.png`. It seems the `Default... | wpf | controls | savefiledialog | null | null | null | open | WPF SaveFileDialog DefaultExt ignored?
===
var dlg = new SaveFileDialog();
dlg.FileName = "graph";
dlg.DefaultExt = ".bmp";
dlg.Filter = "PNG|*.png|DOT|*.dot|Windows Bitmap Format|*.bmp|GIF|*.gif|JPEG|*.jpg|PDF|*.pdf|Scalable Vector Graphics|*.svg|Tag Image File Format|*.tiff";
The extension alwa... | 0 |
7,968,329 | 11/01/2011 14:55:00 | 877,581 | 08/03/2011 22:52:03 | 1,501 | 110 | Doctrine: how to update an object | I use doctrine 2.1
I have two objects for the same record, one persisted and one not persisted. Instead of rewriting all properties, I would like to assign ID to the new one and call persist() in hope the proper row will be updated. In pseudo code it can look like this:
$a = new A(name: "a", value: "new")
... | php | doctrine2 | null | null | null | null | open | Doctrine: how to update an object
===
I use doctrine 2.1
I have two objects for the same record, one persisted and one not persisted. Instead of rewriting all properties, I would like to assign ID to the new one and call persist() in hope the proper row will be updated. In pseudo code it can look like this:
$... | 0 |
1,287,757 | 08/17/2009 12:42:39 | 73,332 | 03/03/2009 18:01:10 | 85 | 14 | FormatString question | Is there a built in FormatString or a way to use a custom FormatString to take:
$150.00
$1,170.00
$12,170.00
$90.00
$38.00
$750.00
And format them like:
<pre>
$ 150.00
$ 1,170.00
$ 12,170.00
$ 90.00
$ 38.00
$ 750.00
</pre>
without knowing the largest value? This is in a ... | stringformat | gridview | asp.net | null | null | null | open | FormatString question
===
Is there a built in FormatString or a way to use a custom FormatString to take:
$150.00
$1,170.00
$12,170.00
$90.00
$38.00
$750.00
And format them like:
<pre>
$ 150.00
$ 1,170.00
$ 12,170.00
$ 90.00
$ 38.00
$ 750.00
</pre>
without knowing the l... | 0 |
10,475,732 | 05/07/2012 01:34:30 | 483,876 | 10/22/2010 06:30:57 | 317 | 1 | Are salted passwords obsolete? | I heard that nobody uses Rainbow tables these days, instead they use GPUs, so you should rely on computationally expensive hash function. Is it true? | security | null | null | null | null | 05/07/2012 22:57:28 | off topic | Are salted passwords obsolete?
===
I heard that nobody uses Rainbow tables these days, instead they use GPUs, so you should rely on computationally expensive hash function. Is it true? | 2 |
3,342,567 | 07/27/2010 10:12:43 | 403,251 | 07/27/2010 10:12:43 | 1 | 0 | what is jquery CSS frame work and how to use the frame work for giving look and feel to the website? | what is jquery CSS frame work and how to use the frame work for giving look and feel to the website? and how to give skins?
Give me how to implement jqueyUI css class and id to maintain consistent look and feel to the entire site? any demos ? | jquery | css | jquery-ui | themes | null | 07/28/2010 14:43:37 | not a real question | what is jquery CSS frame work and how to use the frame work for giving look and feel to the website?
===
what is jquery CSS frame work and how to use the frame work for giving look and feel to the website? and how to give skins?
Give me how to implement jqueyUI css class and id to maintain consistent look and feel t... | 1 |
6,797,669 | 07/23/2011 01:27:54 | 756,456 | 05/16/2011 22:28:06 | 69 | 0 | MVC Controller Design Better Practices | What are the suggest practices to design the controllers, controller methods and views?
I know this is a generic question but is there some sort of suggestions in place?
For instance, I found maybe it makes sense to have one HomeController which does the job of the page switching (often initiated by sidebar/men... | mvc | null | null | null | null | 07/23/2011 22:41:27 | not a real question | MVC Controller Design Better Practices
===
What are the suggest practices to design the controllers, controller methods and views?
I know this is a generic question but is there some sort of suggestions in place?
For instance, I found maybe it makes sense to have one HomeController which does the job of the pa... | 1 |
11,280,022 | 07/01/2012 06:28:37 | 1,493,925 | 07/01/2012 06:16:46 | 1 | 0 | updating and retrieving in disconnected architecture | Assuming that I am running a DOTNET project which uses SQLServer database as backend and iam having some 10 users entering and updating data regularly at the same time. I am populating a Dataset to read and write to the database.
If one user retrieves all the information from the database into dataset and gets discon... | c#-4.0 | null | null | null | null | 07/02/2012 14:05:08 | not a real question | updating and retrieving in disconnected architecture
===
Assuming that I am running a DOTNET project which uses SQLServer database as backend and iam having some 10 users entering and updating data regularly at the same time. I am populating a Dataset to read and write to the database.
If one user retrieves all the ... | 1 |
4,251,648 | 11/23/2010 00:31:12 | 511,134 | 11/17/2010 17:53:27 | 1 | 0 | Hardware virtualization - Hypervisor query | How will a hypervisor reflect a change whenever there occurs a change in the guest page table of the guest OS.
How is the correspondence maintained between guest page mapping and shadow page mapping?
One way is write protecting the memory addresses. Whenever there will be write into a guest page table, there will... | table | page | virtualization | shadow | hypervisor | null | open | Hardware virtualization - Hypervisor query
===
How will a hypervisor reflect a change whenever there occurs a change in the guest page table of the guest OS.
How is the correspondence maintained between guest page mapping and shadow page mapping?
One way is write protecting the memory addresses. Whenever there w... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.