text stringlengths 8 267k | meta dict |
|---|---|
Q: How can i see SQLite Database (No emulator)? For development , sometimes we need for a faster programming , the SQLite database state of our programs . But i can only extract database if it's on emulator , not mobile .
Then my exactly question is ¿Is there a way to see the android sqlite db or a way to extract it?
I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632767",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: How does git find subtree, when we use subree merging strategy? How does git find subtree, when we use subtree merging strategy? I find only one mention here: "It actually guesses the subtrees that you want to merge. Usually, this magically turns out to be correct, but if your subtree contains a lot of changes (or w... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632771",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: Plone Authentication failing for only 1 user (Apologies for being new to Plone - previous administrator has moved on.)
One of our Plone users is failing to authenticate to Plone but we cannot find any reason for it. She logs into Novell successfully and tries to access Plone pages to edit them and the LDAP authentic... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632772",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: ThreadPools from different processes Task Parallel Library is a great wrapper around ThreadPool that ensures close to optimal use of all cores. This means not only spawning threads but also limiting the amount of active threads in order not to overwhelm the system with by too many active threads. For instance two co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632774",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: jQuery - datatable plugin - sorting issue I'm using DataTables plugin from http://datatables.net.
The plugin it self is very useful,but I have a big of a problem with it.
It is return a list of address for some searches in the following format.
1 Main Street
12 Main Street
13 Main Street
14 Main Street
...
2 Main St... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632778",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: How to include(attach) javascript to a certain PHP Control (Class) I'm writing php and I have a custom made control that is Grid and I would wanna know how to attach its javascript with it and everytime someone uses that control the javascript will be included automatically and if it's already included then it shoul... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632781",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Export GridView to multiple Excel sheet I have two Gridview in my Web application.I need ,while clicking the (ExcelExpot) button the values to be Export in Excel Accordingly Sheet1 and Sheet2.
protected void ExportToExcel()
{
this.GridView1.EditIndex = -1;
Response.Clear();
Response.Bu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632782",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "7"
} |
Q: FMS 4 playing P2P stream with RTMFP Proper disclosure: I posted this question on the Adobe forums too. Since I didn't get any answer - I am posting it here. Sorry if it disturbs.
We are working with FMS 4 server for a while for a 2 directions video application, and it works great with RTMP.
We now want to use its rt... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632787",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Content-Length and httpCompression dilemma My ASP.NET app returns JSON object to user, it contains binary encoded data. Due to this I decided to enable HTTP compression and the problem begun with Content-Length.
If I enable compression the Content-Length header is ignored while response s send and connection is not... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632789",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to access Safari history from iPhone App using Private Frameworks I got a situation something like, i can use Private Frameworks of Apple in order to know the operations being performed on iPhone Safari( i.e History the Tabs being browsed and time spend on browsing kind of info).
I have gone through some of the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632792",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Asp.net custom control and javascript function There's a custom a asp.net control named PhoneTextBox2. It uses ext.net library, but I doesn't matter.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="PhoneTextBox2.ascx.cs"
Inherits="Loginet.Web.Controls.PhoneTextBox2" %>
<script type="text/javascrip... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632803",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to make a select option change options in another select I have two drop down. SelCurrentManuf and selCurrentModel. I want the option in selCurrentModel to change depending on the option selected in selCurrentManuf. How do i do it?
<asp:DropDownList runat="server" ID="selCurrentManuf"></asp:DropDownList>
<asp:Dr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632810",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: What is the proper way to work with files in C++? I'm studying C++, now I'm reading about working with files. As I have read, there is quite a lot of variants. So I wanna ask, what is the right way to work with files in C++? Using fstream(ifstream and ofstream)? I have read some opinions that fopen works much faster... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632812",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How do I make MVC discard requests with verbs other than specified in the constraint? In my MVC application I want behavior as was previously specified in <httpHandlers> in web.config, namely that if I register a handler like this:
<system.webServer>
<handlers>
<add name="processData" verb="POST" path="p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632816",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How can I determine touch screen device in a bash script? I am trying out the eGalax touch screen driver for my touch screen, as an alternative to the evdev/xinput_calibrator combination.
The calibration tool that comes with the eGalax driver, TKCal, takes the device to which the touch screen is connected as a comma... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632819",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Asynchronous ADO.NET I'm trying to write an asynchronous server that queries a SQL Server database and am concerned that my DB side is too synchronous. Specifically, I can call ExecuteReader asynchronously but cannot then call reader.Item asynchronously and is where 57% of the time is spent (blocking my precious thr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632820",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "7"
} |
Q: FreeMarker how to find corresponding java classes I am investigating large project that uses FreeMarker. I am newbie to FreeMarker. How I can find which classes of java are used to receive values for templates? Investigate all project seems enormous work.
Thanks.
May be need some plugins for Eclipse?
A: FreeMarker ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632826",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how to draw a ImageView in the middle of the screen? (programatically) I want to draw a simple ImageView in the middle of the screen, horizontally and vertically. But i want to do it without using XML files, i need to do it programatically.
I tryed with the next code, but it doesn't works fine, it draws the image a ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632829",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to upload a file in a directory containing the record ID on Symfony I have a file upload form in the frontend.
At the moment, when a new record is created, the file is uploaded to
%sf_data_dir%/files/
but due to some business logic I need the file to be uploaded to
%sf_data_dir%/files/%record_id%/
Therefore t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632832",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Check SQLite Database exists Is there a way of checking that a sqlite database exists in blackberry? I have seen a suggestion that you can check it through the sdcard by going to media -> explore -> media options, however I am working on a simulator and do not have a sdcard.
A: If you are testing on Simulator you ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632835",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to create subitems menus under the application name on OSX? How to add TMenuItem under Project1 and above Quit on the screenshot below?
I have created a TMenuBar with property UseOSMenu checked.
The first TMenuItem I added is the second one in the main bar...
A: You can do this by assigning a TMenuBar of IItem... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632838",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "7"
} |
Q: Cant Post To Facebook with Graph API iPhone i have implemented this sample code below to get a connection to the user feed post
- (void)viewDidLoad
{
[super viewDidLoad];
facebook = [[Facebook alloc] initWithAppId:@"197765190297119" andDelegate:self];
NSUserDefaults *defaults = [NSUserDefaults standardU... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632842",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Walking, bicycle and public transport directions with time required in each mode , iPhone I am using following url to get driving directions between two locations.
NSString* apiUrlStr = [NSString stringWithFormat:@"http://maps.google.com/maps?output=dragdir&saddr=%@&daddr=%@", saddr, daddr];
What changes need to b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632844",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Dependency injection into a static class
Possible Duplicate:
Configure Property of a static class via spring .net
I want to inject the value for a property inside the static class using spring .net.
Code snippet:
Public static Abc
{
Public static IInterface IInterface{get;set;}
}
here i want to inject the IInter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632847",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Struts2 - how to generate internationalized url's? I have an application that needs to redirect to several internationalized urls, ie
*
*www.mydomain.com/us/myapp/xxx.action
*www.mydomain.com/fi/myapp/xxx.action
*dwww.mydomain.com/de/myapp/xxx.action
We have a proxy server where the url is mapped to myapp/xxx... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632850",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Is there a way to actively listen on bluetooth audio channel? I want to be able to use the bluetooth headset as a microphone.
Is it possible to set it to microphone mode?
A: Yes, you have to use startBluetoothSco()
This method can be used by applications wanting to send and received audio to/from a bluetooth SCO h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632852",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to find the count of elements using jQuery I have a span tag and that holds some n number of span tags.. can I get the number of span tags available with in the parent span using Jquery.
example:
<span class="x">
<span id="1">one</span>
<span id="2">two</span>
<span id="3">three</span>
</span>
now i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632855",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "9"
} |
Q: How do I create a route for matching all paths starting with a given prefix? In my MVC application I want to create a route such that when a user requests a URL starting with a prefix some specific action is invoked.
For example, I want a route that would map processData{whatever} onto an action so that when a user ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632859",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is there a reason why ('img').load doesn't work (jQuery)? I have a set of images that I wanted to load first before executing the next line of code. The code is like:
$('div.some_class img').load(function() {
// do something to div.some_class img
});
However, the images do not load before executing the commands... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632860",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Facebook PHP API constructor - is local variable ignored for a reason? Caveat : I am not a PHP guru by any stretch - hopefully someone can explain what this code is doing - why is he applying something to a local variable ($state) and then ignoring it? This code is in the 3.1.1 php sdk and I noticed it when debuggi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632862",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Auto-web test : ExpectedResponseUrl error While running my auto-web test, I received this message :
Response URL Validation The value of the ExpectedResponseUrl properity 'http://localhost:4800/FirstPage.aspx' isn't equal to the effective response URL 'http://localhost:4800/SecondPage.asp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632864",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Setting.bundle only for app store configuration - iOS I'm trying to find a way to have setting.bundle for Debug Configuration but not to have it for App Store release.
I tried to write a pre build script that deletes the Setting.bundle file in case it's not Debug, however because the setting.bundle is being copied a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632865",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: JSF 2.0/Facelets - JavaScript characters get encoded as html entities I'm using jQuery inside Faceletes template. The problem is that special characters are encoded as html entities, eg if (y >= top) { to if (y >= top) {
I'm using JSF 2.0 with Glassfish 3.
A: Try this
<script type="text/javascript">
//<![CDATA[
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632867",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: GridView Paging is not working? I have a grid in that i am using this code on page init
UpagedList = new PagedListAdapter<User>(UserListGridView);
UpagedList.MaxRows = ConfigurationService.DefaultPageSize;
UserListGridView.PageIndexChanged += delegate
{
Presenter.FillDataO... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632872",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to add comments to Drupal 7 in PHP using Drupal Services Module As far as I know, Drupal Services Module can allow PHP scripts to communicate with Drupal 7. But how to add a comment to a post using this module?
Example will be appreciated.
A: here is the testcode that does exactly that
http://drupalcode.org/p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632876",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: .HTACCESS REWRITE Hi I need to rewrite this :
http://www.xxx.co.uk/holidays/resort/courchevel/chalet/chalet-xx/pricing.html
to this:
http://www.xxx.co.uk/holidays/courchevel/chalet-xx/pricing.html
though the chalet name and resort changes so i would need the $1 and $2 in there i think
thanks in advance for any hel... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632878",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: ERROR/ActivityManager(98): Reason: keyDispatchingTimedOut i playing live video from api in my app. when i click play video then Progress dialog will come in between progress when i press back button 2 or 3 times of device then after some times it will give this error
ERROR/ActivityManager(98): Reason: keyDispatchin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632880",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why doesn't this work (NavigationService on Singleton)? public class Navigator : PhoneApplicationPage
{
private static Navigator _instance;
private static object _lock = new object();
public static Navigator Instance
{
get
{
lock (_lock)
{
if (... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632886",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Counting total per day with my result in SQL I have 50 rows/entrys in my table Orders. I have a column, that holds when the order is claimed at, named claimed_at.
The date in this field are in this format: 2011-10-03 07:07:33
This is in the format (yy/mm/dd time).
I also have a column called price, this price is how... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632894",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: FileIOException: File already exists error on blackberry i get thumbnail image using fileconnection.
I get image using thread constructor. I pass the url and get image.
If the two image url are same , i got exception "FileIOException: File already exists "
My code is here.,
FileConnection fConn = null;
try
{
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632895",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Workflow Fails to Compile and Publish in SharePoint Designer 2010 The SharePoint install is a SP2010 install on a 2008 R2 server. Everything is fully patched. I am running the SP Designer on the SharePoint Server directly.
I have a workflow which is intended to send an email when a new document is created in a custo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632898",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Reading xls file in Cocoa For my application development, I am using MAC OS, Cocoa and objective-c.
In my application, I have following 2 requirements.
1)Reading of xls file saved in 'UTF-16 Unicode Text' format.
If I saves xls in above format, file type is becoming Text and extension is becoming .txt.
I have used [... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632901",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: How to extract images from running .Net application? I would ask about just ".net application" but my app is obfuscated, encrypted and compressed, and I cannot get anything from just a binary file on the disk.
This is my own app, and because of disk crash, I had to retrieve it from SVN. It appeared that I didn't inc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632904",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Expected response to be a <:redirect> but was <200> I've got an issue with my rspec tests and having looked through previous questions I haven't been able to resolve it. The test fails with the above error but the code works in practice, does anyone know how to resolve this?
Rspec:
describe "authentication of edit/u... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632905",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: BlazeDS / Tomcat Configuration I'm new to blazeDS/Tomcat..
I made a Flex application that communicates with a blazeDS server...
Everything works good, I have only one problem, the console app is accessible from everywhere (local network, internet), I'd like to secure it, with password or something else...
I have no... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632906",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pyro and file sequencing When I add new files through patch it messes up File Sequence table and at the same time the size of the patch becomes the same as the size of the product installation. I'm using PatchGroup element to overcome this behavior but as the number of new files added through the patch grows it beco... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632907",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Permission to Send data Is there a permission to send data to the server ?
Because my data sent to the server when I use java project but when the code written in android project the data can not be uploaded.
Thanks...
A: Do you have Internet permission in Manifest file? If not, add this
<uses-permission
a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632908",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Rails - do AJAX update using HTML template Apologies if this is asked before, but I can't find it...
I've got a page with a button bar that I need to update as the state of the page changes. The button bar is rendered with a partial.
The user can update the state with various AJAX actions on the page, and I'm doing... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632916",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: "DisableCreatedUser" is not working properly I am using a ASP.NET CreateUserWizard to registering users.
I wanted user to not automatically log after registration until they login manually.
<asp:CreateUserWizard ID="RegisterUser" runat="server" EnableViewState="false" RequireEmail="false"
DisableCreatedUser="tr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632923",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Multiple UIPickerView with same data in one view. How can I get the content of both picker? I have 2 UIPickerviews with the same data.
At the moment sb is clicking the save-Button I want to get the data from both PickerViews.
I already set a tag to both pickers and I also implemented the function:
- (NSString *)pic... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632932",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to add Service archive generator and code generator plugin in Eclipse I have downloaded Service archive and code generator wizard plugin for Eclipse (From http://axis.apache.org/axis2/java/core/tools/index.html). I am following steps mentioned here http://axis.apache.org/axis2/java/core/tools/eclipse/plugin-ins... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632933",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to log all the errors on exception in C# and then show?
I've written some code, in C# windows forms, binded to validation button.
The code is here: my validation button. The code is checking validation of an XML file with XSD schema. If exception occurs then it throws the exception text into textbox and program... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632941",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Groovy: indexes of substrings? How do I find the indexes of all the occurances of a substring in a large string -
(so basically ,and extension of the "indexOf" function) . Any ideas?
Current situation:
def text = " --- --- bcd -- bcd ---"
def sub = "bcd"
text.indexOf(sub)
// = 9
I want something like:
def text... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632942",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: save Contact in isolated storage in windows phone 7 c# Can I save Contacts in Isolated Storage in Windows phone 7 ? and How can I access it in c# ? and which is the best way to save it using linq to sql or Files or Values ?
A: No No No, you can NOT save even one Contact Object of type "Microsoft.Phone.UserData.Cont... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632945",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Create a windows panel that is invisible that still accepts click message I'm using c++/cli with visual studio 2010 express edition.
What I want to do is create a panel that is invisible but that still accepts/receives the click and double click messages and possibly other mouse input. If I set the controls visibili... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632951",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I need advise choosing a NoSQL database for a project with a lot of minute related information I am currently working on a private project that is going to use Google's GTFS spec to get information about 100s of Public Transit agencies, their routers, stations, times, and other related information. I will be getting... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632952",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: How to get user name in session bean when redirected to error page? Can anyone tell me how to get user name in session bean correctly? In our application we do it by calling this method:
@Resource
private EJBContext _context;
private String getUserName() {
return _context.getCallerPrincipal().getName();
}
And ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632954",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: memory increase in meego when use PageStack When I use pagestack to move between pages, the memory of device increases.
Please see memory increase when use PageStack to see more clearly my problem
| {
"language": "en",
"url": "https://stackoverflow.com/questions/7632958",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Possible to change Window background colour of a Dialog without a theme? At the moment I extend a Dialog and use the constructor Dialog(Context context, int theme) to set the background colour via a theme. This dialog is an overlay, so it sits above everything showing on the screen. The theme is as follows:
<style
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632960",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Inserting html into the current tab through chrome extention? I am trying to insert some extra code into the current tab page in chrome using an extension
i.e add a submit button on top of the page. Where does this go? and how would I initialize every page like this?
A: If you put this in your manifest.json,
"cont... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632962",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Numpy: find first index of value fast How can I find the index of the first occurrence of a number in a Numpy array?
Speed is important to me. I am not interested in the following answers because they scan the whole array and don't stop when they find the first occurrence:
itemindex = numpy.where(array==item)[0][0]
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632963",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "127"
} |
Q: CSS - Nested table border showing. How do I stop this? I am using ie 8.
I have the following CSS where I want to show the border for the outer table, but not the table nested inside one of the cells;
table#ScheduledLeaveCalendar
{
table-layout:fixed;
}
/* Calendar that shows annual leave */
#ScheduledLeaveCalendar
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632964",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Find string in URL - joomla/jQuery I've got a "simple" problem that I can't get my head around, I want to search my URL, and find either /nl/ or /en/ or /fr/ and add a class to the body accordingly.
I've searched high and low and can't seem to find the right answer.
The URL is build "cleanly', so it reads: www.mysit... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632965",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Seam and Spring does anyone know any good site which talks about Spring 3 and Seam 2 integration. I am really struggling to find something on this on the net. we are thinking about moving to spring 3 from EJB 3. i will really appreciate any good site suggestion. also a humble request to you is to keep the discussion... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632969",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Need information on ethernet bootloader for AT32UC3A0512 I am planning to develop ethernet bootloader. So I wanted to modify the existing DFU Bootloader program. I want to delete the already existing bootloader on micro-controller flash and put my own bootloader.
Currently my MCU is AT32UC3A0512. I am using AVR Drag... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632971",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Email log4j errors to different groups Am using log4j for my error reporting. Ive set my log 4j to also append errors to emails. However i need it to send emails to separate groups depending on the level of the message. For example
info messages go to management- john@management.com, peter@management.com, sim... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632975",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: codeigniter arabic keyboard form validation In my code I provided the form validation like 'alpha'. But when we will use the arabic keyboard, I am getting an error message 'District only contain alphabetic characters'.
How to solve this issue?
A: I think you may rather modifying in the core libraries of Codeigniter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632981",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Need python Regex for handling sub-string I want to check where the string (Product Name) contains the word beta, Since I am not so good in regex writing :
eg.
"Crome beta"
"Crome_beta"
"Crome beta2"
"Crome_betaversion"
"Crome 3beta"
"CromeBerta2.3"
"Beta Crome 4"
So that I can raise error that this is not valid ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632986",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: How to gather info similar to panopticlick.eff.org I saw that the website http://panopticlick.eff.org/ gather info about your browser, which makes you unique, even without cookies or IP tracking.
My question: How do you use javascript to see this info?
A: There's a download in this article on corephp.com that inclu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7632995",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: How to change url's in Joomla I have created a website and my client want that the URLs shows in tab according like Login URL is www.domain.com/index.php?option=com_user&view=login and he want that there will be set in url www.domain.com/login instead of this. So please tell me how can I do this I am new in Joomla
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633001",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Is there a online Javadoc for the Phonegap Android API? I'm searching for the Javadoc of the Phonegap Android API, for the classes like DroidGap and the others in the phonegapp jar.
I didn't find it on the Phonegap site or wiki.
Is there an online version of this documentation ? Is this part of the support ?
Thank ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633006",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "6"
} |
Q: how to save the xml tag result when we click on the save button? hi all i have xml code like below
<root>
<key>
<Question>Is the color of the car</Question>
<Ans>black?</Ans>
</key>
<key>
<Question>Is the color of the car</Question>
<Ans>black?</Ans>
</key>
<key>
<Question>Is the news paper </Question>
<Ans>wallstre... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633010",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Releasing OpenCV IplImage crashes the application? I have an problem freeing up memory allocated for an IplImage.I have given a similar situation as in my application below.(it reflects the same bug occurs in my application.)
But instead of the line
char* originalData=loadedImage->imageData;
I get my "originalData... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633016",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Permalink, .htaccess pretty urls I'm really sorry if i'm annoying you guys but this is my final question in regards to .htaccess tricks
I need wordpress style, 'pretty permalinks'
But It's too confusing for me.
I need, this url http://test.com/?page=test&ID=1 to be http://test.com/test/NAMEFROMDATABASE
How? I know h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633018",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: why can a CacheDependency be invalid right after creating it! (ASP.NET-MVC3) Whenever I make a CacheDependency in a testbed, it works fine.
If I write
var dep = new CacheDependency(null, new string[] { "dep" });
dep will be a new CacheDependency, with the properties: HasChanged = false, UtcLastModified = the curren... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633020",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Add button to Window Border I have a WPF window with property WindowStyle="SingleBorderWindow".
Now I want to know how to set a button on left upper corner of the window border.
A: You probably need to use window chrome library which is described here.
A: I assume this is so you can re-create the Minimize/Maximiz... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633021",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Android, How can I extract mobile information? I want to collect some information of mobile phone such as phone number, which brand it is, model of the device and product name.
I know how to extract phone number but i don't know the rest. if it's possible guide me please.
[EDITED]
Thank you dear friends, I did what ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633023",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I add certain commands to .bash_history permanently? I use bash and I sometimes have to type some very long commands for certain tasks. These long commands are not regularly used and generally gets overwritten in .bash_history file by the time I use them again. How can I add certain commands to .bash_history... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633026",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Why does my large 5D array cause a stack overflow exception only as a member variable? I'm currently writing a program where I need to run many simulations and speed is the name of the game. I'm currently using one long linear array allocated on heap and working out the dimensions myself and pulling straight from th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633029",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Template pgettext-like tag In Django templates there is a {% trans %} tag for intenationalizing templates. It behaves like ugettext() function.
Is there also a tag behaving like pgettext() in django templates, where I can specify message context?
A: Yes, there is, but it'll be in the upcoming Django 1.4 or you can ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633033",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Runtime.exec doesn't compile java file I compile java file by Runtime.exec("javac MyFrog.java");
It says no errors, doesn't output anything, but doesn't create MyFrog.class file.
if i write Runtime.exec("javac") it outputs to output some help text.
So I understand that program is working, but don't create class file... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633035",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: JQuery AJAX response with 200, but no response data, for some remote URL There are several questions on Stack Overflow saying cross domain AJAX request etc will not work because of security reasons. Some questions like this explain this. (Please let me know if I am wrong.)
This is working perfectly fine:
$(document)... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633036",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: PHPUnit cannot read Session ( CodeIgniter and CIUnit ) I am using CodeIgniter 1.7.2 and CIUnit v.0.17
I am fairly new to PHPunit so please bear with me on this one. I have set-up phpUnit project extended with CIUnit to test an app built in the codeigniter framework. My problem is that when I run a test I have writ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633040",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Compiler error message with cout I mistyped the error message before. It is fixed now.
I'm currently getting the following compiler error message
error: no match for 'operator<<' in 'std::cout << Collection::operator[](int)(j)'
The code that the compiler is complaining about is
cout << testingSet[j];
Where testing... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633044",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to create dynamic embed function? Is it possible to create dynamic embed function in ActionScript3
for example like this
public function embedImage(path:String):Bitmap{
[Embed(source = path, mimeType = "image/png")]
var NewBitmapClass:Class;
var image:Bitmap=new ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633048",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: how to stop current process of C# application and start another function I am explaining my scenario, i have a function which print 1 to 10000 while printing i have to stop the process and let user know the current i value and if user presses enter it should continue again.
i am using
if ((Console.KeyAvailable) && ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633052",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Load png files in XNA I am trying to load all png files from smoe directory( named "bee") but getting an exception that dir. does not exist.
Also, i am sharing the code.
Plese help where i am doing mistake
private List<string> LoadFiles(string contentFolder)
{
DirectoryInfo dir = new DirectoryInfo(th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633055",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to create space between buttons? I am already creating multiple buttons but I don't know how to align the buttons.
My code is here:
- (void)viewDidLoad
{
//self.title=@"Asset Management";
[super viewDidLoad];
listOfItems = [[NSMutableArray alloc] init];
[listOfItems addObject:@"User Information"];
[listOfItem... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633066",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: File not found error with FMOD FMOD_OUTPUTTYPE_WAVWRITER_NRT i'm trying to run FMOD in WAVWRITER_NRT mode. I was modifying the example bundled with FMOD, but I always get an error on FMOD_System_Init. It says that the file cannot be found.
I thought it would create a file to write output to. I have also tried placin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633068",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Manually packaging data for CakePHP's save() I'm trying to package up some data for the save() function in cakephp. I'm new to PHP, so I'm confused about how to actually write the below in code:
Array
(
[ModelName] => Array
(
[fieldname1] => 'value'
[fieldname2] => 'value'
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633076",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Search for multiple words in very large text files (10 GB) using C++ the fastest way I have this program where I have to search for specific values and its line number in very large text file and there might be multiple occurences for the same value.
I've tried a simple C++ programs which reads the text files line b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633077",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: What does cassandra do during compaction? I know that cassandra merges sstables, row-keys, remove tombstone and all.
*
*But i am really interested to know how it performs compaction ?
*As sstables are immutable does it copy all the relevant data to new file? and while writing to this new file it discard the tom... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633082",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "8"
} |
Q: Why is there a SELECT 1 from table? I came across a fictitious SQL, i am not sure what is the original intend, it looks like:
SELECT COUNT (*)
INTO miss
FROM billing b
WHERE b.network= network1
and NOT EXISTS (SELECT 1 from vas NV WHERE NV.network =
b.network);
Why is there a select 1, and not exists?
A: There ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633086",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "21"
} |
Q: button control php page include because of considering embed google ads into include page. I am giving up jquery.loading
(google not allow jquery ajax and jquery loading for ads, now even iframe page)
so is it possible use other javascript method for control php page include?
more explain, if my page need to inclu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633087",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to remove UIImage Background color and make it transparent? I wanted to remove UIImage background color and make it transparent...
I tried this but the following code just changing White background color into Black Color.
UIImage* createColorMaskedImage(UIImage* originalImage){
float maskingColors[6] = {0xEE... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633090",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Mapping thread id from top to gdb I am using top to see the thread wise cpu usage using
top -H -p `pgrep app.out`
It is showing some pid for each thread like
4015
4016
I had attached gdb to the application using gdb attach command.
Now I want to switch to thread 4015 which is showing inside top o/p.
How can ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633092",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Insert missing comma (perl) Line:
výkonná produkce: Martin Scorsese, Timothy Van Patten střih: Kate Sanford, Tim Streeto herec(s): Hong Eun Hee (Mi Geum (soţia lui Sang Ok)) Han Hee (Jang Mi Ryung) Kim Yoo Mi (Yoon Chae Yeon) Jae-ho Song (Im Bong Hoek (tatăl lui Sang Ok))
I want insert, with perl, missing comma lik... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633096",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to attach a number to a movie clip This is what I am trying to achieve but I do not remember the syntax in AS2 if someone could please help.
public function highlightCan() {
var glowId = String(this);
var newId = glowId.substring(47);
trace ("newId : " + newId);
new Tween(_parent._glow["newId"],... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633098",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: How to create a .app file of my java project to run on mac os I am new to mac. I have a java project. I created a exe of that project using launch4j for window. Now I need to create a application for mac. I java project contains 5 java classes, also referred to some external jars. I found this site http://www.cente... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633099",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: MySQL Encrypt returns true on wrong field with numbers as salt I'm not totally sure how to describe this so the easiest way is with a test case. The running the following sql will return three rows on the select. My understanding of encrypt tells me that this shouldn't return any rows.
It only happens when the salt ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7633103",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.