Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
1
1 Commented Post
0 Endorsements
~4K People Reached
Interests
Software Enginering
Favorite Tags
Member Avatar for kieky

Hi All.. I really need your help. Can u help me how to move team project to another Project Colletion in TFS 2013 ? Many Thanks, Kieky

Member Avatar for pritaeas
0
94
Member Avatar for kieky

Hi all..i have some trouble to insert data into 2 table.. i use asp.net with C# language..this is my table : DOCUMENT id_document name description VERSI Id_versi Id_document url_file size type modifiedon relationship of document and versi is one to many.. this is my code, but i cant store anything.. …

Member Avatar for arunkumars
0
275
Member Avatar for kieky

Hi all.. can u help me to fix this : **Compilation Error** **Description:** An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. **Compiler Error Message:** CS1061: 'Group' does not contain a definition …

Member Avatar for hericles
0
110
Member Avatar for kieky

Hi, i really need your help.. Can u help me to get selected value from listview? So that i can read one record.. thanks before..

Member Avatar for stbuchok
0
61
Member Avatar for kieky

can i using gridview to create friends list like this? [URL="http://www.4shared.com/photo/xxPeJoHG/tanya.html"]http://www.4shared.com/photo/xxPeJoHG/tanya.html[/URL]

Member Avatar for nik11
0
269
Member Avatar for kieky

Whenever i download docx, xlsx ar pptx files from IE, IE will save them as a zip file. whats wrong? can u help me? thanks...

Member Avatar for aspproject
0
114
Member Avatar for kieky

hi all...i need your help.. i'm using method to count total comment in my application. This is my code : [B]Comment.aspx.cs[/B] [CODE] protected String GetCountComment(string IdTopik) { try { string value = String.Empty; DMSDataAccess db = new DMSDataAccess(); var comment = db.DMSDataContext.Comments.Where(p => Convert.ToString(p.IdTopic) == IdTopic); value = Convert.ToString(comment.Count()); return …

Member Avatar for Mitja Bonca
0
97
Member Avatar for kieky

