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
R

ramyanaidu

@ramyanaidu
About
Posts
30
Topics
28
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Insert Images along with images name to PDF C#
    R ramyanaidu

    I know how to insert images to PDF but i need to how can we insert image and image name below it in PDF using C# or Vb or VB.net

    RamyaNaidu

    C# csharp tutorial

  • PDF Library
    R ramyanaidu

    Hai u can use pdfnet library for more queries see this link http://www.pdftron.com/net/index.html

    RamyaNaidu

    C# csharp question

  • paper size in pdf using c#
    R ramyanaidu

    Hai i have created pdf from excel the default paper size is potrait but i need the lanscape means i need to change the size of page in pdf i have used acrobat dll can any one help me please Thanks in Advance

    RamyaNaidu

    C# csharp help

  • An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll in c#
    R ramyanaidu

    Hi I have classes property and sketch in htis property will be linked to skecth class and foure different classes which r linked to the skecth class and two generic list one is for skecth and other is for data of type Object when i run the program i iam grtting the error here public Sketch FirstData() { // return Datas[Datas.Count]; foreach (Object data in Datas) { if (data is Door) { Door door = (Door)data; } if (data is Fixture) { Fixture fixture = (Fixture)data; } if (data is Wall) { Wall wall = (Wall)data; } if (data is Window) { Window window = (Window)data; } //return } return getSketch(1); } private Sketch getSketch(Int32 id) { foreach (Object data in Datas) { if (data is Door) { Door door = (Door)data; door.Id = id; } if (data is Fixture) { Fixture fixture = (Fixture)data; fixture.Id = id; } if (data is Wall) { Wall wall = (Wall)data; wall.Id = id; } if (data is Window) { Window window = (Window)data; window.Id = id; } } return getSketch(id); } An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll how can i slove this problem? can any one help me in this

    C# help question csharp

  • populate data to generic list from classes using c#
    R ramyanaidu

    yes my problem is similar to the above one were i have four different classes and in the window from were i have text boxes if I enter the data based on that data type i need to add the remaining items to that class and to generic list but in main problem is they r nor high lighting when i write the program under the window from can u pls help me

    RamyaNaidu

    C# csharp help question

  • populate data to generic list from classes using c#
    R ramyanaidu

    Hai i working on some project were i have four different classes when i enter the text in textbox based on that it is read to the that class and it is to be added to generic list how can i work on this can any help me in this

    C# csharp help question

  • [Message Deleted]
    R ramyanaidu

    [Message Deleted]

    C#

  • SET RANGE OF ANGLES TO TEXTBOX USING C#
    R ramyanaidu

    Hai i have to set range of angles to text box what it exactly mean is when i type value of angle in textbox it should allow values from 0 to 360 if the vlaue is nore than that i need to message so plz help me i this

    RamyaNaidu

    C# csharp help

  • [Message Deleted]
    R ramyanaidu

    [Message Deleted]

    C#

  • Drawing 2D lines using c#
    R ramyanaidu

    Hai i have a doubt were can i draw 2D lines rather than bitmap and window form,can any one suggest me the better way to draw and save them

    C# graphics csharp

  • writing excel cell values to generic list using c#
    R ramyanaidu

    Sketchs.Add(new SKETCH(SketchWorkSheet.Cells[i, 3].ToString(), SketchWorkSheet.Cells[i, 4].ToString(), SketchWorkSheet.Cells[i, 5].ToString(), SketchWorkSheet.Cells[i, 6].ToString(), SketchWorkSheet.Cells[i, 7].ToString(), SketchWorkSheet.Cells[i, 8].ToString(), Convert.ToDouble(SketchWorkSheet.Cells[i,9]))); when i run this i get an error as Input string was not in a correct format Can any one help me in this

    RamyaNaidu

    C# help csharp

  • [Message Deleted]
    R ramyanaidu

    [Message Deleted]

    C#

  • how to get present item from generic list using c#
    R ramyanaidu

    Hai i am doing program using list i need to add item to list using first,next,last buttons contioniously when i press previous button it should display the previous item in the list plz any on help me in this case

    C# csharp help tutorial

  • open an Excel file using c#
    R ramyanaidu

    hai i need to open an excel file when i click on the open button i need to open in visible mode of excel file it means just display the excel file using c#

    C# csharp

  • Problem in opening an excel file using C#
    R ramyanaidu

    OpenFileDialog ofd = new OpenFileDialog(); ofd.InitialDirectory = @":D\\"; ofd.Filter = "Excel Files(*.xls)|*.xls|" + "All Text Files(*.*)|*.*"; ofd.FilterIndex = 1; if (ofd.ShowDialog() == DialogResult.OK) { excelApp = new Excel.Application(); workBook = excelApp.Workbooks.Open(ofd.FileName, 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true,1,0); When i run this code i get an error as "Unable to cast COM object of type 'Excel.ApplicationClass' to interface type 'Excel._Application'. This operation failed because the QueryInterface call on the COM component for the interface with IID "" plz any one help me in this Regards Ramya

    C# help csharp com

  • save list to excel file
    R ramyanaidu

    Hai how can we write the generic list to excel file using C# can any one help in this

    C# csharp help

  • Adding items to List
    R ramyanaidu

    Hai iam working with list and i have added items to list and how can i find whether the items r added to list or not using windows applications using c# and how can i display the items in list in windows applications plz any one help me in this problem

    C# help csharp question

  • Regarding generic list
    R ramyanaidu

    Hai iam working with generic list the data from combobox selected items is added to list using first next and last buttons continiously and i need this list items to be write into an excel file when i click on save button plz any one help me in this In this project there are four classes and the item which is selected in combobox is to be added to list and when we press save it is to saved to excel file using c# plz help me

    C# csharp help

  • save picturebox image using c#
    R ramyanaidu

    ImageFormat format = ImageFormat.Jpeg; SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "JPEG Files(*.jpg)|*.jpg"; if (sfd.ShowDialog() == DialogResult.OK) { image.Image.Save(sfd.FileName, format); } Hai friends whrn i was using this code fro saving picture box image as jpeg it was not saving and if save and reopen the jpeg file it was balnk can any one help me out in this

    C# csharp help

  • Append data to excel using c#
    R ramyanaidu

    i have code to save the data to new excel files i need to save and append tha data to already saved file using c# can any one help in this for me Ramya

    C# csharp 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