Click here to Skip to main content
15,900,511 members

Comments by ashok rathore (Top 5 by date)

ashok rathore 29-Jul-15 9:28am View    
I am unable to create google sheet by using this code as well, I have search too much but couldn't get any success.
ashok rathore 29-Jul-15 9:27am View    
var requestFactory =
new GOAuth2RequestFactory(null, "MySpreadsheetIntegration-v1", parameters);
var service = new SpreadsheetsService("MySpreadsheetIntegration-v1") {RequestFactory = requestFactory};

//SpreadsheetsService service = new SpreadsheetsService("MySpreadsheetIntegration-v1");

// TODO: Authorize the service object for a specific user (see other sections)

// Instantiate a SpreadsheetQuery object to retrieve spreadsheets.
var query = new SpreadsheetQuery();

// Make a request to the API and get all spreadsheets.
var feed = service.Query(query);

// TODO: Choose a spreadsheet more intelligently based on your
// app's needs.
var spreadsheet = (SpreadsheetEntry)feed.Entries[0];

// Create a local representation of the new worksheet.
var worksheet = new WorksheetEntry {Title = {Text = "New Worksheet"}, Cols = 10, Rows = 20};

// Send the local representation of the worksheet to the API for
// creation. The URL to use here is the worksheet feed URL of our
// spreadsheet.
var wsFeed = spreadsheet.Worksheets;
service.Insert(wsFeed, worksheet);
ashok rathore 20-Nov-13 3:02am View    
hi,
I have done these requirement in mvc4.
Please you need to download the js/css using google.

Bellow url help you to download the js and css.

http://jqueryui.com/dialog/
http://trirand.com/blog/jqgrid/jqgrid.html

Thanks,
ashok rathore 20-Jun-12 4:36am View    
Hi,

How we can show image from database in image control in Windows Phone 7 control.

I applied the code:

try
{
var data = (byte[])value;

using (var stream = new MemoryStream(data))
{
var source=new BitmapImage();
source.SetSource(stream);

return source;
}

}
catch (Exception ex)
{

throw ex;
}


But I gets error"Unspecified error"

How can I resolve it

I followed this link:"http://www.dotnetcurry.com/ShowArticle.aspx?ID=585"

Thanks
ashok rathore 3-Jan-12 15:20pm View    
How we can read sms from sim card . that is inserted in datacard .

please help me

Thanks ....