Hi, This is my code : [ICODE] Microsoft.Office.Interop.PowerPoint.Application application = new Microsoft.Office.Interop.PowerPoint.Application(); string filePath = Server.MapPath(@"~\\Staf\\TestDoc\\" + strFileName.ToString()); Microsoft.Office.Interop.PowerPoint.Presentation pptPresentation = application.Presentations.Open(filePath, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoFalse); application.Visible = Microsoft.Office.Core.MsoTriState.msoTrue; StringBuilder sb = new StringBuilder(); int page = pptPresentation.Slides.Count; for (int num = 1; num < page + 1; num++) { Microsoft.Office.Interop.PowerPoint.Shapes …

Member Avatar for neter
0
254
Member Avatar for kieky

hi all, [B]i really need your help[/B].. can u correct my code to delete session below? thx before... [CODE] protected void GridView_Main_RowCommand(Object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Erase") { string childId = Convert.ToString(e.CommandArgument); IList dataUserList = new ArrayList(); if (Session["UserList"] != null) { dataUserList = (IList)Session["UserList"]; foreach (UserList …

Member Avatar for kvprajapati
0
65
Member Avatar for kieky

This is my code : [B].aspx[/B] [CODE] <asp:GridView ID="GridView_Main" ClientIDMode="Static" AutoGenerateColumns="false" DataKeyNames="IdVersi" AllowPaging="true" AllowSorting="true" Width="97%" BorderWidth="1" OnSelectedIndexChanged="GridView_Main_SelectedIndexChanged" OnSorted="GridView_Main_Sorted" OnPageIndexChanged="GridView_Main_PageIndexChanged" OnPageIndexChanging="GridView_Main_PageIndexChanging" runat="server" PageSize="4"> <EmptyDataTemplate> <div class="EmptyDataMessage"> <asp:Label ID="Label_GridView_Empty" runat="server" Text="Data tidak ditemukan."></asp:Label> </div> </EmptyDataTemplate> <HeaderStyle CssClass="GridviewHeader" /> <SelectedRowStyle CssClass="GridviewSelect" /> <AlternatingRowStyle CssClass="GridviewAlternate" /> <Columns> <asp:TemplateField HeaderText="No Versi" ItemStyle-CssClass="GridviewItem" ItemStyle-VerticalAlign="Top" ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="15%" …

0
71
Member Avatar for kieky

hi.. i'm trying to send mail from my website using GMAIL account. But after i use it, my website running very slow (for about 20-30second). Do u have solution to make it faster?

Member Avatar for kieky
0
88
Member Avatar for kieky

i have 2 table, Topic and Comment.. TOPIC IdTopic TopicName CreatedOn CreatedBy COMMENT IdComment IdTopic(FK) Comment ReplayOn ReplayBy I want to count all comment where Comment.IdTopic == Topic.IdTopic cant u help me? i'm using Linq to sql and C# thx,

Member Avatar for vuyiswamb
0
58
Member Avatar for kieky

This is my code : [CODE] icrosoft.Office.Interop.Excel.Application(); string filePath = Server.MapPath(@"~\\Staf\\TestLucene\\" + strFileName.ToString()); Microsoft.Office.Interop.Excel.Workbook workbook = application.Workbooks.Open(filePath, Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing, Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing); int numSheet = workbook.Sheets.Count; for (int num = 1; num < numSheet + 1; num++) { Microsoft.Office.Interop.Excel.Worksheet sheet = (Worksheet)workbook.Worksheets[num]; Range excelRange = (Range) sheet.get_Range("A1", "H10"); object[,] valueArray = (object[,])excelRange.Value2; for …

0
56
Member Avatar for kieky

hi, i've got error like this : CS0012: The type 'Microsoft.Office.Core.MsoTriState' is defined in an assembly that is not referenced. You must add a reference to assembly 'office, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'. whats wrong??

0
53
Member Avatar for kieky

can you help me to get value in excel spreadsheet using excel interop so that i can saving it into a 'variabel' or as text.. Thx a lot..

0
50
Member Avatar for kieky

Hi aLL... I wanna convert doc file to text. I use this way : [URL="http://dotnetperls.com/word"]http://dotnetperls.com/word[/URL] But, the text file written raw by raw. Whereas i wanna get that file in a whole so that i can use it when i write the index in Lucene.Net.. [B]there is another way?[/B] thx, …

0
59
Member Avatar for kieky

hi, i need your help.. i'm using lucene.net to my project.. but i feel confused how to dispay my search result to gridview.. can u help me? thx for your help...

0
49
Member Avatar for kieky

can anyone provide me a sample code who have used iTextsharp to convert pdf to text .... Please help.... this is very urgent...

Member Avatar for kvprajapati
-1
123
Member Avatar for kieky

hi i'm newbie in using lucene.net. i create index from text file and it in a right way. But, when i upload another file text, the recent index will be overwritten. i'm so confused.. What should i do?

0
57
Member Avatar for kieky
Member Avatar for kvprajapati
0
103
Member Avatar for kieky

this is my code.. i can upload everything (image, pdf, doc, ppt, xls, text), but i can upload file with Microsoft Office 2007 (docx, pptx, xlsx).. whats wrong with my code? can u help me? Please?? [code] DMSDataAccess db = new DMSDataAccess(); Dokumen doc = new Dokumen(); Versi versi = …

-1
71
Member Avatar for kieky

hi, i really need your help.. this is my code.. BUT it [B]just show 1 document[/B].. [COLOR="Red"]what should i do to show all of document?[/COLOR] can u correct my code? this is very urgent 4 me.. :'( [code] protected void GridView_Main_DataBind(int NewPageIndex) { string username = HttpContext.Current.User.Identity.Name; id_category = Convert.ToInt32(Request.QueryString[0]); …

0
64
Member Avatar for kieky

hi all..i'm new in asp.net can you show me a code to using search button, please? i'm using c# and linq sql.. this is very urgent.. :(

Member Avatar for kvprajapati
0
56
Member Avatar for kieky

Hi all.. i have button save. when i click the button, i should Response.Redirect("~/Admin/DaftarUser.aspx") but i must double click to do that? whats wrong?

Member Avatar for kuracha
0
61
Member Avatar for kieky

hi all.. i really need your help to solve my problem.. this is the scenario : first, user choose link "detail" at document table.in that detail,i have a hyperlink "comment". in aspx i wrote this code : [code] <a href="ShowComment.aspx?id_document=<%#Eval("id_document") %> ">Comment</a> [/code] id_document is value of query string from …

Member Avatar for dhanapal86mca
0
70
Member Avatar for kieky

hi all.. i need your help.. do u know how to display image according to extension of file with C#? ex : .doc -> image microsoft word, .pdf -> Image PDF, etc thanks before...

0
63
Member Avatar for kieky

Hi all.. I'm having a little trouble with an upload of a file.. i use asp.net with C# language.. I want to add datetime in the name of the file so that when a user uploads a file such as "test.doc" it would be saved into the server as "test-20101123-0533-milisecond.doc" …

Member Avatar for kieky
0
1K