Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/vstud…
Adding Objects to ArrayList using Button_Click
Thank you in advance for any and all suggestions. I am trying to add a an object called pack to an ArrayList called Boxes using a Add_Click method.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/165…
Custom Receive pipeline - biztalk
i want to promote incoming msg (File.Receviedfilename) in custom receive pipeline to read a filename and used in orchestration.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/a41…
binding a repeater to a hashtable - social.msdn.microsoft.com
So quick fix is to change to using an ArrayList to store the custom objects (if you need sorting try SortedList class). ArrayList stores objects as-is and therefore your code would work without other changes.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/98b…
Bulk copy in vb.net - social.msdn.microsoft.com
The following funtion performs bulk copy in vb.net. The colomns need to be mapped to the data base table. Public Shared Function InsertQueries (ByVal DestinationTable As String, ByVal dt As DataTable, ByVal keepIdentity As Boolean, ByVal ds As DataSet) As Int64 Dim bulkCopy As SqlBulkCopy Dim strConnection As String = ConfigurationManager.ConnectionStrings ("TargetConnection").ConnectionString ...
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
RichTextBox : Text color - social.msdn.microsoft.com
If you have more then one string which will have the same font and color you can save them in an ArrayList and then apply "foreach" loop.
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/sqlse…
SQL Backup Timeout Expired - social.msdn.microsoft.com
at System.Management.Automation.StatementListNode.ExecuteStatement (ParseTreeNode statement, Array input, Pipe outputPipe, ArrayList& resultList, ExecutionContext cont
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
Bind Enum Description and Value to Dropdownlist.
Enum is as below : and i would like to get the value of the selection .
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/en-US…
Report Builder - Editing existing report
I have prepared a new model and based on that I prepated few reports using Report Builder. Now, I need to edit existing report to apply few more filter and new column. For that I am opening report in to Report Builder and applying new filters and adding new attribute. Everything is set. I will save this report.
Global web icon
microsoft.com
https://social.msdn.microsoft.com/Forums/en-US/a80…
Clipboard and Thread - social.msdn.microsoft.com
I like to watch the clipboard in an thread. And when there is any changing i like to get an Messagebox Followoing Code I have: using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.ComponentModel; using System.Runtime.InteropServices; using System.Windows.Forms; using System.Drawing; using System.Data; namespace ThreadTest.OwnClass {
Global web icon
microsoft.com
https://www.social.msdn.microsoft.com/Forums/vstud…
getting roles list related to user - social.msdn.microsoft.com
i use authentication request on global.asax for attach roles to related user. Now i need to get these roles’ list in my pages. How can i get these roles list to an array,arraylist etc.