Tagged Questions
The end tag has no wiki summary.
4
votes
5answers
801 views
What is <<<_END?
Hey. I'm new to PHP and don't understand what the point of <<<_END is. Could someone please explain when this should be used. I've looked at various examples and they all seem to have HTML ...
4
votes
9answers
653 views
How do I write a program that tells when my other program ends?
How do I write a program that tells when my other program ends?
3
votes
1answer
173 views
Node.js : How can I Output Data Before I end the Response?
Here is my snippet I tested it in Chrome 11, and Firefox 4:
var http = require('http');
http.createServer(function(request, response){
// Write Headers
response.writeHead(200);
// Write ...
3
votes
2answers
391 views
ASP.NET MVC3 Razor - How to conditionally quit or end or return or break a partial view?
With Razor, how do you conditionally quit or end or return or break a partial view?
@if (Model == null)
{
return;
}
3
votes
3answers
824 views
Find the end of stream for cin & ifstream?
I'm running myself through a C++ text book that I have as a refresher to C++ programming. One of the practice problems (without going into too much detail) wants me to define a function that can be ...
3
votes
7answers
479 views
Will plug-ins such as Flash, Silverlight, etc. eventually replace XHTML/CSS/Javascript?
I've been developing with XHTML, CSS and Javascript for about 4 years now.
I love it a lot and hate it a little. I've looked into Flash and Silverlight a bit, but as a developer, I'm not too keen on ...
3
votes
4answers
273 views
Fstreams C++
Hello
I want the ofstream to write at the end of a file without erasing its content inside.
how can i do it? (i'm talking about txt files,and C++)
Thanks.
2
votes
3answers
84 views
Find where sscanf finished reading the string
Using sscanf in a simple little project, and it's a neat little tool. However, I can't see any obvious way to find where in the input string sscanf decided it'd found all of its data and stopped ...
2
votes
1answer
217 views
Killing A Process in C#
So I'm just trying to explore the intricacies of C# and I wanted to make a simple program that would just kill a process. Yes I know, that is what Task Manager is for but this is supposed to be a ...
2
votes
2answers
7k views
How to force stop my android application programatically?
I'd like to force stop my android applicataon when I click closeButton.
This is my code.
protected void onCreate(Bundle savedInstanceState) {
this.setContentView(R.layout.layoutxml);
...
2
votes
2answers
92 views
php mysql place the record at end of the query
Here is the problem:
In the query I have order by name (alphabetically)
then I get the query in $res and you can loop it with while
while($rs = mysql_fetch_assoc($res)){
echo $rs['name'];
}
...
2
votes
4answers
340 views
adding characters at the start and end of each line in a file
What is the best way to add some characters at the start and end of each line? something like quotes etc?
Can it be done using Vim, or some other way?
2
votes
1answer
208 views
QXmlStreamWriter add at end of file
i got an QXmlStreamWriter and add some xml to it. when i do it first time its ok, but when i want to add text at end of file it dont work.
the only thing i got is first few lines i wrote good and ...
1
vote
1answer
13 views
Application_End being called too early/frequently
I am using a temporary database in a project that is disposed on Application_End:
protected void Application_End() {
if (_db != null) _db.Dispose();
}
The problem is that Application_End seems ...
1
vote
4answers
34 views
Trying to use a downloaded javascript endsWith function, not working
I downloaded this endsWith function -
String.prototype.endsWith = function(suffix) {
return this.match(suffix+"$") == suffix;
}
and am trying to use it to verify a form input, with -
function ...
1
vote
1answer
98 views
End a C program with the enter key
I am trying that when the user hits the enter key the program should end. for some reason it doesn't seem to work. when i use c is not equal to enter key it takes in and extra integer in c(last ...
1
vote
2answers
42 views
how to use jQuery.end()?
From what I read in the docs, end() will return the initial object, in my case $(this), right?
$('.el').delegate('a.off', 'click', function(){
...
1
vote
1answer
98 views
Python AES decrypt string end with different char
I have an input string and I'm encrypting it with MySQL's AES_ENCRYPT and then decrypting it with python (not mysql AES_DECRYPT). And I printed out some tests of the decrypted string:
print ...
1
vote
1answer
291 views
jquery start date greater than end date validation
hi i am beginner in jquery and used other answer to solve my problem
jQuery.validator.addMethod("greaterThan", function(value, element, params) {
return new Date(value) > new ...
1
vote
2answers
42 views
i keep getting an “Unexpected $end” in my php code…
do not know what im doing wrong. have been looking through other forums and it says that it might have to do with not having {} curly braces closed or a short php tag "
<?php
if (count($_POST) ...
1
vote
1answer
164 views
Youtube “end=” embed tag not working?
I am trying to embed a Youtube video on my site with specific start and end times. Sites such as snipsnip.it and splicd.com use the start= and end= tags in the iframe src like so:
<iframe ...
1
vote
2answers
118 views
One if else statement will not execute
Below is the section I am having trouble with
if(transition == *(vec.end()-1)) { //vec contains the ASCI code
vec.pop_back();
--vec_index;
...
1
vote
3answers
147 views
Div to open after scrolling to bottom of page
I would like a hidden div to open once the reader has reached the bottom of the page.
there is one way of doing it here but it requires ASP and MySQL..
Surely there is a more simple way with ...
1
vote
1answer
110 views
How to place cursor at the end of an input field with jQuery validation?
I have a problem with input validation jQuery code.
I'd like to have a solution for this specific code.
In the html:
<input type="text" id="myInput">
In the jQuery:
$("#myInput").keyup(
...
1
vote
3answers
126 views
PHP Check if any array values are present at the end of a string
I am trying to test if a string made up of multiple words has any values from an array at the end of it. The following is what I have so far, just stuck on how to check if the string is longer than ...
1
vote
2answers
381 views
Jquery - Apply Style on CSS Animation End
This is probably really easy but since I'm new to this I can't seem to figure it out :) How would I use jQuery to determine when a CSS animation for an element has ended and then apply a new style to ...
1
vote
1answer
217 views
setEndDate() in smartgwt
I have a requirement to prevent the user from selecting date which is greater than current date. I tried to enforce it by setting setEndDate(new Date()) but it dint work.
DateItem dateItem = new ...
1
vote
1answer
125 views
C++, SFML 1.6, Music, check if it has ended, OnStopped?
is it possible to make SFML 1.6 handle end of music by itself? Currently I have this:
//in music.cpp
music.Play()
//in main.cpp
//on every frame check for end of music
if(music.getStatus() == ...
1
vote
1answer
33 views
“Tunable Load Generation Front End”?
Hey stackers! I am a softmore at Penn State and recently got an internship for the summer. My job summary is as follows:
Job Summary: Selected Intern will design, code and test a Tunable Load ...
1
vote
1answer
110 views
endpoints and global.asax routes registering
what's the difference between defining endpoints in web.config and registering routes in global.asax ( for the services )like this :
protected void Application_Start(object sender, EventArgs e) ...
1
vote
2answers
325 views
netbeans does not recognise <<<_END
I'm trying to learn PHP using netbeans although I've come up against a problem with the interpreter and I can't tell how to fix it.
It's to do with the notation <<<_END. It should, from what ...
1
vote
1answer
286 views
Retrieve the End position of the Caret in the TextBox to put the Caret in the next TextBox
How do I find the end position of the Caret in a WPF textbox so I can`t move right anymore with the caret?
1
vote
2answers
224 views
cycle and erase elments from std::set
I have a std::set and I need to erase similar adjacet elements:
DnaSet::const_iterator next = dna_list.begin();
DnaSet::const_iterator actual = next;
++next;
while(next != dna_list.end()) // cycle ...
1
vote
2answers
61 views
unexpected $end
I have this error:
Parse error: syntax error, unexpected $end in /...../student.php on line 57
note: the lines in "student.php" it's only 56 lines, so the error appear in addition line !
<?php
...
1
vote
4answers
391 views
If key is the last in array?
How can i check if this key is the last in an array?
$array = array("a","b","c");
The value "c" would have the key 2, is there some code like this is_end(2) which returns true or false depending if ...
0
votes
0answers
3 views
Differences between Response.End() and Response.Flush()
I have code like this:
context.HttpContext.Response.Clear();
context.HttpContext.Response.Write(htmlString);
context.HttpContext.Response.End();
But when ...
0
votes
0answers
30 views
Eclipse : Cursor beyond end of line - is there any solution?
I'm looking for "Editor - Cursor beyond end of line" in Eclipse
And found same question at stackoverflow.com ::
Eclipse : Cursor beyond end of line - possible?
Is there any solution to "Cursor ...
0
votes
0answers
47 views
Esoteric calendar in Java [closed]
For this project our university combined in parallel all the computing power available on campus this Christmas to simulate a calendar that was used by Mayan civilization.
Specifically we need to ...
0
votes
4answers
44 views
EndsWith method doesn't match strings that end with a question mark
Is there a simple way to make this function/method work with strings that end with a question mark?
String.prototype.EndsWith = function(str){return (this.match(str+"$")==str)}
var aa='a cat';
var ...
0
votes
2answers
41 views
P-end-tag (</p>) is not needed in HTML
P-end-tag is only required in XHTML, not in HTML. But some times you have to close it any way eg. when you align the paragraph left/right/center.
Would it for any reason be a bad idea to mix the ...
0
votes
1answer
35 views
Receiving A call Back from EndCall Key
the app i am developing needs to know when someone presses the End Call button.
It doesn't need to alter the button's function at all, it merely needs to know when it is pressed.
I would just like ...
0
votes
0answers
78 views
Drag PushPin Event BingMaps 7.0
I am using Bing Maps 7.0 and I have a pushpin you can drag through the map to select a location.
The problem is that if I move the mouse outside de map. In that case the pins continue moving until I ...
0
votes
2answers
113 views
Stop the Activity
I had read about this thread around the Internet but unlucky to find a solution. The solutions that are available did not work for me like adding the android:noHistory="true" in the Manifest file. ...
0
votes
1answer
49 views
how to end a dialog mfc application from CDialog::OnInitDialog or immediately after this function ends
At some case in my application I want to end the application in the dialog's OnInitDialog or immediately after this function. Is there any way to do it? I tried using windows messages - in ...
0
votes
1answer
89 views
Strict Standards: Only variables should be passed by reference in
How do you remove this warning? i have a code that gets unique values from an multidimensional array, then get the last index
$catchColors[]= array();
for ($i = 0; $i < $totalRows; $i++) {
...
0
votes
1answer
116 views
Android: reject or end a call
Around the web there are a lot of answers but no one answer to the question in a absolute way: it is possible or it isn't possible to end o reject a call from API?
Here some one says yes, but with ...
0
votes
2answers
79 views
Infinite loop after program termination
So this program was for an assignment. The due date passed and I turned in what I had and got a good grade, but this bug has been bothering me. It's not technically an assignment anymore, but I'd ...
0
votes
2answers
108 views
How to set the cursor position at the end of a string in a text field using jQuery?
I am using jQuery 1.6 and I have a text field for which I would like the cursor to be positioned at the end of the string\text present in that after focusing on the field.
There is a way to make that ...
0
votes
6answers
100 views
Java get end of string?
So in java, I know that str.endsWith(suffix) TESTS if the str ends with something, but lets say I have a file, saved as a text file. I have the line "You are old". How would I take the the "old" and ...
0
votes
3answers
54 views
how to make this work ? CASE & LIMIT
ORDER BY bider_price
DESC LIMIT
(CASE WHEN id_bid_writer = "'.$_SESSION['id_member'].'"
THEN 0,1
ELSE 0,2
END)