No announcements
Found 1093320 threads
-
1 Votes
Loop through array of Excel sheets
I'm looping through an array of Excel sheets like you see below.Answered | 2 Replies | 669 Views | Created by ryguy72 - Sunday, July 31, 2016 3:03 AM | Last reply by ryguy72 - Tuesday, August 2, 2016 3:03 PM -
3 Votes
Loop through listbox items
Nevertheless, I believe I have answered your question about how to loop through a ListBox.Answered | 8 Replies | 1795 Views | Created by DustinBobbitt - Sunday, August 30, 2015 3:31 PM | Last reply by Frank L. Smith - Sunday, August 30, 2015 4:25 PM -
0 Votes
arrays with loops
Hi, This happens because the array size is 10 (0-9) but you are passing value to array 10 which is out of bounds for array.Answered | 3 Replies | 665 Views | Created by iivii - Thursday, December 3, 2015 4:47 AM | Last reply by vaayuputra - Thursday, December 3, 2015 5:13 AM -
0 Votes
loop through recordset.clone or Array?
If you just want to see if there is a match, or not, you can use a DCount, as Henry mentionned, but you do it OUTSIDE the loop: there is not need to loop, since ...Answered | 4 Replies | 4949 Views | Created by KIWI DAVE - Thursday, December 16, 2010 3:14 AM | Last reply by Vanderghast - Friday, December 17, 2010 9:54 AM -
0 Votes
Loop through Array
However this works for me Sub test() Dim sAnimal(1 To 4) As String, i As Integer sAnimal(1) = "G" sAnimal(2) = ...Answered | 4 Replies | 837 Views | Created by Chaz1010 - Sunday, October 13, 2013 8:13 PM | Last reply by chunchencool - Saturday, October 19, 2013 4:37 AM -
2 Votes
itemscontrol loop through items
And you can customize the appearance to make the items look like you want.Answered | 4 Replies | 5276 Views | Created by Gilles Lauwers - Tuesday, December 2, 2008 1:17 PM | Last reply by Gilles Lauwers - Wednesday, December 3, 2008 8:46 AM -
1 Votes
Create array in loop ?
Notice how I loop through the items - even though I know how many elements there are, let's say that I didn't.Answered | 17 Replies | 1287 Views | Created by TR_Hasan - Friday, March 29, 2013 1:03 PM | Last reply by Frank L. Smith - Friday, March 29, 2013 5:39 PM -
0 Votes
Loop through all items in SharePoint 2013 Workflow
Looping through all List Items in a SharePoint List using a SharePoint Designer 2013 Workflow.Answered | 1 Replies | 5084 Views | Created by Mohamed Jubair - Sunday, January 31, 2016 6:50 PM | Last reply by Sara Fan - Monday, February 1, 2016 10:09 AM -
2 Votes
programatically loop through the items in a list
Hi, It can look as follows for example: using System; using Microsoft.SharePoint; namespace ...Answered | 1 Replies | 7507 Views | Created by ez44 - Friday, April 8, 2011 9:05 AM | Last reply by Dmitry Kaloshin - Friday, April 8, 2011 11:17 AM -
0 Votes
Loop through arrays using unsafe code / pointers
Note that using foreach on an array creates a for loop in the right shape for optimization.Answered | 13 Replies | 8259 Views | Created by jal2 - Saturday, September 11, 2010 4:04 PM | Last reply by Mike Dos Zhang - Thursday, September 16, 2010 10:52 AM -
1 Votes
How to loop through all menu items in the MenuStrip
Try the below code, menuStrip.Items.OfType<ToolStripItem>().ToList().ForEach(item => { if (item.Name !Answered | 3 Replies | 9101 Views | Created by zhexin - Wednesday, August 8, 2012 8:50 AM | Last reply by Adavesh - Wednesday, August 8, 2012 9:22 AM -
1 Votes
Looping through ProjectItems in ActiveSolutionProjects
I think you need to loop through the Project for ProjectItems, and for each ProjectItem you need to determine whether it has ProjectItems of its own.Answered | 3 Replies | 10931 Views | Created by AridTag - Thursday, August 5, 2010 7:35 PM | Last reply by awj100 - Thursday, August 12, 2010 7:13 PM -
1 Votes
No. of items an array contains
Here are 4 different ways to loop through a valid array without knowing exactly how many elements it has.Answered | 2 Replies | 2874 Views | Created by Furqan Sehgal - Thursday, October 14, 2010 6:28 PM | Last reply by kleinma - Thursday, October 14, 2010 6:36 PM -
0 Votes
looping array
I think use DataTable to filter keyword quickly for example DataTable jobTable, newjobTable jobTable ...Answered | 5 Replies | 1803 Views | Created by bagua8 - Friday, October 12, 2012 7:42 PM | Last reply by Arno Brouwer - Monday, October 15, 2012 2:18 PM -
4 Votes
looping through an array
That is possible to do through Reflection, but there is a heavy price to pay in CPU time.Answered | 10 Replies | 3088 Views | Created by chazparks2 - Friday, October 16, 2009 4:36 PM | Last reply by Martin Xie - MSFT - Friday, October 23, 2009 2:57 AM -
1 Votes
c# question array and loop
foreach (var item in os) { if(item.Equals(o)) { System.Console.WriteLine("match"); } } Chris ...Answered | 1 Replies | 744 Views | Created by DarcyV1980 - Saturday, March 15, 2014 2:42 PM | Last reply by chriga - Saturday, March 15, 2014 4:19 PM -
1 Votes
insert the sum of items of an array into another array
x + (x + 1)).Take(a.Length - 1).ToArray() ; foreach (int item in result) Console.WriteLine(item); }Answered | 9 Replies | 1902 Views | Created by scala_1988 - Tuesday, February 10, 2015 2:40 PM | Last reply by Venkat786 - Tuesday, February 10, 2015 5:30 PM -
1 Votes
Why we can't access value from Jagged array through for each loop ?
its a jagged array means array within the array so same for accessing values you need another for each loop within main for eachAnswered | 4 Replies | 866 Views | Created by SURYA KANT NAYAK - Sunday, November 9, 2014 10:11 AM | Last reply by Doanh, Qh - Monday, November 10, 2014 10:02 AM -
2 Votes
loop through folders in ssis
http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/0e97ce79-3266-4070-8c1f-cbe11b437195/ http://www.rafael-salas.com/2007/02/ssis-lo ...Answered | 5 Replies | 5544 Views | Created by shaferda - Monday, March 19, 2012 12:48 PM | Last reply by VivelYano - Tuesday, March 20, 2012 8:21 AM -
5 Votes
Shift items in 2 dimensional array
I was putting the contents in a temp array and then accessing the items, but this much better.Answered | 7 Replies | 10036 Views | Created by shah_yash - Thursday, June 3, 2010 7:48 PM | Last reply by Louis.fr - Friday, June 4, 2010 1:51 AM - Items 1 to 20 of 1093320 Next ›
No announcements