Unnamed: 0
int64
65
6.03M
Id
int64
66
6.03M
Title
stringlengths
10
191
input
stringlengths
23
4.18k
output
stringclasses
10 values
Tag_Number
stringclasses
10 values
3,692,254
3,692,255
traversing an object tree
<p>I'm trying to find information on different ways to traverse an object tree in python. I don't know much about the language in general yet, so any suggestions/techniques would be welcome.</p> <p>Thanks so much jml</p>
python
[7]
4,612,528
4,612,529
asp:RequiredFieldValidator
<h2>This is my first question in stackoverflow.com. I am working on a school project which I have to validate the input from the user. Everytime the page load, it give the server error message. Please see the codes, and the error message after.</h2> <pre><code>&lt;div&gt; &lt;table&gt; &lt;td&gt; &lt;asp:RadioButton I...
asp.net
[9]
2,248,878
2,248,879
Getting all startup items?
<p>Ok, I guess I'm having a brain fart here and cant find my way out of it. What I'm trying to accomplish is to list all startup items (applications, processes, etc) and display them on a form (like what you get with msconfig.exe). I thought this code would do it:</p> <pre><code>private List&lt;StartupItems&gt; getSta...
c#
[0]
5,235,312
5,235,313
Is that possible to call finish() after some time of application's invisible state?
<p>Is that possible to set a timer which would work on background and triggered on <code>onStop()</code>, i.e. when application goes off the user's screen? I need to "kill" the application so it will start from scratch after some time being invisible to the user.</p>
android
[4]
3,291,620
3,291,621
jQuery - create an array containing images located in a server folder
<p>I'm pretty new to jQuery and I am trying to achieve the following solution. </p> <p>I am using a nice image carousel/slider that requires me to have a div on the page containing the images that I want the carousel to use. I want the flexibility to put images in a folder instead of hard coding them, and the images...
jquery
[5]
3,065,628
3,065,629
Creating a dynamic embed code
<p>I'm having issues creating a dynamic embed. I basically need it to change dynamically (e.g index.php?channel=randomname), but I want it so when they input the name it changes the name in the embed to what they put. </p> <pre><code>&lt;object type="application/x-shockwave-flash" data="http://www.justin.tv/w...
php
[2]
3,129,649
3,129,650
Can one programmatically generate the focused image for an ImageButton?
<p>I'm porting an application from iPhone to Android. The iPhone app has artwork for some dozen or more buttons in their normal and pressed state. That translated over just fine to Android. However, we of course currently don't have any images for the "focused" state.</p> <p>Besides the work involved in creating all t...
android
[4]
2,894,517
2,894,518
i want to compare names in two different tables and then equal get details
<p>i have two different tables.I want to compare the names in two tables,if both the names are equal then i want to get the details.how can i do that? please help me.</p> <p>Here is the code: </p> <pre><code>Cursor cr=mDbManager.fetchnewcustomerdata(); Cursor cr1 = mDbManager.fetchinvoicecustomerdata(); ...
android
[4]
5,061,932
5,061,933
question about inline keyword
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/3212571/usefulness-of-the-inline-feature">Usefulness of the &ldquo;inline&rdquo; feature</a> </p> </blockquote> <p>why is used inline keyword in c++?</p>
c++
[6]
1,783,503
1,783,504
Is there a reversed function for mysql_escape_string?
<p>So that I can change string like <code>I\'ll go</code> back to <code>I'll go</code></p>
php
[2]
4,938,109
4,938,110
What tools do you use to look up in android reference?
<p>Currently, i am using a chrome plugin called "Android SDK Reference Search". But it can only search class. I want to search certain method in a class. <br> For example, i want to search <code>onCreate</code> method in <code>android.app.Activity</code>. After i input something like <code>Activity#onCreate</code> then...
android
[4]
4,803,907
4,803,908
Jquery - How list id elements contained from a div
<p>If I have a div like this:</p> <pre><code>&lt;div id="box"&gt; &lt;div class="but" id="1"&gt;Text 1&lt;/div&gt; &lt;div class="but" id="2"&gt;Text 2&lt;/div&gt; &lt;/div&gt; </code></pre> <p>How can I create an array of all IDs of the <code>.but</code> elements contained in the <code>#box</code> div?</p> <p>...
jquery
[5]
1,764,352
1,764,353
Return numeric value and addClass
<p>I need to find the numeric value inside a div and add a class accordingly. How do I find the numeric value? This seems to only return class of 'medium' so far.</p> <pre><code>&lt;h4 class="days"&gt;Over &lt;span class="filterUrgency"&gt;71&lt;/span&gt; Days&lt;/h4&gt; $('.days').addClass(function() { if ($('.f...
jquery
[5]
154,159
154,160
Access Tableview Cell in some other methods
<p>How to access a table view cell in some other user defined methods other than those predefined methods for tableview???</p> <p>Plz help... Thanx in advance...</p>
iphone
[8]
538,845
538,846
Trouble centering simple jquery sideshow with nav under
<p>Im currently recoding my site. Keeping it very minimal. But I am having trouble getting the links nav to behave properly. I want them to sit underneath the images about 50px's. Currently on the nav div I have a margin-top value of around 550px. But once you get it on a different size screen it obviously will be high...
jquery
[5]
3,940,172
3,940,173
Physical constness of a class
<p>I'm studying "The C++ Programming Language" from Bjarne Stroustrup and he talks about logical and physical constness of a class. </p> <p>The example of logical constness is something like:</p> <pre><code>class A { int m; void func() const { m++; } //forbidden } </code></pre> <p>It's possible to bypass thi...
c++
[6]
5,390,080
5,390,081
SIGXFSZ on ideone.com?
<p>I want to print repeated characters in a string in ascending order. This code compiles but gives a <code>SIGXFSZ</code> runtime error with no output on online c++ compilers... any suggestions?</p> <pre><code>#include &lt;iostream&gt; #include &lt;string.h&gt; #include &lt;ctype.h&gt; using namespace std; int main...
c++
[6]
2,121,479
2,121,480
How to clear the search bar history
<p>I am working on google quick search bar; I know it is easy to clear the history if I extend the class <code>SearchRecentSuggestionsProvider</code>. </p> <p>However, are there any way that I can save and clear the history without extending the class SearchRecentSuggestionsProvider?</p>
android
[4]
3,463,046
3,463,047
Panel not displaying when it should be
<p>So in my very small program I am generating a random percentage and based off that percentage it should display one of two panels. However, it is only ever displaying one.</p> <p>Here is my code:</p> <pre><code>Random random = new Random(); private void button1_Click(object sender, EventArgs e) { b...
c#
[0]
1,877,803
1,877,804
ImageView - draw translucent color on top for its focused state?
<p>I have an ImageView, I'd like a selector such that when the user clicks or otherwise has focus, a translucent color is drawn on top of the ImageView content. I'm not sure if this is possible with selectors (which I've been defining ok in the past with static drawables). </p> <p>But basically I have a listview with ...
android
[4]
4,702,876
4,702,877
Storing and retrieving user files on a different server / sub domain
<p>I'm looking for some quick info about best practices on storing user's uploaded files on different servers or sub domains...</p> <p>For example, photos on facebook of course arent on facebook.com/files/users/453485 etc... but rather on photos.ak.fbcdn.net or whatever...</p> <p>I'm wondering how with php i can upl...
php
[2]
3,474,719
3,474,720
How to get the names of applications seen on home screen in android?
<p>I want to create a list of applications seen on the home screen in android. </p> <p>Presently i am using the following code : </p> <pre><code> List&lt;ApplicationInfo&gt; packs = pm.getInstalledApplications(0); </code></pre> <p>But this returns all the installed applications but i require only the applications ha...
android
[4]
4,123,662
4,123,663
complie error: X does not exist in the current context
<p>The name 'MenuItems_Click' does not exist in the current context. should i named it anywhere in ContextMenuStrip?thanks</p> <pre><code>private void icnNotify_Click(object sender, EventArgs e) { // Create a new instance of the Favorites class Favorite.Favorites objFavorites = new Favo...
c#
[0]
442,554
442,555
c++ operator= method for const references
<p>I am writing class with a const reference like this:</p> <pre><code>class B; class foo { const B&amp; b; foo(const B&amp; newb): b(newb) { } void operator=(const foo &amp; foo2) { // This does not work foo.b = foo2.b; } }; </code></pre> <p>I am trying to define a working operator= Obvious...
c++
[6]
1,348,257
1,348,258
Exporting data programmatically from an application
<p>In my iPhone application,i have a registration screen contains user name, address,Phone number etc. Now i need to export this data and mail it. How can i export the data programmatically from my screen.Any help?</p> <p>Thanks in Advance.</p>
iphone
[8]
4,326,393
4,326,394
Is there any possibility to convert a varbinary image to its file path in C#?
<p>I want to retrieve the image from the database on edit.</p> <p>But I want it to appear as its file path (which was uploaded previously).</p> <p>My idea is to convert varbinary to byte[], byte[] to image using MemoryStream and Image to its file path..</p> <p>Is it possible and can anyone help me with it</p>
c#
[0]
1,791,502
1,791,503
Python Parallel Threading
<p>so basicly I created this program that adds values to redis. So far I get this for time:</p> <pre><code>real 0m27.759s user 0m18.129s sys 0m5.580s </code></pre> <p>however when I tried to run multiple threads:</p> <pre><code>if __name__ == '__main__': try: for x in range(0,NUM_THREADS): T...
python
[7]
209,061
209,062
Unusual problem with multiple return in Python
<p>When I call the function "<code>G()</code>" which returns two values: <code>p_T</code> and <code>q_T</code> twice (see below) but using the same style, that's, <code>P_T, neg = G(); U, Ign = G()</code> and print sums of <code>P_T</code> and <code>U</code>, I get two different answers! Another thing is that both answ...
python
[7]
1,638,028
1,638,029
How to compare elements and merge if condition satisfies within arraylist?
<p>i have list of trades, each trades has some attributes like source now, from the list of trades, i want to get all trades that have same source value and combine them together into one trade, for example </p> <pre><code>tradeName quote source quantity price Google GOOG ...
java
[1]
715,666
715,667
To PHP experts: How to master PHP?
<p>How many years of experience is needed (on average) for someone to "master" PHP? What specific projects does he/she need to accomplish in PHP so he/she can consider himself/herself a good PHP programmer?</p>
php
[2]
872,133
872,134
Can we make such a class which is not inherits Object class
<p>Can we make such a class which is not inherits Object class directly or indirectly in java.</p>
java
[1]
5,720,148
5,720,149
how does google voice do this
<p>When you select new message, you have the option to go to google voice, this is also present when you look at something in your inbox and hit reply. How do they do that? I'm talking about the google voice android app.</p>
android
[4]
5,188,248
5,188,249
For Loop Issue, 'i' does not return to zero
<p>I'm not sure how else I can get a loop going that checks to find the letter, checks if it's capital or not by adding a 'C' (or not), and continues with the rest of the characters in the string. I'm not very good at explaining what's happening here as I'm sort of new with C#. But 'i' in the 'for' loop never gets rese...
c#
[0]
4,692,368
4,692,369
What happens when I pass a totally different argument name in a function?
<p>Let's say I have this function:</p> <pre><code>def print_a_line(line_count, f): print line_count, f.readline() </code></pre> <p>I call it by:</p> <pre><code>current_line = 3 print_a_line(current_line, current_file) </code></pre> <p>What happens now? line_count = 3 or will it be line_count= current_line = 3?...
python
[7]
4,093,823
4,093,824
Arithmetic operator return type
<pre><code>int main(int argc, char **argv) { unsigned char a = 10, b = 100; std::cout&lt;&lt;sizeof(a-b)&lt;&lt;endl; return 1; } </code></pre> <p>Output: <code>4</code></p> <p>What is the return data type?</p>
c++
[6]
4,435,525
4,435,526
Send Email using MFMailComposeViewController
<p>Currently I have a UITextView field with the CheckBox "Detect Links" checked. The contents of the field will always be an email address.</p> <p>What I want to do is allow the users to tap the email address and the mail composer open inside of my app. </p> <p>I have read how you implement sending an email inside of...
iphone
[8]
2,653,335
2,653,336
Launch External Process With Time To Live
<p>I need to launch an external process, that at times, will lock up. I have no control over this process. I'm looking for a way to launch an external process in c#, killing it if it takes over N seconds.</p>
c#
[0]
3,828,480
3,828,481
i want get the sum of files size in folder by php
<p>i have an folder 'files' ok i want know the sum of size of its files</p>
php
[2]
2,140,615
2,140,616
Transfer data from Windows7 to Windows Mobile 6.5 via USB Cable
<p>I am using Windows7 operating system and i want to make application for transfer data from Windows7 to Windows Mobile 6.5 via USB Cable. I don't know that how to start coding for that application. any one have some idea for that pls share with me....</p> <p>thanks. </p>
c#
[0]
1,740,199
1,740,200
Cannot read text file in C++
<p>I am stumped by this simple problem. I am reading a text file with C++: </p> <pre><code>std::ifstream stream; stream.open(filename); if (!stream) cout &lt;&lt; "Invalid stream" &lt;&lt; endl; </code></pre> <p>And <code>!stream</code> is true but there seems to be nothing wrong with the text file. Under what...
c++
[6]
4,220,388
4,220,389
dumb data object holds all common values c++, is this correct
<p>So I am new to c++ and I'm writing for a scientific application.</p> <p>Data needs to be read in from a few input text files.</p> <p>At the moment I am storing these input variables in an object. (lets call it inputObj).</p> <p>Is it right that I have to pass this "inputObj" around all my objects now. It seems li...
c++
[6]
1,734,545
1,734,546
rating system without reloading a page
<p>i have a page on which i have some rating function like people who like the post can rate up or who don't can rate down.</p> <p>on that link im calling a php file with some parameters passed in the anchor tag. Then in that php file im saving that rating with +1 or -1 (whichever is the case) in the database and afte...
php
[2]
3,222,748
3,222,749
Populating One Select Box Based on the Selection in Another Select Box - JQuery?
<p>I am trying to populate one select box based on the selection made in the first select box. I've looked online, and found a lot of helpful information on hard-coded options, but I need my options to come from a query (like cfquery in coldfusion). I know that a cfquery is server-side, so I cannot include it in my jqu...
jquery
[5]
5,766,225
5,766,226
How to build Android Custom Firmware Image
<p>I have an Android Tablet that is no use for me, as I have just upgraded to an iPad. Now I am just thinking of learning some internals of Android, for that I decided to start with learning how to build a custom firmware image with my own boot images/animation, applications and logos. But I don't know how to proceed w...
android
[4]
376,330
376,331
How To Set delivery notification whether mail successfull or failure?
<pre><code>HtmlEmail email = new HtmlEmail(); email.setHostName(ip); email.addHeader("X-ListMember", to); email.addTo(to); email.setFrom(from,fromdisplay); email.setSubject(subject); email.setHtmlMsg(message); email.send(); System.out.println("welcome"); </code></pre> <p>how to solve</p>
java
[1]
171,146
171,147
Getting error while using .Val() in jquery
<p>I am using JQuery and I have got below JQuery Code sample.</p> <p><strong>JQuery Code:</strong></p> <pre><code> $.ajax({ type: "POST", url: "Login.aspx", // Send the login info to this page data: str, success: function(result) { // Show 'Submit' Button ...
jquery
[5]
2,439,762
2,439,763
PHP: passing Arrays from server to client not working!
<p>The server Contents are server.php:</p> <pre><code>&lt;?php $err["foo"]="bar"; ?&gt; </code></pre> <p>The client.php</p> <pre><code>&lt;?php require 'server.php'; echo "&lt;p&gt; Server says: $err['foo']&lt;/p&gt;"; ?&gt; </code></pre> <p>But,This code works : The new server Contents are server.php:</p> <pre><...
php
[2]
2,160,489
2,160,490
can anybody tell how to use the traceview tool in android
<p>I want the test performance of my applicaton .I know have to use trace view tool but don't know how to use .can anybody tell how to use traceview tool with example</p> <p>Thanks</p>
android
[4]
1,632,874
1,632,875
how to consult the base class of a class
<p>Recently i am learning something about unicode in python2.7, and i want to know something about the base class of str, unicode, basestring, etc. and the relations of them, but i can't find a proper way to look up the base class of them expect read the source code.</p> <p>e.g.</p> <pre><code>class child(A): pas...
python
[7]
3,817,346
3,817,347
Why is 4 not an instance of Number?
<p>Just curious: </p> <ul> <li>4 instanceof Number => false</li> <li>new Number(4) instanceof Number => true?</li> </ul> <p>Why is this? Same with strings: </p> <ul> <li><code>'some string' instanceof String</code> returns false</li> <li><code>new String('some string') instanceof String</code> => true</li> <li><code...
javascript
[3]
4,125,658
4,125,659
Python: Problems mocking an instance
<p>I am having problem mocking an object to test a descriptor.</p> <p>This is the code of the descriptor:</p> <pre><code>class Text(object): def __init__(self, default_value=u'', validators=[]): self.validators = validators self._value = default_value def __set__(self, instance, value): ...
python
[7]
1,006,730
1,006,731
How save list of objects onStop/onPause of activity in android
<p>Lately writing some app I've been stopped by one problem.</p> <p>In this app I have two activities: A and B. In activity A I am downloading list of objects from web each time when GPS coordinates change. To this activity there is connected bound service with GPS and Internet connection call. Those objects are then ...
android
[4]
5,069,005
5,069,006
Foreach Loop not passing all values as expected
<p>I am trying to loop through an array comprised of IP addresses collected from a text file. The ultimate goal of this is to retrieve the host name for each IP. My problem is I am only getting results from the last IP in the array. I figured it would be pretty simple, but I am clearly missing something.</p> <pre><cod...
php
[2]
4,369,582
4,369,583
Finding a number in a text file and outputting that line of data
<p>I'm having trouble looping through the content of a text file, searching for a number and then once found, outputting the data on the line which the number exists.</p> <p>At the moment, no matter what number you specify, it will always output the first line of the text file.</p> <pre><code>cout &lt;&lt; endl &lt;&...
c++
[6]
4,980,273
4,980,274
How can I create an interface without parameterless constructor in C++?
<p>How can I hide the default constructor from consumers? I tried to write in private but got compilation issues.</p> <p>solution is:</p> <pre><code>class MyInterface { public: MyInterface(SomeController *controller) {} }; class Inherited : public MyInterface { private: Inherited () {} publi...
c++
[6]
3,190,163
3,190,164
PHP - Replace space between words with something
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/6042802/how-to-replace-a-string-contains-space-with">how to replace a string contains space with -</a> </p> </blockquote> <p>I want to replace blank space between words with something.</p> <p><strong>Example, I...
php
[2]
4,887,316
4,887,317
Formulating my div objects in such a way that it resembles a sine wave
<p>So the basic idea is that I have an array of 8 div rectangles with a width of 30 px and a random height through Math. rand. Right now I'm trying to arrange them such that they form a sine wave pattern. I know I have to use Math.sin somewhere, but I have no clue as to go about it. Any help with this issue will be gre...
javascript
[3]
6,020,674
6,020,675
ASP.net: dynamically load web user control
<p>I have a asp.net web page with place holder control and Menu control when user select an item from the menu. It will dynamically load the control based on menu item's value.</p> <p>I got the control loaded but if i click on the a link button or anything on the web user control (.ascx) The web user control (.ascx) w...
asp.net
[9]
5,604,032
5,604,033
How to sort a list using my own logic (not alphabetically or numerically)
<p>I've spent the last 30 mins looking through existing answers for what I think is a common question, but nothing quite hits it for me. Apologies if this is a dupe.</p> <p>I've got a list of objects.</p> <pre><code>List&lt;Journey&gt; journeys; </code></pre> <p>The object has a 'status' property - this is a string....
c#
[0]
3,191,195
3,191,196
How to get next year from the current date in iphone?
<p>I have implemented calendar application in which i want to get next year from the current date.I don't know how it possible. Please help me for this query.</p> <p>Thanks in advance.</p>
iphone
[8]
4,947,393
4,947,394
What is the best way to implement storage for a hit counter in ASP.NET?
<p>I am creating a hit counter which serves to keep track of how many people accessed a particular page. The table which holds this information contains the page_id, ip_address, and timestamp (when the IP address accessed the page).</p> <p>The "issue" I'm having is which is the best way to save this information. If I ...
asp.net
[9]
3,699,923
3,699,924
Need a simple maintainable design pattern for a game in Android
<p>I have a simple game</p> <p>It displays a list of items that the user selects from with game timer.</p> <p>I am using native Android widgets in an Activity and a Service to control the game. This has turned out to be cumbersome and my Activity is getting bloated and difficult to maintain.</p> <ol> <li>I have a t...
android
[4]
1,030,672
1,030,673
How to select particular field in address book in iPhone
<p>i am working on one app and in that i have to open the address book, i have used ABPeoplePickerNavigationController to open address book and in that have stored phone number and email for all the user, however i didnd't know how to store the value of phone number or email, suppose if user clicks on email field the e...
iphone
[8]
307,837
307,838
How to focus away from an EditText?
<p>In my application I need to make something happen when an EditText loses its focus. When editing an EditText I can't make it lose its focus. In windows phone there is the this.Focus(); method but here in android it doesn't seem to be the same. How can I do???</p>
android
[4]
2,156,664
2,156,665
Android Audio Control to forward and Reverse
<p>I am creating a custom Audio Player. So far I am able to add features such as Audio streaming, volume control, Duration, Progress bar etc. I have to add feature where user can touch a slider and jump audio to skip some part. Is there any way to do this?</p>
android
[4]
2,022,573
2,022,574
How to use different URLs for Simulator and Device
<p>I am building a Web application.</p> <p>When I am testing it on a simulator, I want to typically use a local loop back URL e.g. localhost because the test may mess up the data on a real server. When I want to test/release on a Device, I want to use a real server.</p> <p>I can change the value manually, of course, ...
iphone
[8]
4,627,039
4,627,040
Why won't PHP retrieve my $_SESSION variables?
<p>I was making a login system for a site today and had finished up all the code and everything was working fine. I pushed the changes to get and came back a few hours later to start developing again. Everything was working fine and I changed no code, then sessions stopped working. Now even very simple code will not wo...
php
[2]
2,448,484
2,448,485
Android: How to get an XML layout from a different contentview
<p>I am in the contentview of seekbarlist.xml and need to get the layout of seekbars.xml. I need to send the layout to CustomSeekBar constructor. Below, you can see that I tried to set the content view to one layout, grab it, then switch to the other. This will not work b/c I have to extend listactivity and the layout...
android
[4]
1,446,362
1,446,363
Variable as the property name in a JavaScript object literal?
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/695050/how-do-i-add-a-property-to-a-javascript-object-using-a-variable-as-the-name">How do I add a property to a Javascript Object using a variable as the name?</a><br> <a href="http://stackoverflow.com/questions/...
javascript
[3]
2,886,359
2,886,360
What does product() do in python?
<p>what does product do in python? How can it be replaced? what are all it's capabilities. what does the <code>*</code> sign do? How do you test it without getting the generator warning message thing</p> <pre><code>&lt;itertools.product object at 0x0159BD00&gt; </code></pre>
python
[7]
263,848
263,849
Using UrlConnection Openstream mutiple times in a loop
<p>I have a application on android where I want to read data from a url on the 3g and wifi interface of my phone. I am using the following code</p> <pre><code>read_data() { url = new URL("http://0xbadc0ffee.de/plHUGE.txt"); UrlConnection conn = url.openConnection; reader = new BufferedInputStream(conn.getInputSt...
android
[4]
4,289,228
4,289,229
How to create an Android Library Project including Referenced Libraries?
<p>I want to create a common Android Library(jar).So I am create an Android Library project in Eclipse.In this project I am included some other open source Libaries(jar),that is specified under Referenced Library in Android Library Project.The main jar file is generated under the bin option.But when I am using the jar ...
android
[4]
1,229,509
1,229,510
connecting my application to wamp server
<p>I am new to android. I want to display my localhost (wampserver) Page on a click of a button.</p> <p>I have tried using <code>httppost</code> method but it is not displaying anything just a blank mess. If I give a wrong addres then it is throwing error message.</p> <p>All help is appriciated</p>
android
[4]
5,985,513
5,985,514
Meaning of "this" for a struct (C#)
<p>According to MSDN (Section 11.3.6 of the <a href="http://download.microsoft.com/download/3/8/8/388e7205-bc10-4226-b2a8-75351c669b09/CSharp%20Language%20Specification.doc" rel="nofollow">C# spec</a>):</p> <blockquote> <p>Within an instance constructor of a struct, <code>this</code> corresponds to an <code>out</c...
c#
[0]
3,159,563
3,159,564
Updating variables in PHP after declaring them once
<p>Is it possible to update variables in PHP?</p> <p>Like declare the variable in the head of the file, and then inside a switch case update the variable?</p> <p>I'm trying to get it so that it changes the page in the title as so [Website] - [Page visiting [Eg. Home/About Us/Contact Us]]</p>
php
[2]
4,903,586
4,903,587
Saving images from an associative array
<pre><code>$object = json_decode(file_get_contents('https://api.500px.com/v1/photos/?feature=user&amp;username=nsz&amp;consumer_key=xxx'), true); </code></pre> <p>This object have the following structure:</p> <pre><code>Array ( [0] =&gt; Array ( [id] =&gt; 176621 [name] =&gt; *** [descript...
php
[2]
1,375,530
1,375,531
How to release my view from stack?
<p>In my application I m using following coding convention to open my default screen :--</p> <pre><code>AppDelegate *ptrDefaultScreen = (AppDelegate *)[[UIApplication sharedApplication]delegate]; [self.navigationController presentModalViewController:ptrDefaultScreen.FrmFlashScreenLink animated:YES]; </code></pre> ...
iphone
[8]
3,723,493
3,723,494
Use onBackPressed to save a file
<p>I want to allow users to save a list of favourite items from a list, so I display the full list using a Listview with checkboxes, and the user will check or uncheck items in the list.</p> <p>When the user presses the back button, I want to be able to save the checked items out to a separate file on the SD card.</p>...
android
[4]
1,625,356
1,625,357
Browsing local directories and files with php
<p>Instead of the traditional navigation, I am trying to emulate the terminal navigation, or how you navigate with vim. Example:</p> <pre><code>.. index otherfile </code></pre> <p>This is my code:</p> <pre><code>$dir = realpath(dirname(__FILE__)); if(is_dir($dir)){ if($open = opendir($dir)){ while(($file...
php
[2]
15,520
15,521
if there any better way to read bb function souce code.i was very faint
<pre><code>in python ,if a.py from b import bb bb() b.py from c import cc def bb(): do someting else cc() c.py from d import dd def cc(): do someting else dd() d.py from e import ee def dd(): do someting else ee() e.py from f import ff def ee(): do someting else ff() </code></pre> <p>to Understo...
python
[7]
1,830,926
1,830,927
Display String and number together in tableview
<p>I am trying to concatenate and display string and number together in a table view cell. Is there any mechanism to convert both of them together to a label string?</p>
iphone
[8]
2,351,955
2,351,956
How to extract number and String in java
<p>i want to extract number and add these numbers using Java and String remain same.</p> <p>String as-</p> <pre><code>String msg="1,2,hello,world,3,4"; </code></pre> <p>output should come like- 10,hello,world</p> <p>Thanks</p>
java
[1]
987,485
987,486
Is it possible to initialize a View from different Layout?
<p>I have an <code>Activity</code> and associated with it <code>layout</code>. Also I have another <code>layout</code> with some <code>Views</code>. I want to initialize a variable (<code>TextView</code>) from my <code>Activity</code> using a <code>View</code> from that standalone <code>layout</code>. I always get <cod...
android
[4]
2,599,312
2,599,313
how to set the button unusable ,after successful install a apk?
<p>everyone ,i have a peoblem here ,when i install a apk the system wiil show a install Dialog ,one is "open",the other one is "done",how can i set the "open" button unusable and when user click "done",it will show the activity that i want to show?thanks!</p>
android
[4]
1,953,494
1,953,495
Struct implicit vs empty constructor
<p>Considering the following struct :</p> <pre><code> struct S { public string s; } </code></pre> <p>What is the difference between 1 : </p> <pre><code> S instance = new S(); instance.s = "foo"; </code></pre> <p>and 2 :</p> <pre><code> S instance; instance.s = "foo"; </code></pre> ...
c#
[0]
2,638,235
2,638,236
iphone+Webservice whihc gives shorten url in responce
<p>I want the webservice in json OR in xml which gives the shorten url in response. I have to implement the webserivce in iPhone application.. The webserivce Example If i give <strong>HTTP://WWW.GOOGLE..COM</strong> in request</p> <p>Then it give <strong>http://goo.gl/fbsS</strong> in response. Please do provide me...
iphone
[8]
5,642,654
5,642,655
simple asp.net webforms ul li menu with selected class
<p>I have a simple unordered list with links in it.</p> <pre><code>&lt;body&gt; &lt;div id="topMenu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a class="selected" href="../Default.aspx"&gt;Start&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../Category/ShowAll.aspx"&gt;Categories&lt;/a&gt;&lt;/li&gt...
asp.net
[9]
4,992,239
4,992,240
What should I do when the android activity is interrupted?
<p>I currently have a program where a user fills information out and sends it to a server. It then downloads a one to two MB file to device. I have it setup so the phone does not sleep when it is downloading the file, but it is interrupted when the user manually presses the sleep button or a text comes in to the phone....
android
[4]
802,761
802,762
How can I use corertelephony framework in iPhone
<p>I need to include coretelephony framework in my App. I am using jailbreak phone. Is there any sample code available for it.</p> <p>Please healp Thanks SD</p>
iphone
[8]
5,801,349
5,801,350
How to use the value of one variable when checking the existence of another
<p>I want to be able to check the existence of up to, but often less than, 6 consecutively named variables using a FOR loop thus:</p> <pre><code>for ($i = 0; $i &lt;= 5; $i++) { $vartocheck = "$var_".$i; if ($vartocheck) { echo $vartocheck." exists!"; } } </code></pre> <p>Now I know the above doesn't w...
php
[2]
2,703,299
2,703,300
Insert selected text on the page into textarea (jQuery)
<p>Need to insert selected text on the page into textarea. There must be some button to do it.</p>
jquery
[5]
704,714
704,715
Php "Parse error: syntax error, unexpected T_STRING"
<p>hi there i am setting up a simple html php form. the php is:</p> <pre><code>&lt;?php $name = $_POST["name"]; $email = $_POST["email"]; $devices = $_POST["devices"]; $games = $_POST["games"]; $apps =$_POST["apps"]; $beta = $_POST["beta"]; $stuff = array(); //($stuff, "&lt;html&gt;", "name=", $name, "&lt;br /&gt;",...
php
[2]
3,840,168
3,840,169
PHP is_writable() returns true but file_put_contents() returns false
<p>I'm having trouble writing to a file even though <code>is_writable()</code> returns true. Of course, the file exists and is apparently readable. Here is the code:</p> <pre><code>$file = "data"; echo file_get_contents($file)."&lt;br&gt;"; echo is_writable($file) ? "is writable&lt;br&gt;" : "not writable&lt;br&gt;"; ...
php
[2]
3,266,259
3,266,260
easier way to create grid than creating 900 controls c#.net
<p>I'm trying to write a program that creates a 30x30 grid of 20px x 20px boxes. When you click on a box in the grid it changes the color of the box and stores the RGB value of it and the x,y coordinates (hidden in the box). So basically I'm making a simple paint program. The purpose of it is to assist me in programmin...
c#
[0]
5,776,562
5,776,563
JavaScript - Check if absolute coordinates (left, top, right, bottom) are going to be visible on the current viewport
<p>Hey guys I have an absolute position for an element that will be created in the future. I want to check if the element is going to be entirely visible on the current viewport. I know I could use <code>getBoundingClientRect</code> if the element was rendered on the page, however it's not and it couldn't not be. Is th...
javascript
[3]
2,527,473
2,527,474
jquery .on('change' IE issues
<p>I have read a few posts mentioning an issue with jquery .on('change' see below.</p> <p><a href="http://stackoverflow.com/questions/208471/getting-jquery-to-recognise-change-in-ie/1080243">Getting jQuery to recognise .change() in IE</a></p> <p><a href="http://stackoverflow.com/questions/9328598/jquery-on-change-in-...
jquery
[5]
5,164,756
5,164,757
getting the index of starting and ending 1 of a binary list having a sequence of 0s or 1s
<p>I have a python list with binary information having either a sequence of 1s or a sequence of 0s for example:</p> <pre><code>event = [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1] </code></pre> <p>How can I store the index values of the starting 1 and endin...
python
[7]
519,815
519,816
Why does Java allow such strange code using inner class to pass compilation?
<p>Hi I tried below code while learning Java inner class. So surprising it passed compilation but could not work in run-time. My understanding is for inner class it must be instantiated in an instance of the top class. </p> <p>But why JDK compiler allow such code to pass compilation? I am using JDK 6. </p> <pre><code...
java
[1]
1,830,332
1,830,333
How to get selected values from combobox which is placed in DataGridView
<p>I am tring to get selected values from Combobox which is placed in DataGridView using following code</p> <pre><code> DataGridViewComboBoxColumn dgvcmb = new DataGridViewComboBoxColumn(); dgvcmb.HeaderText = "Tran_Mode"; for (ni = 0; ni &lt; dTable.Rows.Count; ni++) { dgvcmb.Items.Add(...
c#
[0]
2,582,864
2,582,865
Python - Sending HTTP request at same time
<p>Hey guys I have looked at the best ways to do this. I want to make sure I understand correctly.</p> <p>If I want:</p> <p>http1 http2 http3 http...</p> <p>To be sent at exactly the same time. I should set these up into a thread and then start the thread? I need to make sure it is exact same time.</p> <p>I thin...
python
[7]