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 |
---|---|---|---|---|---|
4,183,255 | 4,183,256 | Android bluetooth service name | <p>Is there any way that I can get the service name of the BT discovered device. My bluetooth discovery logis is as follows</p>
<pre><code> startdiscovery()
{
boolean status1 = mBluetoothAdapter.startDiscovery();
}
BroadcastReceiver mReceiver = new BroadcastReceiver()
{
if (BluetoothDevice.ACTION_FOUND.equals(action))
{
if(intent.hasExtra(BluetoothDevice.EXTRA_DEVICE))
{
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
}
}
}
</code></pre>
<p>Here i know only the "SERVICE NAME" of the discovered device in STRING FORMAT.</p>
<p>bluetoothclass.hasService(int) - This API takes predefined SERVICE NAMES as an input parameter and return TRUE/FALSE. I can use this API as i know only the SERVICE NAME.</p>
| android | [4] |
4,006,936 | 4,006,937 | Creating checkbox when a checkbox is selected in javascript | <pre><code> var container = document.getElementById('container'),
template = '<li>\
<input type="checkbox">\
</li>\
<li>\
<input type="checkbox">\
</li>\
<li>\
<input type="checkbox">\
</li>';
container.onchange = function(e) {
var event = e || window.event,
target = event.srcElement || event.target;
if( target.checked && target.parentNode.getElementsByTagName('ul').length === 0 ) {
var ul = document.createElement('ul');
ul.innerHTML = template;
target.parentNode.appendChild(ul);
}
};
</code></pre>
<p>HTML: </p>
<pre><code> <ul id="container">
<li>
<input type="checkbox">
</li>
<li>
<input type="checkbox">
</li>
<li>
<input type="checkbox">
</li>
</ul>
</code></pre>
<p>I have create three checkbox. When one checkbox is selected another threebox appears beneath it and so on. Now the problem is how to assign unique id and onclick event to every checkbox</p>
| javascript | [3] |
949,794 | 949,795 | Measuring time between keystrokes in python | <p>Using the following code: </p>
<pre><code> >>> import time
>>> start = time.time()
>>> end = time.time()
>>> end - start
</code></pre>
<p>one can measure time between "start" and "end". What about measuring the time between specific keystrokes? Specifically, if a module was run and the user started typing something, how can python measure the time between the <strong>first</strong> keystroke and the <strong>enter key</strong>. Say I ran this script and it said: "Please enter your name, then press enter: ". I write Nico, and then press enter. How can I measure time between "N" and the enter key. This should be in seconds, and after pressing enter, the script should end. </p>
| python | [7] |
4,960,337 | 4,960,338 | Input field filter solution for jQuery | <p>Anyone know a good solution for filtering input using jQuery?</p>
<p>I'd like to do something like this:</p>
<p>$("#fieldname").InputFilter("###-###-####")</p>
<p>I would also like the visual interface to enforce and display placeholders for ###-###-####, #####, etc.</p>
<p>Regards.</p>
| jquery | [5] |
450,355 | 450,356 | Dynamically adding a control on ajax postback to the Page.Form? | <p>I have a simple web page test.aspx with the following code .</p>
<pre><code><body>
<form id="form1" runat="server">
<div>
<asp:TextBox runat="server" ID="_txt1" />
<asp:Button Text="Bu" runat="server" ID="_btn" OnClick="_Click" />
</div>
</form>
</body>
</code></pre>
<p>And the cs file as follows :</p>
<pre><code>protected void _Click(object s, EventArgs e)
{
Button btg = new Button();
btg.Text = "frfrfrfrfrfr";
this.Page.Form.Controls.Add(btg);
}
</code></pre>
<p>Works fine i create a control dynamically .</p>
<p>Now if i change the aspx to have a ScriptManager and the controls inside an UpdatePanel The control button is not created . And i want to add it to the Page.Form not has a control inside the UpdatePanel .Can anyone tell me what is it that i am doing wrong here ?? Thanks in advance.</p>
| asp.net | [9] |
2,012,314 | 2,012,315 | To know the logic behind it | <p>is there anybody who explain me this coding</p>
<pre>
public class FunctionCall {
public static void funct1 () {
System.out.println ("Inside funct1");
}
public static void main (String[] args) {
int val;
System.out.println ("Inside main");
funct1();
System.out.println ("About to call funct2");
val = funct2(8);
System.out.println ("funct2 returned a value of " + val);
System.out.println ("About to call funct2 again");
val = funct2(-3);
System.out.println ("funct2 returned a value of " + val);
}
public static int funct2 (int param) {
System.out.println ("Inside funct2 with param " + param);
return param * 2;
}
}
</pre>
| java | [1] |
4,219,188 | 4,219,189 | It is possible to split insert statment & update stament from merge query using java | <p>I have a merge query like this</p>
<pre><code>MERGE INTO dept a
USING (
SELECT 50 deptno
, 'ENGINEERING' dname
, 'WEXFORD' loc
FROM dual
) b
ON (a.deptno = b.deptno)
WHEN NOT MATCHED THEN
INSERT VALUES (b.deptno, b.dname, b.loc)
WHEN MATCHED THEN
UPDATE SET a.loc = 'WEXFORD, PA';
</code></pre>
<p>I need output like:</p>
<pre><code>INSERT VALUES (b.deptno,b.dname,b.loc)
UPDATE SET a.loc='WEXFORD,pA'
</code></pre>
<p>Can I achieve this by using substring any another simple way to do this.</p>
| java | [1] |
1,444,996 | 1,444,997 | killBackgroundProcesses does not work on SETTINGS? | <p>I want to kill the background process of SETTINGS by using killBackgroundProcesses. But it does not work without any errors? I use API(8) level 2.2 and having KILL_BACKGROUND_PROCESSES permission in manifest.</p>
<pre><code> ActivityManager activityManager = (ActivityManager)getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE);
activityManager.killBackgroundProcesses("com.android.settings");
</code></pre>
<p>"com.android.settings" is checked by getPackageName of getRunningTasks in ActivityManager.</p>
| android | [4] |
3,414,492 | 3,414,493 | How to make a relation between data table in data set | <p>I have one data set <code>DS1</code>. In this data set have two data tables: <code>DT1</code> and <code>DT2</code>
The layout of the data ables looks like this:</p>
<p>DT1 Data:</p>
<pre><code>**ID Name**
1 Amit
2 Alok
3 Munish
</code></pre>
<p>DT2 Data:</p>
<pre><code>**ID Name**
2 Alok
3 Munish
4 Firoj
</code></pre>
<p>I want to create a new table that looks like:</p>
<pre><code>**ID Name**
2 Alok
3 Munish
</code></pre>
| c# | [0] |
3,507,691 | 3,507,692 | Providing Arabic language support to an application | <p>I have a chat application . I want to give Arabic language support to my application.
Is there any way to change language when a user selects his language from a select box? The User requires to Write in Arabic in his text area.</p>
| jquery | [5] |
5,684,527 | 5,684,528 | jQuery How to check of element exceed browser window size and reposition it | <p>I have this code:</p>
<pre><code>var pos = $(this).offset();
var width = $(this).width();
userPreviewCon.css({
left: (pos.left + 30) + 'px',
top: pos.top + 15 + 'px'
}).fadeIn();
</code></pre>
<p>And this is for position popup window relative to element, that mouse is pointing.
But when element is close to window border, it show up and some of it is invisible, because part of tooltip exceed window size.
The question is how to reposition tooltip to no longer exceed window border ?</p>
| jquery | [5] |
5,494,619 | 5,494,620 | Sync iCal in Iphone appilication | <p>Cam we sync iCal in Iphone application?</p>
| iphone | [8] |
689,773 | 689,774 | How to do Image over like effect if google image search using jquery | <p>How to do Image over like effect like google image search using jquery.</p>
<p>In google image search result, when user mouse over it, display the image information div</p>
<p>how to achieve using jquery</p>
| jquery | [5] |
3,646,382 | 3,646,383 | Jquery add CSS if input empty on .keyup | <p>Im trying to add CSS to a input on keyup. If the input is empty add CSS. I've tried this...</p>
<pre><code> $(input).keyup(function() {
var input = $(this).attr('id');
if( input == "" ) {
$(input).css( "border", "1px solid #FB9E25" );
}
});
</code></pre>
| jquery | [5] |
3,876,158 | 3,876,159 | Regarding threads | <p>could you please provide me with a simple short program that shows the functionality of wait() notify()and notify all(), I am a new bie to Threads ,I want to clear my concepts ,I have googled but nothing to find simpler examples !!thanks in advance.</p>
| java | [1] |
5,047,021 | 5,047,022 | What are the implications of VMDebug.startGC in a traceview file | <p>What are the implications of VMDebug.startGC in a traceview file</p>
<p>The <a href="http://www.java2s.com/Open-Source/Android/android-core/platform-libcore/dalvik/system/VMDebug.java.htm" rel="nofollow">documentation</a> says:</p>
<pre><code>/*
* Fake method, inserted into dmtrace output when the garbage collector
* runs. Not actually called.
*/
private static void startGC() {}
</code></pre>
<p>But in my traceview I see something like this:
<img src="http://i.stack.imgur.com/c6lnh.jpg" alt="traceview"> </p>
<p>Mousing over the brown squares indicates that they are VMDebug.startGC() methods with each method taking roughly 17 real ms. The green squares are BitmapFactory.nativeDecodeAssetFunctions, they each take about 26 real millseconds. In this segment of code I am loading bitmaps for import as openGL textures.</p>
<p>What is the startGC() function?</p>
<p>I have a belief based on the function name and observing when its called that its somehow related to garbage collection, but the documentation contradicts me.</p>
| android | [4] |
3,208,345 | 3,208,346 | Will a variable in a php file accessable by other php files? | <p>At the beginning of a php file, I defined a variable <code>$id</code>, and use it in the rest of this file. I'm curious-- How long this <code>$id</code> will last? Will it be accessible by other php files that loaded after?</p>
| php | [2] |
589,533 | 589,534 | how to create .json file and how to write json object into json file ...In android | <p>I am using this code for creating the new file and write the json object in test.json file but I am unable to create file.Please find mistake and give the best result
One things I have also write the code for permission in manifest file..</p>
<p>Thanks,</p>
<pre><code>String fileName = "test";
File file = new File("/data/data/packagename/test.json");
file.createNewFile();
DataOutputStream fos = new DataOutputStream(openFileOutput(fileName , Context.MODE_PRIVATE));
if(file.exists()){
fos.write(jsString.getBytes());
fos.close();
}
</code></pre>
| android | [4] |
5,601,147 | 5,601,148 | when i run my code I get the following result []object object] [object object] but should be giving me an ordered array | <pre><code> var rangeArray= new Array();
rangeArray.push(parseRangeString(1, "< -4 & < 10"));
rangeArray.push(parseRangeString(2, "< 15 & < 19"));
rangeArray.push(parseRangeString(3, "<= 50 & <= 123"));
rangeArray.push(parseRangeString(4, "< -99 & < -23"));
rangeArray.push(parseRangeString(5, "< 7 & < 55"));
alert(rangeArray)
var orderedArray = orderRanges(rangeArray);
alert (orderedArray)
</code></pre>
<p>it has something to do with the code above but cant see it, could u help me</p>
| javascript | [3] |
2,318,011 | 2,318,012 | How to animate stuff when using -drawRect:? | <p>I didn't use subviews but painted my things with -drawRect: inside an UIView subclass. Now I want to do some animations in there.</p>
<p>I guess that I can't count on core animation now since I have no subviews. So how would I animate then? Would I set up a timer which fires like 30 times per second? How would I know the animation step? Would I make an ivar which counts the frame of the animation so that I can do my stuff in -drawRect as it gets called?</p>
| iphone | [8] |
5,650,311 | 5,650,312 | ANDROID: Possible to load an Activity into a SlidingDrawer view? | <p>I'm searching all over but cannot seem to find a answer to this.</p>
<p>I have my main HomeActivity view which contains a SlidingDrawer in the main.xml layout. The sliding drawer works fine. What I'd like to do though is that when the SlidingDrawer is opened, I want to launch a new activity in the sliding drawer view, and when the drawer closes it drops a result.</p>
<p>So in theory I'm looking at launching an activity with the startActivityForResult method and when the SlidingDrawer closes, processing the result? Is this at all possible or am I out to lunch? </p>
| android | [4] |
722,064 | 722,065 | Optimal Activity Stack Order for a Main Menu button? | <p>I'm developing an app that starts with a main menu, and then continues through three different steps (activities) to a final activity where the task is marked complete. On this last activity, i have several additional options (add note, share, etc..) and i also have a return to main menu button.</p>
<p>My question is.. how do i stack the activities so that calling finish() on the final activity will return back to the first activity launched? i am currently just starting the new activity via an intent, so pressing back on this screen doesn't return me to home as i would like.</p>
<p>Sorry in advance for being so convoluted in my desc</p>
| android | [4] |
3,963,000 | 3,963,001 | Prevent DIV from appearing partially outside of the window | <p>I have a DIV popping up at the bottom right of the cursor whenever a user right-clicks on a row in my table. The problem is, if a user right-clicks near the bottom of their browser window, the DIV will pop up and get cut off where the window ends. </p>
<p>Is there a way to detect if this will happen and if it will, position the DIV above and to the right of my cursor instead?</p>
<p>Forgot to mention!! I'm using <a href="http://www.trendskitchens.co.nz/jquery/contextmenu/" rel="nofollow">this plugin</a>. I don't mind if I need to alter the plugin's source a bit.</p>
| jquery | [5] |
5,846,436 | 5,846,437 | How to find cpu,io,memory utilization of a loading page in web application | <p>I've written a Java file, using Jsp,servlets, that I would like to perform run-time tests on. I've never done this before and was just curious on how to go about it. </p>
<p>What I'm interested in knowing, besides the actual timings, is how to find cpu,memory and io utilization when running the application.Your thoughts are appreciated.</p>
| java | [1] |
2,255,579 | 2,255,580 | stuck with javascript-html output | <p>I am kind of stuck in weird problem. i cant find the problem with the following code</p>
<pre><code> <html>
<head>
<script type="text/javascript">
// Import GET Vars
document.$_GET = [];
var urlHalves = String(document.location).split('?');
if(urlHalves[1]){
var urlVars = urlHalves[1].split('&');
for(var i=0; i<=(urlVars.length); i++){
if(urlVars[i]){
var urlVarPair = urlVars[i].split('=');
document.$_GET[urlVarPair[0]] = urlVarPair[1];
}
}
}
var tag_tag=document.$_GET['tags'];
alert(tag_tag);
document.getElementById("resultElem4").innerHTML=tag_tag;
</script>
</head>
<body>
<p id='resultElem4'></p>
</body>
</html>
</code></pre>
<p>its showing the string in alert but not in html when i call it like result.php?tags=cat</p>
| javascript | [3] |
5,718,992 | 5,718,993 | Making the root in Huffman coding | <p>I'm trying to build a Huffman tree, and while my code combines the letters and weights correctly, it isn't building the tree correctly. When I print the tree out in order, there is no root, and the children are leaf nodes instead of parents with children of their own. I understand I'm not setting the root/parents correctly, but I'm not sure how to do it since the tree is being built from the bottom up. This is the method to build the tree:</p>
<pre><code>public void buildTree(TreeNode[] a){
TreeNode[] x = a;
TreeNode root = new TreeNode();
TreeNode someNode;
TreeNode tree = new TreeNode();
System.out.println("building start");
int last = x.length-1;
String combo = "";
int sum = 0;
while(last >= 1 ){
combo=x[last-1].getWeight().getLetter().concat(x[last].getWeight().getLetter());
sum = x[last-1].getWeight().getFreq() + x[last].getWeight().getFreq();
someNode = new TreeNode(new Huffman(combo, sum));
if (x[last-1].getWeight().getFreq() > x[last].getWeight().getFreq()){
root=new TreeNode(x[last-1], x[last]);
}else{
root=new TreeNode(x[last], x[last-1]);
}
x[last-1] = someNode;
Arrays.sort(x);
last--;
}
System.out.println("Build complete");
System.out.print(x[0]);
root.inOrder();
}
</code></pre>
<p>The method to print the tree in order:</p>
<pre><code>public void inOrder(){
if(this.getLeft()!=null)
this.getLeft().inOrder();
System.out.print(this.getWeight()+" ");
if(this.getRight()!=null)
this.getRight().inOrder();
}
</code></pre>
<p>Any help would be appreciated.</p>
| java | [1] |
2,220,729 | 2,220,730 | Reading a file relative to an included file | <p>I need to load some text (shader code) from a file that is placed next to my library file. This way, I can <code>#include TextureBloomer.h</code> in several projects, and TextureBloomer will take care of loading its shader without needing to set paths through configuration or environment variables. The directory hierarchy looks like this:</p>
<pre><code>libs/libName/src/TextureBloomer/TextureBloomer.{h,cpp}
libs/libName/src/TextureBloomer/shaders/shader_name.{frag,vert}
apps/mine/appName/src/[several .h files that #include "TextureBloomer/TextureBloomer.h"]
</code></pre>
<p>I've been looking around for ways to do this, but all I found was posts saying "you can't", or "why would you even want to do that?" I found a (hacky) solution that works for me, but I've seen other posts that say using <code>__FILE__</code> is bad juju (with no justification). So, the question is a) what's so bad about this, and b) is there a way to improve it, eg. so I don't have to have "TextureBloomer.cpp" in the source file in case I change its name.</p>
<pre><code>string filename ("shaders/shader_name.frag");
string currentFile (__FILE__);
currentFile.replace(currentFile.find("TextureBloomer.cpp"), 18, "");
file.open((currentFile + filename).c_str());
</code></pre>
<p>EDIT: </p>
<p>I'm on OSX, compiling with XCode. I only really need it to work there, but other *nixes wouldn't hurt.</p>
| c++ | [6] |
678,920 | 678,921 | Saving User Settings in a Database | <p>1) I use Visual Studio 2008 (C#)</p>
<p>2) I want my desktop application to "remember" certain settings (preferences) for every user individually.</p>
<p>3) The application would use its own database of users (logins + passwords), so they have nothing to do with Windows accounts.</p>
<p>How can I accomplish that?</p>
<p>I was thinking of creating a USERSetting table with name/value pair columns and then serializing this information to a USERSetting Class. My settings in itself can be a large xml and i was wondering if there is a better solution.</p>
<p>Any sample code would be helpful.</p>
| c# | [0] |
1,210,080 | 1,210,081 | Guidelines about saving objects to file | <p>I'm working with a hand in task that is like a simple bank with customers and different accounts. Now I have to develop my task to store my customer objects and account object to file. I have read some about it and I'm going to use the ObjectOutputStream and the ObjectInputStream.</p>
<p>Since I have all customer objects in an arraylist, called customerList and all account objects that belongs to the customers in an arraylist, called accountsList, I wonder if I should and can save the hole arraylist or should I save all objects separately? </p>
<p>And when I'm going to load the customer object, should I put them in an arraylist again to be able to access them as I have done until know? Looking for a good and simple to understand solution. Preciate the help! Thanks!</p>
<p>Perhaps I can just make a loop and pick each object in the array list and save them as object. And then when I'm going to load them just make a loop again and load them and add them to array list!?</p>
| java | [1] |
2,606,051 | 2,606,052 | Android: Load Image from server | <p>I was thinking, maybee the best way of loading pictures that I have on the server, using for my site would be to get the url for the picture.. </p>
<p>How can I load picture from a url to ImageView?</p>
| android | [4] |
4,105,692 | 4,105,693 | Get time usage for all applications in android | <ul>
<li>Please note - I want the code/logic not any apps</li>
</ul>
<p>I was trying a lot for some days to get the usage time for all applications in android , but i was not able to get it .I was able to get the list of all application installed in android but was not able to track their individual timings .</p>
<p>Firstly I thought I can use the logic of getting the start time and end time of each application, but i was not able to do so .So can anybody let me know how to get the start time and end time for each application (based on their UID's).</p>
<p>But my main problem is getting the usage time .So if you have any other logic then please let me know (with some sample code would be must appreciated).</p>
| android | [4] |
5,319,531 | 5,319,532 | Decrease text size if too long | <p>I have a couple textviews, I would like to limit them to a certain visual length, say 50% width of screen. If the text reaches 50% of the screen, I would like to do something to stop it from continuing across the screen. I thought maybe if it hits that limit, to just decrease the textsize for every character so that it fits.</p>
<p>How would I do that... or is there a better way to handle this?</p>
| android | [4] |
4,912,171 | 4,912,172 | Changing object name with input | <p>I'm a beginner in java and I was wondering if there was a way to change the name of an object in the main class with input? For example I got this code:</p>
<pre><code>while(!answer.equals("stop"))
{
//Enters book's information and stores it in the object book1
System.out.println("Book-" + count);
title = input.next();
author = input.next();
ISBN = input.next();
copies = input.nextInt();
Book book1 = new Book(title,author, ISBN, copies);
printLn("");
printLn("Do you wish stop adding books? N || stop");
answer = input.next();
}
</code></pre>
<p>I want to keep adding new books until I write stop when prompted but of course without changing the name it will keep adding the data to the same object. Is it possible or do I need to keep making new book objects with: Book etc = new Book(title,author,ISBN, copies)</p>
<p><em>"Correction to my code"</em>
Like Kevin mentioned, an array is the main idea to store these values but it can be full due to its static value but I could use an expandcapacity method for when n--books are entered and the array is full it expands the array in x size. Thank you! </p>
| java | [1] |
677,545 | 677,546 | Can't remove object from ArrayList | <p>I'm working on a card game. I can't figure out how to remove a Card from an ArrayList no matter what. This is the code I'm using:</p>
<pre><code>private List<Card> cardDeck = new ArrayList<Card>();
public void removeCard(Card card) {
for (Iterator<Card> it = cardDeck.iterator(); it.hasNext();) {
Card nextCard = it.next();
if (nextCard.equals(card)) {
cardDeck.remove(card);
System.out.println("removed " + card);
}
}
}
</code></pre>
<p>And here's the card class, incase you need it:</p>
<pre><code> public class Card {
public Card(Rank rank, Suit suit) {
this.rank = rank;
this.suit = suit;
}
public Rank getRank() {
return rank;
}
public Suit getSuit() {
return suit;
}
@Override
public String toString() {
return getRank().toString().toLowerCase() + " of "
+ getSuit().toString().toLowerCase();
}
private Rank rank;
private Suit suit;
}
</code></pre>
<p>I've tried everything but it just won't remove. Any tips?</p>
| java | [1] |
2,527,858 | 2,527,859 | ASP.NET 4.5 object AdminBAL & ThrowError exception not recognize? | <p>When I type coding like this,</p>
<pre><code>void BindCurrentUsers()
{
AdminBAL admin = new AdminBAL();
try
{
GridViewServer.DataSource = admin.LoadAll();
GridViewServer.DataBind();
} catch (Exception ee)
{
lblError.Text = ThrowError.LogAndThrowError(ee);
}
finally
{ admin = null; }
}
</code></pre>
<p>The AdminBAL and ThrowError start having red underline which mean it not recognize. What do I miss?</p>
| asp.net | [9] |
5,004,089 | 5,004,090 | SessionParameter and Update Query with SqlDataSource | <p>I have an UpdateQuery within my SQLDataSource, where the parameter is being supplied from SessionParameter. The value for the SessionParameter is being set from my codebehind via a button click on a gridview. </p>
<p>The objective is when the user clicks a button on the gridview it updates the database via the gridview. The problem I am getting is that the update query is not being executed as I am not seeing the row updated with the new value. The debugging I have done has shown that I am getting the value I want on the row that is being selected, and the session is being set.</p>
<p>Here is the relevant code snippet:</p>
<pre><code><asp:SqlDataSource ID="JobNameDatasource" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT [JobName], [ChangedDate], [AdHocFlg] FROM [t_Config_iFace_Execution]"
UpdateCommand="UPDATE [t_Config_iFace_Execution] SET [RunJob] = 1 WHERE [JobName] = @JobName">
<UpdateParameters>
<asp:SessionParameter Name="JobName" SessionField="JobName"/>
</UpdateParameters>
</asp:SqlDataSource>
Protected Sub RunJob_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs)
If e.CommandName = "UpdateJob" Then
Dim btnRunJob As Button = TryCast(e.CommandSource, Button)
Dim gvr As GridViewRow = TryCast(btnRunJob.NamingContainer, GridViewRow)
Dim rowIndex As Integer = gvr.RowIndex
Dim Name As String = DirectCast(GridView1.DataKeys(rowIndex).Values("JobName"), String)
Session.Add("JobName", Name)
Label1.Text = Session("JobName")
End If
End Sub
</code></pre>
<p>Any ideas why it isn't working? I thought this would be straightforward unless I am missing something obvious?</p>
| asp.net | [9] |
3,014,266 | 3,014,267 | How is R.drawable able to resolve R.drawable.sample_2, etc? | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/3276260/gridview-tutorial-problems">Gridview Tutorial problems</a> </p>
</blockquote>
<p>In the android grid view tutorial, they use <code>R.drawable.sample_0</code>, <code>R.drawable.sample_1</code>, <code>R.drawable.sample_2</code>, etc.</p>
<p>These properties are not defined in <code>R.drawable</code>. How does java resolve this without errors?</p>
| android | [4] |
5,483,615 | 5,483,616 | Jquery: Stop propagation? | <p>I have added stopPropagation, however, I still get two popups in a row. This is better than before, where there were 20 popups for one element that is clicked....is there a better approach or am I missing something ?</p>
<pre><code>$(top.document).ready(function () {
$("*").click(processAction);
});
function processAction(e) {
var clicked = e.target;
e.stopPropagation();
alert(clicked.tagName);
e.stopPropagation();
switch (clicked) {
case "A":
//execute code block 1
break;
case "INPUT":
//execute code block 2
break;
default:
//code to be executed if n is different from case 1 and 2
}
};
</code></pre>
| jquery | [5] |
475,599 | 475,600 | How can i determine when my application is running? | <p>I have an application that uses a Service to fetch data in the background both while the application is running and when it's not.
When it is not running i would like to show a notification when there is new data, but not when the app is running.</p>
<p>How do i determine in my service whether the app is running or not?</p>
| android | [4] |
4,245,809 | 4,245,810 | SharedPreferences: when created? | <p>I try to access SharedPreferences inside Service. But when it's started first time and I try to read preferences, I get only default values, as if preferences don't exist. But after I open my preference Activity at first time, Service gets values. Is that normal? </p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:key="CATEGORY_UPDATE"
android:title="@string/autoUpdateCategory_title">
<CheckBoxPreference
android:key="PREF_AUTO_UPDATE"
android:title="@string/preferences_autoUpdate_title"
android:summary="@string/preferences_autoUpdate_summary"
android:defaultValue="true">
</CheckBoxPreference>
<ListPreference
android:key="PREF_UPDATE_FREQ"
android:title="@string/preferences_updateFreq_title"
android:summary="@string/preferences_updateFreq_summary"
android:dialogTitle="@string/preferences_updateFreq_title"
android:entryValues="@array/updateFreq_values"
android:entries="@array/updateFreq_options"
android:defaultValue="30">
</ListPreference>
</PreferenceCategory>
</PreferenceScreen>
public class Preferences extends PreferenceActivity {
public static final String PREF_AUTO_UPDATE = "PREF_AUTO_UPDATE";
public static final String PREF_UPDATE_FREQ = "PREF_UPDATE_FREQ";
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
}
}
/* INSIDE SERVICE */
Context context = getApplicationContext();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean autoUpdate =
prefs.getBoolean(Preferences.PREF_AUTO_UPDATE, false);
int updateFreq =Integer.parseInt(prefs.getString(Preferences.PREF_UPDATE_FREQ, "0"));
</code></pre>
<p>During first Service launch I get 0 and false, despite default values. And after going to preference Activity everything is ok.</p>
| android | [4] |
4,781,694 | 4,781,695 | How to render any file format(doc,ppt,xls) into printable format in android? | <p>I am developing a andoid application which need to print some documents.Documents may be in different format like docx,ppt,xls. Now how can i render that other format in printable format in android ?</p>
<p>Thanks in advance !</p>
| android | [4] |
1,466,027 | 1,466,028 | Getting SIM state in GsmServiceStateTracker.java | <p>How can I get to know whether SIM is present or not in GsmServiceStateTracker.java file?</p>
| android | [4] |
5,505,798 | 5,505,799 | android data passing and database access | <p>I am experiencing a problem where when the android device wake up from sleep, the Activity would take forever to get redrawn(and have to terminate it most of the time). I am not sure why, but when I comment out the code below where it retrieves an object from the database based on id stored in the bundle, the problem goes away.<br />
Not sure why the db transaction is causing an issue. any idea?<br />
secondly, is it better to store the object in bundle instead of storing its id and retrieving it from db in onCreate?</p>
<pre>
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.track_act);
/*
final Bundle extras=getIntent().getExtras();
long actId=extras.getLong("activity_id");
System.err.println("actId is "+actId);
Data.Activity act=DBManager.getActivity(actId, this);
*/
}
</pre>
| android | [4] |
4,750,168 | 4,750,169 | Is there any way how to distribute constructor to two files? | <p>I'm working on data core of application. I need to construct a few collections in one namespace like this:</p>
<pre><code>var Core = function(){
this.firstCollection = [];
$.extend(true, this.firstCollection,{
method1: function(){
alert("working with firstCollection");
}
};
var core = new Core();
</code></pre>
<p>Is there any elegant way, how to distribute the constructor into separated files for better maintenance? I want to use a pure JavaScript, no compiled one such Coffee/Dart.</p>
<p>Distribute into separated files means workaround like this:
file1:</p>
<pre><code>var obj = obj||{};
obj.firstAttribute = "first";
</code></pre>
<p>file2</p>
<pre><code>var obj = obj||{};
obj.secondAttribute = "second";
</code></pre>
| javascript | [3] |
595,913 | 595,914 | Help Creating a ContactsUtils class | <p>Alright, I would like to make a class that can kinda make working with Content Providers a little easier, especially while working with contacts. I have something of a base layout, but its erroring out when I try to initiate cr. How would I be able to get something like this working?</p>
<p>Also, how does it look in general? From a design and efficiency perspective, as well as being an easy to use utility, would this be a good way to go about doing what I'd like to achieve?</p>
<pre><code>public class ContactUtils {
private Uri uri = ContactsContract.Contacts.CONTENT_URI;
private ContentResolver cr = new ContentResolver(this);
public String getDisplayName(int id) {
String name = null;
String[] projection = new String[] {ContactsContract.Contacts.DISPLAY_NAME};
String selection = ContactsContract.Contacts.IN_VISIBLE_GROUP + " = '" + ("1") + "'";
Cursor contact = cr.query(this.uri, projection, selection, null, null);
while (contact.moveToFirst()) {
name = contact.getString(contact.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
}
return name;
}
}
</code></pre>
| android | [4] |
5,095,314 | 5,095,315 | prime factorization | <p>I am trying to calculate the prime factors of a number using trial method. I am trying the following method:-</p>
<pre><code>#include<iostream>
#include<conio>
#include<math>
using namespace std;
int main()
{
int i,j,count=0;
for(i=1;i<=126;i++)
{
if(126%i==0)
{
if(i==1)
{
cout<<1<<endl;
}
else if(i==2)
{
cout<<2<<endl;
}
else
{
for(j=2;j<i;)
{
if(i%j==0)
{
break;
}
else
{
j++;
count++;
}
}
if(count==i-2)
{
cout<<i<<endl;
}
}
}
}
return 0;
}
</code></pre>
<pre>Output:-
1
2
3
9</pre>
<p>The problem is :- it is not working properly. I would be glad if you guys would help me. Please just give some hints and NO solutions.</p>
| c++ | [6] |
1,730,525 | 1,730,526 | last screen to first screen in iphone | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/5789436/iphone-get-back-tothe-main-screen">iphone get back tothe main screen</a> </p>
</blockquote>
<p>I have created one iPhone application. I'm using multiple screens in my app. I wrote the code for the moving from first screen to second screen, second screen to third screen up to the fifth screen. Now I want to jump to the first screen from the fifth screen. But I want to do this without creating another instance of the first screen, as it will bring up memory problems.</p>
<p>Please suggest what to do in this case?</p>
<p>i havent use UINavigationControoler. i have used UIViewController.....</p>
| iphone | [8] |
1,165,411 | 1,165,412 | Using preg_replace To Change index.php To test | <p>In my forum urls, there is "index.php" in it everywhere. I want to replace it with "test". In my PHP files, I have this line:</p>
<pre><code>// Makes it easier to refer to things this way.
$scripturl = $boardurl . '/index.php';
</code></pre>
<p>I tried just changing it to:</p>
<pre><code>// Makes it easier to refer to things this way.
$scripturl = $boardurl . '/test';
</code></pre>
<p>However, that returned 404 errors. I was told that I needed to use preg_replace to make that happen. I looked at the PHP Manual, and it says I need a pattern, replacement, and a subject. I'm confused about the subject part.</p>
<p>I tried this, but no prevail:</p>
<pre><code>// Makes it easier to refer to things this way.
$scripturl = $boardurl . preg_replace('/index.php','/test','?');
</code></pre>
<p>Here is an example URL: "domain.com/index.php?node=forum"</p>
<p>I want it to look like: "domain.com/test?node=forum"</p>
| php | [2] |
5,790,451 | 5,790,452 | autoresize and asp.net | <p>Why doesn't work my project.I want use jquery autoresizable for my asp.net textbox?</p>
<p>Like this <a href="http://james.padolsey.com/javascript/jquery-plugin-autoresize/" rel="nofollow">http://james.padolsey.com/javascript/jquery-plugin-autoresize/</a></p>
<p>This is code from master page..</p>
<p><a href="http://www.djkbf.hr/~atokic/code.txt" rel="nofollow">http://www.djkbf.hr/~atokic/code.txt</a></p>
| asp.net | [9] |
3,727,410 | 3,727,411 | Confused on which one to to use - Linq to SQL, Datasets or Ado.Net Data entity model? | <p>I'm a pretty descent old school ASPNET developer i.e I still use Visual studio 2005 & webforms to build websites.</p>
<p>But with all the recent MVC hype I decided to get a copy of VS 2010 express and get aquainted with 'New school' ASPNET development.</p>
<p>I have always relied on datasets to build my n-tier my web apps but VS 2010 has introduced me to new ORMs i.e Linq to SQL & Ado.Net Data entity model.</p>
<p>So now I'm confused on which one to use. Microsoft must had a reason to provide us with the 3 options...I just need to know when & why to use which model.</p>
| asp.net | [9] |
5,870,711 | 5,870,712 | does python have a comma operator like C | <p>in C (and C family of languages) an expression <code>(4+7, 5+2)</code> returns <code>7</code>. But the same expression in Python would result in a tuple <code>(11, 7)</code></p>
<p>So does python have a comma operator like C ?</p>
| python | [7] |
5,559,328 | 5,559,329 | Autolink action tracking in texview onClickListner | <p>I have a listview ,each item is a textView with property autoLink="web|email".Link will work properly,but I want to start another activity when text other than web|email is clicked,that was not happening.So I used setOnClickListner for textView,that also worked smoothly.My problem is when I click the email or web link both actions will occur -browser and other activity will open.How to prevent this?</p>
| android | [4] |
3,774,935 | 3,774,936 | Can't access public classes in an other project but the same namespace | <p>I have two projects in my solution and in each of them I have a CS file containing a public class. Since both classes are in the same namespace, I was expecting them to be able to see each other. That is not the case. See the setup below.</p>
<p>Project Woof1, file File.CS</p>
<pre><code>namespace MyNameSpace
{
public class Foo
{
// Doesn't compile
Faa f;
}
}
</code></pre>
<p>Project Woof2, file File.CS</p>
<pre><code>namespace MyNameSpace
{
public class Faa
{
// Doesn't compile
Foo f;
}
}
</code></pre>
<p>NB, both classes are stored in files with the same name <strong>but</strong> in different directories (i.e. not the same file).</p>
<ol>
<li>Why can't I compile it?</li>
<li>What can I do about it (except moving the classes to the same project).</li>
</ol>
<p><em>(I only found <a href="http://stackoverflow.com/questions/7040123/namespace-not-available-in-other-project">this discussion</a> on the subject but in the end it wasn't really my issue.)</em></p>
| c# | [0] |
5,748,744 | 5,748,745 | Can I select multiple variables in a single Javascript command? | <p>Does Javascript have a built-in syntax for selecting multiple variables?</p>
<p>Say I'd like to set a group of variables to equal 0.</p>
<p>Is there some way to combine</p>
<blockquote>
<pre><code>x = 0
y = 0
n = 0
a = 0
</code></pre>
</blockquote>
<p>and so on, into one command?</p>
<p>Or am I getting spoiled by jQuery and CSS-style object selection?</p>
| javascript | [3] |
3,828,610 | 3,828,611 | option in select is not selected without alert() in jQuery | <p>I have the following code snippet in my jquery. <code>update_obj['events']</code> holds the values of the options that I want to get selected. I have a set of <code>select</code> elements and their id begins with <code>event_drop_down_</code>. This code works fine. But if I comment the <code>alert(v)</code> the options are not get selected in the <code>select</code> elements. The only other event related to the <code>select</code> elements is <code>.change()</code>. I commented it and tried, still the issue persists. Any help/suggestion to overcome this is highly appreciated.</p>
<pre><code> var i =0;
$(update_obj['events']).each(function(v){
alert(v);
$('#event_drop_down_' + i + ' option[value=' + update_obj['events'][v] + ']').attr('selected', 'selected');
i = i+1;
});
</code></pre>
| jquery | [5] |
1,601,585 | 1,601,586 | jQuery fadeout image | <p>I have a code to change image for every fixed intervals but this image is just normally changing. How can I use fadeout option to my code so that it will slowly fadeout to open a new image. My code follows</p>
<pre><code>$(document).ready(function() {
(function() {
var curImgId = 0;
var numberOfImages = 2;
window.setInterval(function() {
$('body').css('background-image','url(bg' + curImgId + '.jpg)');
curImgId = (curImgId + 1) % numberOfImages;
}, 15 * 100);
})();
});
</code></pre>
| jquery | [5] |
1,671,728 | 1,671,729 | How to read yahoo email with python | <p>tried to use the following code to read yahoo email.
The error message says "NB: mailbox is locked by server from here to 'quit()'"</p>
<p>Q> How to fix the issue?</p>
<pre><code>import poplib
from email import parser
pop_conn = poplib.POP3_SSL('pop.mail.yahoo.com')
pop_conn.user('[email protected]')
pop_conn.pass_('xxxx')
#Get messages from server:
iMessageCount = len(pop_conn.list()[1])
messages = [pop_conn.retr(i) for i in range(1, iMessageCount + 1)]
# Concat message pieces:
messages = ["\n".join(mssg[1]) for mssg in messages]
#Parse message intom an email object:
messages = [parser.Parser().parsestr(mssg) for mssg in messages]
for message in messages:
print message['subject']
13 #Get messages from server:
/usr/lib/python2.7/poplib.pyc in pass_(self, pswd)
187 NB: mailbox is locked by server from here to 'quit()'
188 """
--> 189 return self._shortcmd('PASS %s' % pswd)
</code></pre>
| python | [7] |
1,533,251 | 1,533,252 | How to get the Default orange Highlight Effect for EditText | <p>I've lost the Orange Highlight effect for EditText after implemented Round Corner effect using this code. Could someone tell me how to retrive the Highlight effect?</p>
<p>Thank you </p>
<p>round_corner_button_bg.xml</p>
<pre><code><shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="5dp" />
<gradient
android:angle="45"/>
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
<solid
android:color="#FFF" />
</shape>
</code></pre>
<p>EditText.xml</p>
<pre><code><EditText
android:id="@+id/loginPassword"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_corner_button_bg"
android:password="true" />
</code></pre>
| android | [4] |
1,509,763 | 1,509,764 | How to allow user to install apk file one once on android phone? | <p>Hi i have develop an android application in which i want to prevent user to create multiple account on our ftp server from one android device for which i create configuraton file and store boolean value which is by defult one but when user create account its value change to true. but there is an issue when user uninstall the apk file our configuration file also delete and user can create account again and boolean value lost.</p>
<p>My queston is that in android there is any registry like concept (same in windows) that we store value in android registry and when it try install it 2nd time it not allow it. or any another way which it more simple. any help in this regard is greatly apprecialted thanks in advance </p>
| android | [4] |
4,958,934 | 4,958,935 | Creating an object based on the state of another object in Java | <p>Lets say you have a class called Explosion where it does not make sense to create an instance of it, without some information from another class instance. The constructor is not made public.</p>
<p>Is it better to do it this way:</p>
<pre><code>// both classes are in the same package
Explosion e;
Collision c = new Collision()
// do some stuff with collision
e = c.createExplosion()
</code></pre>
<p>Or is it better for Explosion to have a static method for creating an instance and you pass in a Collision object as an argument:</p>
<pre><code>Explosion e
Collision c = new Collision()
// do some stuff with collision
e = Explosion.createExplosion(c)
</code></pre>
<p>When you are the author of both classes.</p>
| java | [1] |
3,881,229 | 3,881,230 | PHP combine arrays | <p>I have two arrays:</p>
<pre><code>aid = [$aid]=>1
amount = [$aid] = $70
</code></pre>
<p>How can I rewrite these two separate arrays to be one array:</p>
<pre><code>payout = [aid] => $aid, [amount] => $70
</code></pre>
| php | [2] |
925,412 | 925,413 | PHP MediaInfo CLI Help | <pre><code><?php
$source_video = 'demo.ts';
$mediaInfoDur_log = 'MEDIAINFO-DURATION-LOG.log';
$mediaInfoDur_cmd_log = 'MEDIAINFO-DURATION-CMD.log';
$mediaInfoDur_cmd = 'mediainfo "--Inform=Video;%Duration%" ' . $source_video;
$mediaInfoDur_cmd = $mediaInfoDur_cmd . ' > ' . $mediaInfoDur_log . ' 2>&1';
$duration = exec($mediaInfoDur_cmd, $output);
print_r($output);
?>
</code></pre>
<p>How we can send the result of exec into the file and in the array $output ?
The Above method save only in the file nothing shows up in the array
Thanks Sascha</p>
| php | [2] |
5,608,390 | 5,608,391 | using this to call a instance variable? | <p>Should you use "this.variablename" or just "variablename" to reference a member variable in a method?</p>
| java | [1] |
4,075,766 | 4,075,767 | javascript calling function inside another mystery | <pre><code>function Obj1(param)
{
this.test1 = param || 1;
}
function Obj2(param, par)
{
this.test2 = param;
this.ob = Obj1;
this.ob(par);
}
</code></pre>
<p>now why if I do:</p>
<pre><code>alert(new Obj2(44,55).test1);
</code></pre>
<p>the output is 55? how can 'view' test1 an Obj2 istance if I haven't
link both via prototype chain?</p>
<p>Thanks</p>
| javascript | [3] |
2,887,461 | 2,887,462 | writing a csv file using KBcsv writer | <p>I am trying to write into csv file using Kent.Boogaart.KBCsv, cant figure out what could be the problem?</p>
<p>Piece of code:</p>
<pre><code>private static void SaveCSV(List<AData> items,string fName)
{
using (CsvWriter wr = new CsvWriter(fName))
{
wr.ValueSeparator = ';';
foreach (AData item in items)
{
wr.WriteDataRecord(item);
}
}
}
</code></pre>
<p>Exception:
The process cannot access the file 'C:\Users\myname\Documents\something.txt' because it is being used by another process.</p>
| c# | [0] |
1,585,190 | 1,585,191 | PHP -- using session variables / reloading the page (logging in/out) | <p>I am building a login system and have a mysql query that checks the name and password and puts out a page saying 'logged' if they match.</p>
<p>what I want to know is how i can use session variables to see if the user is logged in and then redirect them to a different page if they are. </p>
<p>do i have to set all session varaibles in the same php code snippet as the 'session_start();'
or can i do some like this on the same page</p>
<pre><code><?php session_start(); ?>
html here
<?php $_SESSION['test'] = blah; ?>
</code></pre>
<p>if i call it another page do i have to have the session_start(); there too? or can i just $_REQUEST any session variable from any page one the session starts?</p>
| php | [2] |
219,311 | 219,312 | Fill in the blanks in an array | <p>I have an array which I'd like to show all days of weeks or each month of the year, even if data is 0, is it possible to look inside the array and fill in what's not there?</p>
<p>The data I'm returning from mysql table does not show 0 - details below</p>
<p><a href="http://stackoverflow.com/questions/12659970/show-values-even-if-empty">Show values even if empty</a></p>
<p>So, the following shows months of the year and the count, I'd like to fill in the months which aren't there with i.e. 'Feb' => '0' .. 'Sep' => '0' .. 'Dec' => '0'</p>
<p>Array example:</p>
<pre><code>$data = array(
'Jan' => 12,
'Mar' => 10,
'Apr' => 7,
'May' => 80,
'Jun' => 67,
'Jul' => 45,
'Aug' => 66,
'Oct' => 23,
'Nov' => 78,
);
</code></pre>
| php | [2] |
1,213,139 | 1,213,140 | Why is this get parameter not equal to a string? | <p>given a url:</p>
<p>scrape.php?u=http%3A%2F%2Fwww.coldwellbanker.com%2Fagent%3 ...etc</p>
<pre><code>$url = $_GET['u'];
$url2 = 'http://www.coldwellbanker.com/agent?action=detail&agentId=121759&mode=detail';
var_dump($url==$url2);
//This prints out bool(false)
</code></pre>
<p>Why is the $_GET parameter not identical to the string equivalent in single quotes?</p>
| php | [2] |
5,801,401 | 5,801,402 | Can we add UIbuttons,uilabels on to webview and make them scrollable along with the web view in iphone? | <p>I was working on webview.I am facing an issue where i want to display html as well as UIbuttons.
I made webview added Ui butons but whn i scroll webview the webview scrolls but the uibuttons remain at the same location.Can you anyone please help me out?</p>
| iphone | [8] |
3,359,568 | 3,359,569 | python string substitution | <p>Is there a simple way of passing a list as the parameter to a string substitution in python ?
Something like:</p>
<p><code>w = ['a', 'b', 'c']</code></p>
<p><code>s = '%s\t%s\t%s\n' % w</code></p>
<p>Something similar to the way dictionaries work in this case.</p>
| python | [7] |
2,836,500 | 2,836,501 | Creating an Invoice using PHP+MySQL | <p>I want to create a invoice as described in this post <a href="http://css-tricks.com/html-invoice/" rel="nofollow">here</a>.</p>
<p>I am able to do the edits here and get even the print. But I need some suggestion to store the same into Database. I am Good with MySQL, just a beginner in PHP, So can any one suggest me how to have multiple inserts. and storing the customer info in customer table, and order info in order table, and the relation between customer and Order in another. with reference to the above example.</p>
<p><a href="http://css-tricks.com/examples/EditableInvoice/" rel="nofollow">Demo</a> here.</p>
| php | [2] |
2,085,691 | 2,085,692 | Trying to convert from seconds to date | <p>Okay so I have an array of results from a table, we have a start and end time we are retrieving. the start/end time would look something like this: </p>
<pre><code>1345497551
</code></pre>
<p>Now I'm trying to convert this to a real time, for instance <code>1345497551</code> might become <code>2012/05/09 17:23:12</code> or something. I've found a few things but none seem to work correctly. one solution I tried, according to what someone was saying on another question on here, was </p>
<pre><code>$createdate = date('H:i:s',$numberofsecs);
</code></pre>
<p>where <code>$numberofsecs</code> was the time pulled in from the array. but this only ever outputs <code>17:00:00</code> repeatedly for every time we had available for testing. </p>
<p>How can I go about making this work correctly? </p>
| php | [2] |
928,352 | 928,353 | how to prevent popup window on right mouse click | <p>So as the title says how could i do it?</p>
<p>After some googling i got this code together:</p>
<pre><code>$('.lines').mousedown(function(event) {
if(event.which == 1){
console.log("left");
}else{
event.preventDefault();
console.log("right");
}
});
</code></pre>
<p>So first i need to determine which button was pushed because i'm going to use different action. but <code>event.preventDefault</code> for some reason doesn't do it's job when right mouse button is clicked.</p>
| jquery | [5] |
3,572,342 | 3,572,343 | What Android version to target? | <p>I'm about to write my first Android app. It's a fairly basic app that doesn't use any special features beyond being able to schedule notifications and read/write image files to the device's local storage. Reaching the broadest audience is my top priority. If I target Android 1.5, is the app guaranteed to run fine all the way up to ICS? Should I target Android 2.1, which seems to be the new baseline for common phones in use?</p>
<p>Since the app is fairly basic, if I target ICS, would it run on versions going all the way back to 2.1? Maybe this is a stupid question.</p>
| android | [4] |
4,164,719 | 4,164,720 | How to add external API in corona SDk, but no need to require network connectivity? | <p>I am new to corona. I want to add dictionary for word meaning but I don't want to add network connectivity so that user can get the meaning without internet connectivity. SO can you please tell me how to add that external API or any other method so that I can add this feature?</p>
<p>Thanks,</p>
| iphone | [8] |
3,023,836 | 3,023,837 | Include Javascript / CSS min version on production and full on dev in ASP .NET Web Forms | <p>Is it possible to achieve a goal specified in the question topic in ASP .NET for instance with existing controls like ScriptManager or any other controls? I'm using ASP .NET Web Forms 3.5.</p>
| asp.net | [9] |
1,226,868 | 1,226,869 | jQuery: IE8 bug with animated show()? | <p>I was trying out the animated .show(100) of jQuery. The animation works fine in both Firefox and IE8. However, in IE8, the rendered fonts (when animation is used) are thinner than the original font. I retried using .show(), now without the animation, and the rendered text was normal.</p>
<p>here's the jQuery code that handles the animation:</p>
<pre><code>var sibling = obj.next();
(sibling.is(":visible")) ? sibling.hide(100) : sibling.show(100);
</code></pre>
<p>where <strong><em>sibling</em></strong> is something like this:</p>
<pre><code><div class="tree">
<ul>
<li><a>Item 1</a></li>
<li><a>Item 2</a></li>
<li><a>Item 3</a></li>
</ul>
</div>
</code></pre>
<p>Is this an IE8 bug?</p>
<p>Regards,
Erwin</p>
| jquery | [5] |
5,613,042 | 5,613,043 | Customizing text on Spinner control | <p>I've seen some answers to questions about how to specify a custom layout for a spinner's pop-up list, but what I want to do is to customize the text on the Spinner control itself, such the "setText..." methods that you can call for a Button (TextView subclass).</p>
<p>Is there any way to do this? What I'm trying to do is to make my own Spinner design as I have for some of the other controls so it takes up less space and matches the general look of my app.</p>
| android | [4] |
1,615,384 | 1,615,385 | javascript re-define a variable | <p>I'm getting stuck somewhere (as newbies do). Is it ok to re-define a variable once it has been trimmed and tested for content?</p>
<pre><code> function setarea() {
var dbasedata = document.forms[0]._dbase_name.value;
dbasedata = dbasedata.toUpperCase();
dbasedata = dbasedata.replace(/\s/g, "");
dbasedata = dbasedata.remove("UK_CONTACTS", "");
if (dbasedata != "") {
_area.value = _dbase_name.value;
}
else var dbasedata = document.forms[0]._dbase_name.value;
dbasedata = dbasedata.toUpperCase();
dbasedata = dbasedata.replace(/\s/g, "");
if (dbasedata.indexOf("UK_CONTACTS")>-1 {
var dbaseterm = "UK_CONTACTS";
else var dbaseterm = "";
}
</code></pre>
| javascript | [3] |
3,277,101 | 3,277,102 | "Use of undefined constant" notice, but the constant should be defined | <p>there are three files: common.php, controller.php and user.php. </p>
<p>File common.php looks like:</p>
<pre><code><?php
define("MAXIMUM_NAME_LENGTH", 50);
?>
</code></pre>
<p>File controller.php looks like:</p>
<pre><code><?php
include("common.php");
include("user.php");
$user = new user();
?>
</code></pre>
<p>File user.php looks like:</p>
<pre><code><?php
class user{
private $var = MAXIMUM_NAME_LENGTH;
}
?>
</code></pre>
<p>When executing script there is given notice: Notice: Use of undefined constant MAXIMUM_NAME_LENGTH - assumed 'MAXIMUM_NAME_LENGTH' in /.../controller.php on line xxx. I want to share defined values in common.php between other files. How to do it in a proper way?</p>
| php | [2] |
3,992,980 | 3,992,981 | Could not load assembly 64bit machine | <p>I am getting the following error if I try to run the ASP.NET 4.0 website in a 64 bit machine with Enable 32 bit Applications flag set to false. (I have to set that to False, If I set it to true its working fine).
<strong>> "Could not load file or assembly 'Common.BL' or one of its dependencies. An attempt was made to load a program with an incorrect format.</strong></p>
<p>And in the project properties the Target of Build is set to Any CPU.</p>
<p>Still I am getting the same error.</p>
<p>Can you guys please help me resolving this error. Anyhelp would be appreciated.</p>
<p>Thanks.
Sameer.</p>
| asp.net | [9] |
1,590,074 | 1,590,075 | Get the total of complete column of gridview in asp.net | <p>I am Using asp.net grid view and i have one column in that namely Calories and i want to show whole caloreis total at the top. i used the following code:</p>
<pre><code> int count = grdViewSample.Rows.Count;
double totCalories = 0;
Label lblCalories = new Label();
foreach (GridViewRow row in grdViewSample.Rows)
{
lblCalories = (Label)row.FindControl("lblCalories");
totCalories = totCalories + Convert.ToDouble(lblCalories.Text);
}
lblTotalCaloreis.Text = lblTotalCaloreis.Text + " " + totCalories;
</code></pre>
<p>and my problem is that the calories total get changed by paging and i want total caloreies available in grid view.
Thanks</p>
| asp.net | [9] |
2,234,346 | 2,234,347 | C++ From the Compiler's Point of View | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/8833524/what-are-the-stages-of-compilation-of-a-c-program">What are the stages of compilation of a C++ program?</a> </p>
</blockquote>
<p>I find that understanding how a given software language is compiled can be key to understanding best practices and getting the most out of that language. This seems to be doubly true with C++. Is there a good primer or document (for mortals) that describes C++ from the point of view of the compiler? (Obviously every compiler is a little different.)</p>
<p>I thought there may be something along those lines in the beginning of Stroustrup's book.</p>
| c++ | [6] |
3,114,445 | 3,114,446 | Looking for values in nested tuple | <p>Say I have:</p>
<pre><code>t = (
('dog', 'Dog'),
('cat', 'Cat'),
('fish', 'Fish'),
)
</code></pre>
<p>And I need to check if a value is in the first bit of the nested tuple (ie. the lowercase bits). How can I do this? The capitalised values do not matter really, I want to search for a string in only the lowercase values.</p>
<pre><code>if 'fish' in t:
print "Fish in t."
</code></pre>
<p>Doesn't work.</p>
<p>Is there a good way of doing this without doing a for loop with if statements?</p>
| python | [7] |
1,331,799 | 1,331,800 | Shape Border In Android | <p>How can I draw a rectangle that have a black border and white background? I don't understand shape tags in xml! Both solid and stroke do same thing? please let me understand.</p>
| android | [4] |
3,196,263 | 3,196,264 | question about classes | <p>here is code example for add two vectors using classes</p>
<pre><code>#include <iostream>
using namespace std;
class CVector {
public:
int x,y;
CVector () {};
CVector (int,int);
CVector operator + (CVector);
};
CVector::CVector (int a, int b) {
x = a;
y = b;
}
CVector CVector::operator+ (CVector param) {
CVector temp;
temp.x = x + param.x;
temp.y = y + param.y;
return (temp);
}
int main () {
CVector a (3,1);
CVector b (1,2);
CVector c;
c = a + b;
cout << c.x << "," << c.y;
return 0;
}
</code></pre>
<p>it is a bit difficult for me to understand it and also how often it is used in daily?</p>
| c++ | [6] |
1,185,761 | 1,185,762 | jquery pass text and variable inside .html() | <p>this is probably very easy but I can't figure it out :)</p>
<pre><code> $('#myDiv').html('<a onclick="remove_item(variantId);">Remove</a>');
</code></pre>
<p>variantId is a JS variable so I need to pass it's value in the code above.</p>
| jquery | [5] |
4,553,528 | 4,553,529 | Cannot find class in same package | <p>I am trying to compile Board.java, which is in the same package (and directory) as Hexagon.java, but I get this error:</p>
<pre><code>Board.java:12: cannot find symbol
symbol : class Hexagon
location: class oadams_atroche.Board
private Hexagon[][] tiles;
</code></pre>
<p>The first few lines of Board.java:</p>
<pre><code>package oadams_atroche;
import java.util.LinkedList;
import java.util.Queue;
import java.io.PrintStream;
import p323.hex.*;
public class Board implements Piece{
>---//Fields
>---private int n;
>---private Hexagon[][] tiles;
</code></pre>
<p>The first few lines of Hexagon.java:</p>
<pre><code>package oadams_atroche;
import p323.hex.*;
public class Hexagon implements Piece{
</code></pre>
<p>I just cannot see what I am doing wrong. Any ideas?</p>
<p>Thanks</p>
| java | [1] |
2,031,533 | 2,031,534 | After screen is off in 5 minutes wifi is disabled. | <p>I have found good tutorial to for Handling Screen OFF and Screen ON Intents:
<a href="http://thinkandroid.wordpress.com/2010/01/24/handling-screen-off-and-screen-on-intents/" rel="nofollow">http://thinkandroid.wordpress.com/2010/01/24/handling-screen-off-and-screen-on-intents/</a></p>
<p>but i want that after screen is off in 5 minutes wifi is disabled.</p>
<pre><code>WifiManager wm = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wm.setWifiEnabled(true);
</code></pre>
<p>My only problem is how to achive 5 minutes interval? Do I need some timepickers or what is best practice for this when you are dealing with calculating and counting time?</p>
| android | [4] |
4,666,439 | 4,666,440 | Jquery input complicated incrimenting mess | <p>I have this input text field that will initially say Answer 1 then if you <code>focus()</code> the text will disappear. If you <code>blur()</code> the text will come back. </p>
<pre><code><input type="button" id="btnAdd" value="Add Answer" />
<div id="formanswer1" style="margin-bottom:4px;" class="clonedInput">Answer:<input type="text" id="formanswer1" value="Answer 1" onclick="this.value='';" onfocus="this.select()" onblur="this.value=!this.value?'Answer 1':this.value;"/></div>
</div>
<script>
$('#btnAdd').click(function() {
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
var newNum = new Number(num + 1); // the numeric ID of the new input field being added
// create the new element via clone(), and manipulate it's ID using newNum value
var newElem = $('#formanswer' + num).clone().attr('id', 'formanswer' + newNum).attr("onblur","this.value=!this.value?'Answer "+newNum+"':this.value;");
// manipulate the name/id values of the input inside the new element
newElem.children(':first').attr('id', 'formanswer' + newNum).attr('value','Answer '+newNum).attr('onblur',"this.value=!this.value?'Answer "+ newNum +"':this.value;");
// insert the new element after the last "duplicatable" input field
$('#formanswer' + num).after(newElem);
});
</script>
</code></pre>
<p>I am having trouble figuring out how to incriment the <code>onblur()</code> value. I'm not sure if I have the syntax wrong but I cant figure this one out.</p>
| jquery | [5] |
5,811,715 | 5,811,716 | How to get data back from webserver with NSMutableURLRequest | <p>I try to build an app for user that enter his data and this data will be post to a webserver for save in a Database. This web server returns some data back like Id or something else.
How I can receive the data the webserver returns back?
The transfer works already with NSMutableURLRequest. But I search for a sollution to read the answer from the web server and display it on a label.</p>
| iphone | [8] |
3,243,343 | 3,243,344 | PHP uploading images in the correct dimensions | <p>I know this question is very common but the main point in my question is that i want to know how facebook or some other websites upload their pictures in the correct size. for example. if we upload a picture of the dimension : width : 1000px , height : 20px. then facebook updates the status updates with that pic but makes the image size small in the correct ratio. its jus scales down the picture but we can know that the image is very widthy (my own word for very high width :P) where as long heighty pictures are also posted in the correct proportion.</p>
<p><img src="http://i.stack.imgur.com/YEePN.png" alt="PIC NUMBER 1"></p>
<p><img src="http://i.stack.imgur.com/2n8K6.png" alt="PIC NUMBER 2"></p>
<p>I have included the image examples above. how does facebook calculate the size n ratio of the pics and echo out the pic by keeping the right dimensions but scaling it down at the same time. </p>
| php | [2] |
4,165,139 | 4,165,140 | Working on a project for visually disabled, NEED HELP with android coding! | <p>i'm making an app on android smart phones for the visually impaired and i have inquiries. Now, my app's main menu is already created, and i've used text-to-speech program to read out the menu for the visually impaired. QN: what do i have to do to make it so that when visually impaird personnal press the buttons on the menu once, text to speech is activated, telling them what they are pressing, and to double tap to enter/activate the activity linked to the button? Thanks in advance :D</p>
| android | [4] |
1,720,284 | 1,720,285 | How to print a cheque through the receipt printer in Java? | <p>I have <strong>pos58 receipt printer</strong>(printer made in China), this printer supports <strong>ESC-POS Commands</strong>.
I want to print out a cheque in Java without JavaPos api. Just I don't know how do this.</p>
<p>Is there some way to implement it? Or what the library is?
Or are there any examples of that?</p>
<p>Thanks for advance.</p>
| java | [1] |
5,029,655 | 5,029,656 | Copy Constructor | <p>Im trying to do the copy part of a "deep copy" with my copy constructor:</p>
<pre><code>class myClass
{
public:
myClass ( const char *cPtr, const float fValue )
myClass ( const myClass& myClassT );
private:
const char* &myAddress;
float MyFloater;
};
//myClass.cpp
myClass::myClass( const char *cPtr, const float fValue )
{
// Initialize both private varaible types
const char* &myAddress = cPtr;
float myFloater = fValue;
}
myClass::myClass( const myClass& classType )
{
// copy what we did ...
myAddress = myClass.myAddress;
myFloater = myClass.myFloater;
}
</code></pre>
<p>with just that, im getting only the, "must initialize whataver varaible in base/member initalizer list.</p>
<p>They are initalized in the constructor!
What would i need to do with the classtype object address?</p>
| c++ | [6] |
730,653 | 730,654 | Having trouble if else statement | <p>For some reason its not getting to the part of line 174 and I don't know why. Any suggestions what the solution could or might be.</p>
<p><a href="http://pastebin.com/vFZwmJuc" rel="nofollow">http://pastebin.com/vFZwmJuc</a></p>
| php | [2] |
5,824,018 | 5,824,019 | Add dynamic Radiobutton into RadioGroup | <pre><code>public class MCQSample extends Activity implements OnClickListener{
TextView title;
String gotBread;
RadioGroup AnswerRG;
int value ;
int value1;
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.mcqsample);
title = (TextView) findViewById(R.id.abc);
nextP = (Button) findViewById(R.id.nextP);
backP = (Button) findViewById(R.id.backP);
AnswerRG = (RadioGroup) findViewById(R.id.AnswerRG);
Bundle b = getIntent().getExtras();
value = b.getInt("key", 0);
}
}
</code></pre>
<p>Hi guys, im doing the Android app and stuck on create the dynamic radio-button. Because i don't know how many button i need (which depend on the value - user input). I read some posts which can add on the Layout but i want to add into the radioGroup. Is there any ways? Thank</p>
| android | [4] |
3,989,774 | 3,989,775 | Need help with basic function - Python | <p>want to count the number of times a letter appears in a string, having issues here. any help</p>
<pre><code>def countLetters(string, character):
count = 0
for character in string:
if character == character:
count = count + 1
print count
</code></pre>
| python | [7] |
4,634,590 | 4,634,591 | Dynamic Linking C++ DLL ... What am I doing wrong? | <p>I've been trying to create a DLL and link the DLL to my program but every time I try my program can't find the function. The DLL loads fine but the function cant be found.</p>
<p>Program:</p>
<pre><code>#include <iostream>
#include <windows.h>
using namespace std;
typedef void (*HelloPtr)();
int main() {
HelloPtr hello;
HINSTANCE hDll = LoadLibrary("dll.dll");
if(hDll)
{
hello = (HelloPtr)GetProcAddress(hDll, "hello");
if(hello) {
hello();
} else {
// Error code here
}
}
return 0;
}
</code></pre>
<p>dllmain.cpp</p>
<pre><code>#include "dll.h"
#include <windows.h>
DLLIMPORT void hello()
{
MessageBox(NULL, "Hey", "", MB_OK);
}
DllClass::DllClass()
{
}
DllClass::~DllClass ()
{
}
BOOL APIENTRY DllMain (HINSTANCE hInst /* Library instance handle. */ ,
DWORD reason /* Reason this function is being called. */ ,
LPVOID reserved /* Not used. */ )
{
switch (reason)
{
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
case DLL_THREAD_ATTACH:
break;
case DLL_THREAD_DETACH:
break;
}
/* Returns TRUE on success, FALSE on failure */
return TRUE;
}
</code></pre>
<p>dll.h</p>
<pre><code>#ifndef _DLL_H_
#define _DLL_H_
#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport) void hello(void)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllexport) void hello(void)
#endif /* Not BUILDING_DLL */
class DLLIMPORT DllClass
{
public:
DllClass();
virtual ~DllClass(void);
// Says hello world
DLLImport void hello(void);
private:
};
#endif /* _DLL_H_ */
</code></pre>
<p>I'd like to know what I'm doing wrong so I can document it and learn.</p>
<p>Thanks</p>
| c++ | [6] |
290,013 | 290,014 | Android - Remove top banner in new application? | <p>Is there a way to remove the banner that appears at the top of my new Android application that has the application name in it? I think I need to do something in the AndroidManifest.xml file, but I'm not sure what to do. </p>
| android | [4] |
Subsets and Splits