No announcements
Found 1960380 threads
-
2 Votes
set combobox.datasource to string array
its really simple, i bind a combobox to a string array, and i want to change the combobox.valuemember. but i can not do that unless i set the valuemember. but what ...Answered | 12 Replies | 44276 Views | Created by satuday - Monday, July 11, 2011 7:39 PM | Last reply by JohnGrove - Monday, July 11, 2011 9:07 PM -
0 Votes
Set string array property
Please take a look at the article below: http://msdn.microsoft.com/en-us/library/0fss9skc(vs.80).aspx You can find how to write property ...Answered | 1 Replies | 3434 Views | Created by Joao Prata - Wednesday, February 25, 2009 11:29 AM | Last reply by Harry Zhu - Friday, February 27, 2009 6:53 AM -
3 Votes
Array of string
don't know why you are setting each item in the array to another variable just access them through the array.Answered | 10 Replies | 3912 Views | Created by sva0008 - Tuesday, October 27, 2009 9:17 PM | Last reply by Acamar - Wednesday, October 28, 2009 12:12 AM -
4 Votes
string array into double array
For a multidimensional array to set an entire row you simply need to overwrite the value for each cell in that row.Answered | 18 Replies | 17469 Views | Created by vba123 - Friday, December 2, 2011 9:27 PM | Last reply by Louis.fr - Tuesday, December 20, 2011 9:59 AM -
0 Votes
string array
bCkecking) { //array contains an empty string } else { //all strings are fulfiled (no empty ...Answered | 6 Replies | 4592 Views | Created by Sruthi M - Thursday, March 17, 2011 10:29 AM | Last reply by Anirban Bhattacherya - Thursday, March 17, 2011 12:27 PM -
4 Votes
Strings in arrays?
Sorry, I repaired the MessageBox::Show statement, I'm down to this set of errors, and I've put in where it's pointing to the errors.Answered | 5 Replies | 3818 Views | Created by oldyeller - Sunday, November 22, 2009 4:36 PM | Last reply by Brian Muth - Monday, November 23, 2009 5:32 PM -
6 Votes
string vs string array
Don't string array be declared as : Dim CommandLine() as String or, Dim CommandLine as ...Answered | 13 Replies | 3111 Views | Created by Gilbert_Voyer - Thursday, March 5, 2009 5:30 AM | Last reply by Yichun Feng - Monday, March 9, 2009 4:48 AM -
2 Votes
byte [] array to string , and string to byte [] array
I don't know why you want this what is ur purpose but you can do this by wring byte values as string.Answered | 4 Replies | 5036 Views | Created by eranotz65 - Saturday, January 22, 2011 1:50 PM | Last reply by NagarjunaDilip - Monday, January 24, 2011 7:30 AM -
1 Votes
string array
i).Where(i => i.Count() > 1).Select(i => i.Key); foreach (var item in duplicateItems) { Console.WriteLine(item + " - occurs in ...Answered | 6 Replies | 1231 Views | Created by Zaygum - Tuesday, July 30, 2013 7:01 PM | Last reply by Zaygum - Tuesday, July 30, 2013 7:44 PM -
2 Votes
How to set string to content of byte array (no encoding)
Of course you should not translate a byte[] to a string unless you know that the byte[] represents a string of characters.Answered | 5 Replies | 6715 Views | Created by Blizna - Thursday, December 11, 2008 12:31 PM | Last reply by Bassem.mf - Friday, December 12, 2008 4:17 PM -
0 Votes
string array question
Thanks for the quick reply but i don't think i was clear in my question. i have some string arrays...Answered | 5 Replies | 2546 Views | Created by dkm0038 - Tuesday, September 22, 2009 4:17 PM | Last reply by dkm0038 - Tuesday, September 22, 2009 5:18 PM -
2 Votes
Convert Array in String to Array in Byte
p=415also, if you Google vb.net string to byte array, there are a lot of examples to look atAnswered | 8 Replies | 6385 Views | Created by cwcc - Wednesday, October 7, 2009 9:59 AM | Last reply by cwcc - Thursday, October 8, 2009 1:56 AM -
1 Votes
empty string in Array
Note that: new string[] {} // is an array with 0 elements.Answered | 1 Replies | 481 Views | Created by old_School - Monday, February 6, 2017 8:23 PM | Last reply by Wyck - Monday, February 6, 2017 9:29 PM -
0 Votes
C# array of objects to array of strings
i want each & every object's nested data to be copied to the string arrayAnswered | 10 Replies | 4439 Views | Created by AdityaReddyM - Friday, March 26, 2010 8:54 AM | Last reply by Ajey Godbole - Saturday, March 27, 2010 9:03 AM -
0 Votes
Convert Array of strings to Array of Bytes
Is that what you want or do you want an array of byte[] that actually represent strings?Answered | 5 Replies | 1664 Views | Created by William256 - Friday, August 30, 2013 6:39 PM | Last reply by Lincoln_MA - Friday, August 30, 2013 10:00 PM -
7 Votes
Compare two string Arrays
HI, You can use the following code to compare the 2 arrays and display the non-equal values in the array.Answered | 11 Replies | 26881 Views | Created by kavitha Reddy Neeru - Wednesday, February 1, 2012 1:46 AM | Last reply by 亂馬客 - Thursday, February 2, 2012 6:46 AM -
0 Votes
Help on String Array
if you know what they will be beforehand, set each individually manually.Answered | 11 Replies | 3027 Views | Created by h0noka - Thursday, May 7, 2009 8:34 AM | Last reply by Cor Ligthert - Monday, May 18, 2009 4:44 AM -
0 Votes
Changing values in a string array
But, when you put a new string in the array, you're overwriting the reference to the original string with a new reference.Answered | 9 Replies | 3319 Views | Created by Mike44P - Thursday, April 8, 2010 2:53 AM | Last reply by Jonathan Wood - Friday, April 9, 2010 3:24 PM -
0 Votes
String array
test[0][0] is the first char of the first string in the array, which is the char value of '4'.Answered | 3 Replies | 2016 Views | Created by simonxy - Friday, May 25, 2012 9:40 PM | Last reply by simonxy - Saturday, May 26, 2012 8:06 AM -
0 Votes
Find unique strings for a string array
string[] newStringArr ={ "abc", "bcd", "efg", "abc" }; List<string> lst=new ...Answered | 9 Replies | 2865 Views | Created by George2 - Tuesday, December 23, 2008 5:19 AM | Last reply by Rejinderi - Wednesday, December 24, 2008 8:12 AM - Items 1 to 20 of 1960380 Next ›
No announcements