Don't like ads? PRO users don't see any ads ;-)
Guest

p to k kommentar

By: a guest on Apr 24th, 2012  |  syntax: None  |  size: 0.60 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.         Dim objIssuesService As New CounterSoft.Gemini.WebServices.IssuesService
  2.         Dim objSelectedIssue As CounterSoft.Gemini.Commons.Entity.IssueEN = CType(Me.cbIssue.SelectedItem, CounterSoft.Gemini.Commons.Entity.IssueEN)
  3.  
  4.  
  5.         Dim issueComment As New IssueCommentEN
  6.         With issueComment
  7.             .IssueID = objSelectedIssue.IssueID
  8.             .Comment = txttest.Text
  9.             .ProjectID = objSelectedIssue.ProjectID
  10.         End With
  11.  
  12.         issueComment = mobjServiceManager.IssuesService.CreateComment(issueComment.IssueID, issueComment)
  13.         MessageBox.Show("Erfolg")