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
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
Hai u can use pdfnet library for more queries see this link http://www.pdftron.com/net/index.html
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
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
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
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
[Message Deleted]
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
[Message Deleted]
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
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
[Message Deleted]
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
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#
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
Hai how can we write the generic list to excel file using C# can any one help in this
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
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
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
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