Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

VaibhavTiparadi

@VaibhavTiparadi
About
Posts
26
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • pdf to image conversion
    V VaibhavTiparadi

    hi all, i need to convert each page of pdf document into separate image file... any links or reference? pls help thanx in advance.

    ASP.NET help question

  • delete query for deleting duplicate rows efficiently
    V VaibhavTiparadi

    hi all, i have a sql table which contains multiple entries like 3 duplicate records. now i have to delete 2 records out of 3 duplicates and keep only one unique record(last inserted). can anybody pls help me in writing such a delete query...? thanx in advance.

    Database database help question

  • CMS
    V VaibhavTiparadi

    Hello all, i need to develop Content mgmt. system in ASP.NET/MySQL any idea on how to start....?

    ASP.NET csharp asp-net mysql tutorial question

  • Content management
    V VaibhavTiparadi

    Hi all, I have to create content management for a website... how should i start ... what should i refer.... pls help me.. Thanx in advance

    ASP.NET help

  • Import Excel Sheet datas into mysql
    V VaibhavTiparadi

    i think i had replied u before with proper code... u better check ur last 3-4 posts where u asked the same question.

    ASP.NET csharp mysql help

  • Import Excel Sheet datas into mysql
    V VaibhavTiparadi

    //------------------------------------------- //To Extract data from excel sheet and store it in Dataset. private DataSet PerformQueryIntoDataSet(string strFileName,string sheetName) { string strConn; strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + strFileName + ";" + "Extended Properties=" + Convert.ToChar(34).ToString() + "Excel 8.0;HDR=NO; IMEX=1;" + Convert.ToChar(34).ToString(); //You must use the $ after the object you reference in the spreadsheet OleDbDataAdapter myCommand = new OleDbDataAdapter("SELECT * FROM ["+ sheetName + "$]", strConn); DataSet myData = new DataSet(); myCommand.Fill(myData, sheetName); return myData; } //------------------------------------------- //To get number of records in the sheet [Datasetname].Tables[""].Rows.Count; //To extract data from table in dataset. DataRow RowName = (DataRow)[Datasetname].Tables[""].Select().GetValue(rowIndex); string strValue = RowName[0].ToString().ToUpper().Trim(); //Then check for validation and store it in Database.

    There's never a Wronge Time To Do The Right Thing !!

    ASP.NET csharp database asp-net mysql sql-server

  • Repeater Control data export problem
    V VaibhavTiparadi

    hi all I am trying to export contents of Repeater Control data to excel file...which also contains a check box in one of its columns... but i have export without that checkbox control column.. how can i do it..pls help (ASP.NET/C#.NET)

    Web Development csharp help asp-net question

  • Repeater Control Export Problem
    V VaibhavTiparadi

    hi all I am trying to export contents of Repeater Control data to excel file...which also contains a check box in one of its columns... but i have export without that checkbox control column.. how can i do it..pls help (ASP.NET/C#.NET)

    ASP.NET csharp help asp-net question

  • String to integer Conversion
    V VaibhavTiparadi

    hey pls send me ur email id ...so that i can send u sample project..which works..k

    ASP.NET help question

  • String to integer Conversion
    V VaibhavTiparadi

    can u pls show me ur code... so that i can help u out.

    ASP.NET help question

  • String to integer Conversion
    V VaibhavTiparadi

    Then in this case u can use Regular exp. validators for each textbox.. and also pls update the reg. exp. to "^[0-9]*$".. and about placing things in table would not make any difference...

    ASP.NET help question

  • String to integer Conversion
    V VaibhavTiparadi

    it gives the error only when txtnumber.text contains characters other than digit. before converting string value to integer u need to validate the input string.... by say regular exp... Regex reNo = new Regex(@"^[0-9]{*}$"); if (reNo.Match(txtnumber.text).Success == false) { //display err. msg. "invalid data" } else { //Convert to integer Int32.parse(txtnumber.text) } ///this way it will not give run time err.

    ASP.NET help question

  • read write text file
    V VaibhavTiparadi

    hi all i am trying to search specific text and replace it with new data in a text file through C#...

    ASP.NET csharp

  • hai can u make it out
    V VaibhavTiparadi

    Here is a C# code //------------------------------------------- private DataSet PerformQueryIntoDataSet(string strFileName,string sheetName) { string strConn; strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + strFileName + ";" + "Extended Properties=" + Convert.ToChar(34).ToString() + "Excel 8.0;HDR=YES; IMEX=1;" + Convert.ToChar(34).ToString(); //You must use the $ after the object you reference in the spreadsheet OleDbDataAdapter myCommand = new OleDbDataAdapter("SELECT * FROM ["+ sheetName + "$]", strConn); DataSet myData = new DataSet(); myCommand.Fill(myData, sheetName); return myData; } //-------------------------------------------

    ASP.NET question

  • upload excel data in oracle
    V VaibhavTiparadi

    anyways...thanx for the help..

    ASP.NET csharp database oracle question

  • upload excel data in oracle
    V VaibhavTiparadi

    can u pls give me detailed information on this? and during uploading i am validating the input data whether record already exists...etc. is it possible to validate data.... in the other direct way ...as u mentioned above..

    ASP.NET csharp database oracle question

  • upload excel data in oracle
    V VaibhavTiparadi

    hi all i m trying to upload large amount of data to oracle database.. through excel file... in .net.. is there any standard way to do that? cause it is taking too much time to upload data in oracle.

    ASP.NET csharp database oracle question

  • import excel data
    V VaibhavTiparadi

    i had to find a specific sheet (and extract data from that sheet) from given excel file which contains other sheets as well..in c#.NET. is it possible to do that in .NET pls help.

    There's never a Wronge Time To Do The Right Thing !!

    ASP.NET csharp help

  • Calender control validation in javascript
    V VaibhavTiparadi

    hi all. i m using calendar control in ASP.NET. pls tell me how to validate it using javascript. i want to make it mandatory to select a date.. thanks in advance.

    There's never a Wronge Time To Do The Right Thing !!

    ASP.NET csharp javascript asp-net tutorial

  • Barcode image generation
    V VaibhavTiparadi

    hi i have generated barcode ID's and print it as well but i am not able to generate barcode preview image.... pls help.

    There's never a Wronge Time To Do The Right Thing !!

    ASP.NET help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups