The last tag has no wiki summary.
1
vote
4answers
54 views
Finding last iteration in for in loop javascript
I am having following sample code
var obj = { a: {b:1, c:3 }, d :{f:5}}
var string = "";
for(var key in obj){
for(var subkey in obj[key]){
string += ...
0
votes
1answer
40 views
grid scrolling by code in C#
I want scroll gridview by code in C#. when I added a row,then gridview show the last row. I used this:
dataGridView1.CurrentCell = dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1];
but does ...
2
votes
1answer
21 views
Read first childnode of the last element
Im using ASP.NET, C# and XMLDOC for reading an XMl file.
This is my XML file:
<?xml version="1.0" encoding="utf-8" ?>
<News>
<article>
<id>1</id>
...
0
votes
3answers
37 views
Removing last comma in array when looping without turning it into a string
I have a set of tags that I stored in the database separated by spaces as a string. When I echo them out with php, I explode them and loop through them with a for loop.
My code looks something like ...
0
votes
2answers
21 views
“last” style not working. Margin
HTML
<div class="col-3"><a class="fancybox-effects-c" rel="group" href="images/image1.jpg" title="New Home Number Two"><img src="images/thumb_image1.jpg" class="fade" alt="" ...
0
votes
1answer
5 views
Filling Map with GregorianCalendar
I have a problem with filling a LinkedHashMap with GregorianCalendar-Objects.
I creat a GregorianCalendar starttime. Then I fill it into an ArrayList and add 200 Milliseconds 50 times. After that, I ...
0
votes
0answers
13 views
jquery-ui selectable : last call to the selected event?
on a jQuery UI selectable widget, I intercept the selection of a group of item by using the follwing code:
$('#selectableCellPlanning').selectable({
selected: function( event, ui ) { ...
0
votes
0answers
22 views
shortcode _last not working
I've been working on a few Wordpress sites lately and all of a sudden one of them will accept normal shortcodes like [one_half] but as soon as I try [one_half_last] or anything with _last it actually ...
1
vote
1answer
42 views
How to print the most recent last call on linux without exiting the program
When I execute a python script on linux and interrupt the process, it gives me the " most recent call last":
Traceback (most recent call last):
File "clustermptest.py", line 38, in <module>
...
0
votes
2answers
47 views
Last 3 Digits using Regex [closed]
I know there are regex experts out there and I am not one of them.
How to ask Powershell to check last 3 digits and verify that 1st digit is a dash "-" and next two digits are numeric?
0
votes
1answer
37 views
FIND THE LAST REGISTER ON A TABLE SQL
I have this:
Table CLIENT:
CLI_ID STUDENT
1 name1
2 name2
3 name3
Table UNIVERSITY:
UNIV_ID CLI_ID NAME
1...........1 harvard (2012)
2...........1 ...
0
votes
0answers
14 views
I want show each page last editor last upate date information
I am using MediaWIKI 1.19
And I want show each page on top, "Last updated 2003.2.2 by Writor XXX"
So. I added to 'tagline' as "Last updated {{REVISIONYEAR}} {{REVISIONMONTH}}{{REVISIONDAY2}} by ...
0
votes
2answers
55 views
ASPX page loading data from last session
I'm creating a C# application with a ASP.net frontend, however I'm having a problem at the moment. I want to the user to enter some information, which once submitted, will be displayed within a ...
0
votes
1answer
65 views
How to find last element in an array by specific key
i have to find the first and the last element by a specific key (with a binary search method). I'm already done with the searchFirst method but i'm not able to complete the searchLast method. ...
0
votes
0answers
68 views
Google Apps API last account activity (need to view more than 10 Entrys)
I've been redirected here from Google technical support.
One of my Google Apps account has been victim of stolen credentials and we are investigating how and when it happened.
The function "Details" ...
0
votes
0answers
42 views
tinyMCE richtextbox last character is cutting off
I am using TinyMCE RichTextBox in ASP.NET. when we edit, we entered the text after existing text, into the RichTextBox and save, then last character is cutting off.
Please help me. Thank you.
0
votes
1answer
54 views
Deleting the last element of a single-linked-list is not working
I have a Single-Linked-List and I just want to delete the last element of that list. I checked it, and it doesn't work. I don't know why.
Check out my code (P.S. I want a recursive solution):
// ...
0
votes
0answers
15 views
display last 10 visited pages in iFrame of the page
I have this below code which working fine when we navigate thru different pages on a website but in my case I have a single page and an iframe with in it so I am loading all the different pages in the ...
0
votes
0answers
15 views
How to focus last row of table in my Jcomponent by using swings?
How to focus last row of table in my Jcomponent by using swings?
public void displayInvoiceDetails(final JDialog dialog, String id,
String title) {
JRootPane pane = ...
0
votes
0answers
76 views
SQL Query SELECT Max, Min and Most recent Transaction (second to Last)
What SQL select query (SQL Server 2008) would help me obtain the MAX, MIN, AVG and LAST price for each corrensponding line item of a given Purchase Order (PO)?
However, the calculations of MAX, MIN, ...
0
votes
0answers
50 views
How to keep last login time fixed even page refreshed
I am trying to display Last Login Date&Time on my page. I am able to do it but the problem is everytime the page is refreshed or reloaded this time is changing to the time of refresh/reload. I ...
0
votes
2answers
44 views
Display of last 10 visited pages from different Apps
I have nearly 20+ pages from different Web application that a user can access once he login. I have this 'Recent Activity' section on my Home page where I have to show the last 10 visited pages by the ...
0
votes
3answers
63 views
.last and .each in rails
I'm trying to get the last record in a view when a new sub comment is created...my code is the following...
<% @subcomment = @comment.subcomments.order("created_at").last %>
<% ...
1
vote
3answers
86 views
AWK -Print the next to last field of each line of input file
I have an input file file the content of which constantly is updated
with various number of fields, what I am trying to is to print out to a new file
the next to last field of each line of input ...
0
votes
1answer
28 views
Select most recent qualified type within a date range
I have a data set that contains IDs, Status Dates (ordinal) and Status Types.
Status Types are Open, Transfer or Close
The Primary Key is a combination of ID and Status Date. So an ID will have ...
-1
votes
4answers
86 views
Get the correct last ID from table
How can I make a SQL query in PDO know what the next ID is? I have tested $sql->lastInsertId() and SELECT LAST_INSERT_ID() FROM my_table but according to those the last ID is 116 when the last ID ...
0
votes
1answer
52 views
Reference Cell to the left of last used cell of another column
I am trying to get an excel forumal that will populate that Cell's text referenceing the last used cell in another column.
For example I want the output to be the date of the last used cell in ...
0
votes
3answers
86 views
Ruby on rails get last record from result set
@connection = ActiveRecord::Base.establish_connection(
:adapter => "mysql2",
:host => "localhost",
:database => "siteconfig_development",
...
0
votes
0answers
89 views
Tiny Carousel Last Item Cut
I have a question about theTiny Carousel. If I have a viewport for example 800px width and the items in the carousel are 300px, I only see the last item cut off, but can't reach it.
How could this be ...
0
votes
3answers
223 views
How to get the last words in a string with preg_match
I'am trying to get the last few words in a string.
For the last word I'am using this:
$string = "Hallo dies ist ein extrem langer Text den ich gern gekuerz haette, leider bin ich selbst zu doof ...
1
vote
4answers
102 views
How to find last id in a HTML with JavaScript
I have a problem with my javascript and I need to find the last id of a div in my html document. I can find it by looking at it, but I want it automatic in the JavaScript.
<body>
<div ...
0
votes
0answers
108 views
Google Spreadsheet assignment list, copy paste into another sheet
I've been trying and I think getting close, to copy the last row of sheet 1 (Job Entry) and paste it into one of six sheet named for the process they represent. Here is the code I'm using. This sort ...
0
votes
3answers
58 views
Remove the last number from a string using PHP?
I would like to remove the last number including the dash from this string:
hello-world-093
the result should be:
hello-world
0
votes
0answers
72 views
ftp read last line text file [closed]
Is there a way to read the last line ( or a couple last lines ) from a text file in an FTP ? without reading the whole file ( very text big file )
I would prefer a solution implemented python or C# if ...
0
votes
0answers
20 views
Open last modified file in map
I have a map with Excel files. I create a new excel file every week and now I want to be able to have a application in another map that automatically opens the latest created or modified excel file in ...
1
vote
1answer
73 views
django objects.all queryset doesn't return all objects from database
So I'm using inheritance in django with the following classes:
class main_menu(node):
"""
main_menu(node)
Has no extra fields. All children of the root node must
be main_menu nodes
...
1
vote
2answers
69 views
How to select only last rows that satisfies conditions?
I'm trying to select rows where x=5, but x changes constantly. So I have such a table:
id x
---- ---
1 5
2 6
3 4
4 5
5 5
So I want to perform a query like "SELECT * ...
0
votes
1answer
75 views
How to get the last N lines from an unlimited Popen.stdout object
I'm trying to get the last N lines from an unlimited Popen.stdout object at the current time. And by unlimited I mean unlimited/many log entries which are getting written to stdout.
I tried ...
-1
votes
1answer
113 views
sum of last field
I have a trouble to sum fields.
This is what I have: I have list of employees and two rows of values for each, I also have calculations in SQL of running total for the 8 and 16 weeks for each employee ...
1
vote
1answer
102 views
c# last insert id
I'm using a stored procedure with this sql:
INSERT INTO [dbTblUsers]([strUsername], [strPassword])
VALUES (@p1,@p2);
SELECT @@IDENTITY;
And calling the procedure:
// Insert new user
nId = ...
1
vote
3answers
103 views
Select last distinct records in mysql
I have a table in mysql have a lot of data.i want to display only distinct and last saved data...here is what i have
CREATE TABLE amounts(
id MEDIUMINT NOT NULL AUTO_INCREMENT,
bank_id INT,
...
0
votes
0answers
13 views
where is stored article “last update” data?
Does anybody know a simple solution - piece of code, that can be used to add in article it's last update data?
I would need this for third party component, that does not have an option to show last ...
1
vote
0answers
96 views
Difference between last byte time and response time
what is the difference between last byte time and response time in web applications.
I found
Last byte time: the time in seconds it took to download the final server response
Response time: the ...
0
votes
2answers
68 views
Do something depend on element id with jQuery
I have some function inside click action. I need to stop this function if the last of my html list element will be have some id, so i do this but funtion not works... Can you help me?
...
0
votes
1answer
97 views
Regex cut last character from expression if it has more than 4 characters
I'm looking for a way to cut the last character from a expression if it has more than 4 characters using regex
e.g.
187
6
31673
9667
11857
07
after processing should look like:
187
6
3167
9667
...
0
votes
1answer
297 views
Using max() function with entity framework throws an exception
So I need to get the max value of a column (or the last one) using entity framework and both of these queries throw exceptions:
(The ID I'm trying to retrieve is of type varchar, but it works in raw ...
0
votes
1answer
91 views
Agenda page listing last 6 posts, grouped by month(dsc)
Could I use some help? I'm worse than a rookie with PHP stuff.
I'm trying to create a loop that requests posts from an specific category(agenda). I'd need 6 posts from an specific month stacked in 2 ...
0
votes
2answers
180 views
Using MySQL last insert id for the same user
I'm using the mysql_insert_id within my code to get an auto increment.
I have read around and it looks like there is no race condition regarding this for different user connections, but what about ...
-1
votes
2answers
107 views
Last() Identifier not found in C++/CLI
My code is as below (this is for doubly linked list structure, adding a new node):
void addhead(student* node_, student*& olist)
{
if(!olist)
{
olist=node_;
...
-1
votes
4answers
71 views
How to show last comments in php? [closed]
I have table with name "Comments", there is few columns: ID, User, author, date, post
What I want is to show last 10/20 comments, where newest is from top, all by vertically.



