Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
568 views

google docs spreadsheet asp.net

i am using google docs spreadsheet API for .net and i want to insert new row the google docs using asp.net C# i am unable to that. Any one can help me??
2
votes
2answers
697 views

How to add new row to a html table in ExtJS

Hello I have worked with regular tables and javascript to add new rows at the end of table, could someone help me out with adding new row containing html elements at the end of table?
2
votes
0answers
462 views

wpf datagrid - sourcecollection count is 0 newitemplaceholder is not shown

After deleteing all the items in the bound collection, the datagrid.items.count is 1 and the only item in the item collection is newitemplaceholder but the datagrid does not show the ...
2
votes
3answers
172 views

Inserting extra data in a linq result but not to the data source or waiting for submiting changes on a context object

When I had a Typed DataTable with information retrieved from a SQL Server with a table adapter, I'm able to insert temporary data into that DataTable which I just want to use on execution time, and I ...
1
vote
0answers
443 views

Android: Adding new rows into a SQLite database

I am trying to add a new row inside an existing SQLite database, but for some reason it doesn't seem to do it. I've created this method to insert the row into the table: public void ...
1
vote
2answers
2k views

DataGridView CurrentRow excludes new row

I want to get the index of the current row of my DataGridView. The problem is, that if the current row is the new row, CurrentRow is set to the last row that is not the new row. I cannot check for the ...
0
votes
2answers
66 views

Syntax error in INSERT INTO statement. Can anyone help me with this?

Here is the exception: System.Data.OleDb.OleDbException was unhandled Message=Syntax error in INSERT INTO statement. Source=Microsoft Office Access Database ...
0
votes
0answers
48 views

cell focus to first cell of new row

I'm using mvvm and have a view\user control with a datagrid on it. When you add a new row on the datagrid it highlights this row but doesn't set the cursor to the first cell in that row. So the user ...
0
votes
2answers
720 views

Javascript: Add New Row To Table, skip th elements

Awhile back, I found the following javascript function that allows you to dynamically add a row to a table: function addRow(tableID) { var table = document.getElementById(tableID); ...
0
votes
1answer
86 views

I've Got to add a new record to my access DBMS through VS2008 and ADO.NET how?

This is my code: Imports System.Data Public Class frmNieuweGebruiker Private Sub frmNieuweGebruiker_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'verbinding maken ...
0
votes
1answer
512 views

How to get schema of our table without filling its DataTable before calling NewRow method?

I know that I should have schema of a table before calling NewRow method in order to add a new row to a DataTable.... But as you know, having the schema of a table means filling its DataTable by ...