C# - Create A New Array In While Loop With Each Iteration?
Jul 21, 2010
I've got a while loop that's doing some stuff, and what I want is for it to create a new array each time.
while(condition){
//do some stuff
//create an array x[]
//amend values in array
//save as new array each time until loop finished
}
Actually i need to store the comma separated values of different datatypes in an array using split.And then i hav to sort these values comparing zeroth position element of all rows.
View 3 Replies
Similar Messages:
Sep 29, 2010
using c#.net/asp.net
new to C# question: I am in an iteration of a for loop and if a condition exists I want to jump to the next iteration of the for loop, how do I do this in C#?
View 1 Replies
Oct 5, 2010
I think this is something really easy that I am missing. I have a loop that is sending emails. The loop adds an attachement from a FileUpload instance. The first run of the loop is fine but each subsequent run the attachment is empty. I have found mention of reseting contentstream.position to 0 but that doesn't seem to apply to the FileUpload control. I am attaching the code below.
[Code]....
View 2 Replies
Jan 9, 2013
I need to build an array of implicit objects in a var object by looping through a List and adding the to the array. For example...
Code:
var data = new[] { new { Name = "China", Value = 1336718015 },
new { Name = "India", Value = 1189172906 },
new { Name = "United States", Value = 313232044 },
new { Name = "Indonesia", Value = 245613043 },
new { Name = "Brazil", Value = 203429773 },};
If I wanted to dynamically add new objects with the Name and Value values above by a looping through an existing List, how would I go about it?
View 4 Replies
Apr 6, 2010
i just would like to ask..i have generate the number of date using loop.. when i insert the start date eg 1/1/2010 and the end date as 12/12/2010.. and the gap between the date should be one week..eg of the result should look like this in the web form:
1/1/2010
8/1/2010
15/1/2010.......till 12/12/2010
thus, i would like to ask, how can i pass all the generated date to sql database..do i need to store those date in an array before pass them to database.. if so, how can i pass those date to an array??
View 5 Replies
Mar 12, 2010
I have a problem that when i bring the array of asp and use it in the javascript, When i use the counter (i++) and print for each index of array just like "<%=app[i] %>" and it is not return the value back to me.i solve this problem for a dayedit
<%
String[] asp = {"a","b","c"};
%>
[code]...
View 1 Replies
Mar 10, 2010
I have to set GridView.DataKeyNames(This is really a question about the syntax for a string array, in VB.Net.)
I am discovering the PrimaryKey columns names from within a loop, ie:
For Each fld As IEntityField In Me.llbDataSource.EntityCollection(0).PrimaryKeyFields 'fld.Name ' this is where the column name is stored, so I have to get this into an array Next I can not use this syntax.
GridView.DataKeyNames = new string() { "PowRatHP", "Voltage", "Phases", "Poles", "Drive" }
So, basically, how does one declare a string array (as required by GridView.DataKeyNames), and then populate the elements of the array from within a loop?
View 3 Replies
Apr 27, 2016
I want to get Array Elements by ForEach loop with Counter ..Â
whislist = dsddsds.Tables[0].Rows[0]["wishtlist_clg"].ToString().Split(',');
int i = 0;
foreach (string id in whislist) {
if (i != 0) {
tarsk.Value="1";
} else {
tarsk.Value="0";
}
whislist =525,1315,1331;
TARSK is an hidden field....
I want if whitelist is not in blank then 1 not equal to 0 is True other false but yet false condition is fire....
View 1 Replies
Mar 11, 2010
My original code was in classic vb. and could use redim array to resize them. I was porting the code to c# now and lately i have run into an issue to resize a 2 dimensional array. The thing here is I have a 2 dimensional array whose 2nd dimension needs to be increased dynamically as needed to accommodate the data. For say
String[,] ary1=new String[2,10];
I'm doing some operation in a loop and filling in the data in ary1. And if the loop still continues, on reaching the ary1 upper bound i need to increase the size further to accommodate 10 more rows. I tried couple of ways to copy it to a bigger array and assign it back to the current array. but somehow dint work.
View 1 Replies
May 7, 2015
below is the code I have but I want to change the ddl.Deal(dropdownlist) to cbl.Deal(checkboxlist).. How can I loop throught each items if checked. and if all items are checked. to filter my data and show in gridview..
protected void btn_Click(object sender, EventArgs e)
{
myAPI.myWeb myAPI = new myAPI.myWeb();
myAPI.SearchParameters sSearchParameters = new myAPI.SearchParameters();
[Code].....
View 1 Replies
May 28, 2010
Create object for list in or out of while loop?
Code:
[code]....
My question is, is there any benefit to instantiating a new userDetails object in every loop, or can this be created outside the loop and title, forename and surname just written over with every pass of the loop?
View 3 Replies
Feb 23, 2011
I want to loop through my datatable column called SDESCR and created a string that looks like this.
Dim labels As String() = {"North", "South", "East", "West", "Up", "Down"}
this is what i am trying and it is not working
Dim labels As String()
For Each row As DataRow In tablegraph.Rows
labels = labels " ' " + row.Item("SDESCR") + " ',"
Next row
View 6 Replies
Jul 14, 2010
I am currently working on a project where I am trying pull a list of entries from an Oracle database depending on a selection that is made by the user via a Drop Down list. Then I want provide a user with a list of options that they can select that is related to the drop down option that they have selected. For Example:
First Drop Down from database: Honda, BMW, Ford
If user selects:
Honda -- options that are available in the separte table in the database for this entry are -- Type, Engine Size, Colour
BMW -- options that are available in the separte table in the database for this entry are -- Colour, Wheel Trims, Extra's
Ford -- options that are available in the separte table in the database for this entry are -- Extra's
What I wanted to do is have a form displayed to the user where thy can say select a car eg. "BMW" and then on the change of that drop downs index the site will do a call back and retrieve the entries for the BMW options in the seperate tabel, these being Colour, Wheel Trims, Extra's. Then it will put these details in a DataSet and then i wanted to create a new text box or input field for the users to enter details in. I have tried the below code with no success as I get an error on my for loop of looking through the options DataSet.
[Code]....
View 3 Replies
Aug 2, 2010
I have a dropdownlist whose values are int (actually they are string basically but they can be parsed. they are 1, 2, 3, 4, 5.. etc)
I want to create textboxes acording to the number of dropdownlist selected value. Lets say drop down shows 3 and I wanna create 3 textboxes. how can I do that.
View 3 Replies
Feb 19, 2010
First I am sorry if I am creating a thread in the wrong category as I am not sure which is the best suitable place for this question: I want to create a user defined data structure, which will be a 2 dimensional array such that each individual square of this 2-dimensional array will also store the score and the grades. ( Iam using VB.NET) More details: for example: There is an 2 dimensional array with 3 columns and 2 rows, I want to fill each of the (0,0);(0,1);(0,2) with their own score (Integer type) and grades (String Type). And this is same for the rest of the squares i.e. (1,0);(1,1);(1,2) and (2,0);(2,1);(2,2) After creating such custom data structure: "CustomArray", I should be able to create the instance of this custom data structure (which will be a class) and code something like this:
Dim objCustomArray as CustomArray
objCustomArray = New CustomArray
for i as Integer =0 to 3
objCustomArray(0,i).SetScore(1)
objCustomArray(0,i).SetGrade("Good")
Next
-------
for i as Integer =0 to 3
Dim myVal as Integer = objCustomArray(0,i).GetScore()
Dim myGrade as String = objCustomArray(0,i).gettGrade()
Next
-----
View 4 Replies
Feb 17, 2010
My brain doesn't seem to be working today. I googled around for this and just couldn't find it, which seems kind of strange since this is such a basic question that I can typically find out very quickly.
I'm trying to create an array of DateTime objects. I can't use a List.
DateTime[] dates
dates[0] = Convert.ToDateTime("12/01/2009");
dates[1] = DateTime.Now;
However, I get an error, stating use of unassigned local variable.
View 5 Replies
Dec 16, 2010
how i can create an array for storing dates.
View 5 Replies
Mar 2, 2011
OK I'm a total noob so bear waith me. I'm using the pubs database. I want to add several gridviews to my page in the inside of a for loop. Here is my code so far:
[Code]....
In the foreach loop, it is iterating through the publisher's tables rows, and I wamt it to query the titles table to find all books that have that publisher id and create a gridview out of it. In the code above I am not getting it right. I need multiple GridViews, one for each iteration of the foreach loop. How do I do this?
View 1 Replies
Oct 13, 2010
I have List (of class). having 1800 of count and each object has 90 properties. When I terate earch with 90 properties taking more and more time. How to resolve this
Dim cellIntStyle As HSSFCellStyle = hssfworkbook.CreateCellStyle
cellIntStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat("#")
Dim cellDateStyle As HSSFCellStyle = hssfworkbook.CreateCellStyle
cellDateStyle.DataFormat = HSSFDataFormat.GetBuiltinFormat(Format
("dd-MMM-yyyy"))
For Each mReport As Report In dtExcel
row = sheet1.CreateRow(iRow)
j = 0
For Each prop As PropertyInfo In props
Dim value As Object = prop.GetValue(mReport, Nothing)
If IsInt(value) Then
CreateRow(row, j, CType(value, Integer), cellIntStyle)
ElseIf IsDate(value) Then
CreateRow(row, j, String.Format("{0:dd-MMM-yyyy}",
value), cellDateStyle)
Else
CreateRow(row, j, value)
End If
j = j + 1
Next
iRow = iRow + 1 // Coming here taking so long... how to make it fast.
Next
Private Sub CreateRow(ByRef row As HSSFRow, ByVal colId As Integer,
ByVal value As String)
row.CreateCell(colId).SetCellValue(value)
End Sub
Private Sub CreateRow(ByRef row As HSSFRow, ByVal colId As Integer,
ByVal value As Integer,
ByVal cellStyle As HSSFCellStyle)
Dim cell As HSSFCell = row.CreateCell(colId)
cell.SetCellValue(value)
cell.CellStyle = cellStyle
End Sub
Private Sub CreateRow(ByRef row As HSSFRow, ByVal colId As Integer,
ByVal value As String,
ByVal cellStyle As HSSFCellStyle)
Dim cell As HSSFCell = row.CreateCell(colId)
cell.SetCellValue(value)
cell.CellStyle = cellStyle
End Sub
View 4 Replies
Jan 18, 2011
Is it possible to detect or use a different template in the asp.net repeater for the last iteration in the repeater?If not I could just use a for loop but I'm curious if it can be done.
View 2 Replies
Nov 19, 2010
i want to insert iteration elements(Signal) according my requirement like below xml output.
<?xml version="1.0" encoding="UTF-8"?>
<WIUConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> [code]...
how i can achive this iteration concepts using C#.net LINQ to XML.Here is my Code:
XDocument xdco = new XDocument(
new XDeclaration("1.0", "utf-8", "Yes"),
new XComment("WIU Configurations"),[code]...
from above code how to insert iterate element with XML file?
View 2 Replies
Mar 8, 2011
I'm doing some custom code for a SharePoint webpart in C#. Specifically, I'm making a quiz, my main point here addressing the list that holds the question, answer choices, and correct answer.
At the last stage of the quiz I need to check the answers selected by the user against the correct answer in the list. Currently, I'm doing the following to check if each is correct, which I'm assuming isn't very efficient because it iterates through each question. Is there a method, specifically for the SPList foreach loop, that would be more efficient?
// 1. Store questions and answers in class
List<submittedAnswers> answeredQuestions = new List<submittedAnswers>();
// 2. From POST pull answered question IDs and answer IDs (which correspond to the question primary key and answer choice number both stored in the list)
// INSERT BEAUTFIUL AND EFFICIENT WHILE LOOP HERE
// 3. Loop through each question is list, if question was given, test if correct/incorrect
using (SPWeb myWeb = mySite.OpenWeb())
{
SPList answerList = myWeb.Lists[questionList];
foreach (SPListItem quizEntry in answerList.Items)
{
int pullAnswerId = int.Parse(quizEntry["Answer"].ToString()); // Pull answer number from list
int pullQuestionId = int.Parse(quizEntry["ID"].ToString()); // Pull primary key of question
submittedAnswers result = answeredQuestions.Find(delegate(submittedAnswers e) { return e.questionId == int.Parse(quizEntry["ID"].ToString()); });
if (result != null)
{
if (result.responseId != pullAnswerId) // If the response was different from the answer
incorrectAnswers++;
else
correctAnswers++;
}
}
}
// C# quiz grading magic here....
View 4 Replies
Jan 15, 2010
In my app I have a criteria builder section that's built using jquery and is pitched back to the controller in a form post and picked up as IList by the model binder as suggested in Phil's post here: http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx A really simple way that I'm persisting the criteria across posts is re-delivering the IList object to the view. I'm using a DisplayFor() template for this object, but because it's a list I need to know the index # inside of the template.
View 1 Replies
Aug 19, 2010
I need to know what would be the best choice of array to use given the following specifications. This array's size will be predermined upon the loading of the appication. All I want to do is be able to add values to this array and replace preexisting array items with new values without the array changing size. Someone suggested that I use a Dictionary Array Object? I would appreciate any suggestions.
View 3 Replies
Mar 10, 2010
[Code]....
I have a webform that gives the user the option to submit 5 referrals. Currently I only have 1 checklistbox that gives the user a choice to select products of interest for all the referrals. I would like to add a checklistbox under each referral input field in case there are different product interest for each referral? So when the referral gets a confirmation email it contains the product of interest that is specific to that referral.
View 1 Replies