Click here to Skip to main content
15,910,277 members

Comments by rebounderarun (Top 5 by date)

rebounderarun 13-Aug-14 11:37am View    
nice Solution for empty cells using openXML concept
rebounderarun 4-Feb-14 2:29am View    
Try Vendor filters but some of them was not free.
http://video.software.informer.com/download-video-merge-filter-directshow/
rebounderarun 23-Sep-13 5:15am View    
Microsoft.Office.Interop.PowerPoint.Shape using this Iam creating a ppt presentation .
in a slide I am adding table using shapes.TAble. I want to add Hyperlink Inside the table.
but I am adding like below given code
i_Shape = i_Slide.Shapes.AddShape(Microsoft.Office.Core.MsoAutoShapeType.msoShapeRectangle, s32_Left, s32_Top, s32_Width, s32_Height);
i_Shape.TextFrame.TextRange.Text = number.ToString();
i_Shape.TextFrame.TextRange.Font.Name = "Verdana";
i_Shape.TextFrame.TextRange.Font.Size = 15;
i_Shape.Fill.Visible = MsoTriState.msoFalse;
i_Shape.Line.Visible = MsoTriState.msoFalse;
i_Shape.TextFrame.TextRange.Font.Bold = MsoTriState.msoTrue;
//i_Shape.TextFrame.TextRange.ActionSettings[PpMouseActivation.ppMouseClick].Hyperlink.Address = Path;//Temp
i_Shape.TextFrame.TextRange.ActionSettings[PpMouseActivation.ppMouseClick].Hyperlink.Address = x_Shape.InnerText.Replace(number + ";", "");
i_Shape.TextFrame.TextRange.Font.Color.RGB = 650;
if i do this the hyperlink is created separately it is not creating inside Table.
rebounderarun 21-Jun-13 2:06am View    
ok i will check Thanks.
rebounderarun 21-Jun-13 1:37am View    
Thanks Rajesh, iam not good in thread i want to know how to call a thread continuously.
Shall i want to put join or else abort.please tell me or post any example Thanks.