Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #20.4K
~5K People Reached

10 Posted Topics

Member Avatar for Pachrant

The approach is correct and i guess you are worrying about the performance facotr or overhead created if the array.Legth is too big. But i think thats the optimised code since you have used the dictionary data structure which is pretty fast hash. But if your aim is to reduce …

Member Avatar for skatamatic
0
127
Member Avatar for rdwofrdw
Member Avatar for mattshort2002

Not into much of networking but try doing the CCNA certification....its hot cake nowadays.....sorry to see MCSE going down.

Member Avatar for lonelyrider
0
48
Member Avatar for leevs05

Its very easy try this. Put this in 1st combo Box's index change event take the cmbBox1 s selected value in a variable make a search using that variable value against the source where Items are kept indexed with the CustomerName. If found then keep on adding in the 2nd …

Member Avatar for lonelyrider
0
112
Member Avatar for dip7

Firstly if u want good solution write more clearly. Anyways what i understood is say at C:\ there is a pic caroline.jpg now suppose the file with the same name replaces it but dynamically u want that pic to be loaded in ur application. Good one! Look try creating a …

Member Avatar for mlady
0
135
Member Avatar for ABabeNChrist

Can be done by two methods depending on the type of usage write this code in Form1 control events [COLOR="Red"]Form2 form2object=new Form2(); for2object.Show();[/COLOR] another way is to show as dialog box meaning you can click back to Form1 until Form2 is closed [COLOR="red"]Form2 form2object=new Form2(); for2object.ShowDialog();[/COLOR]

Member Avatar for ddanbe
0
100
Member Avatar for ashokrajendran

OH great way of doing that i didnt know that too. Thats why i always used dr[0] based indexing instead of the names. Thanks for putting this question it helped me a lot.

Member Avatar for lonelyrider
0
2K
Member Avatar for taichi2910

name = txtName.Text; employeeNumber = Convert.ToInt32(txtPNumber); Please pay your attention here I beleieve txtPNumber is the name of the textBox assigned by you and not a variable if yes thats why its throwing that error TRY THIS: name = txtName.Text; employeeNumber = Convert.ToInt32(txtPNumber.Text);

Member Avatar for lonelyrider
0
387
Member Avatar for ddanbe

Well please try out the Clone() method it creates a copy of the image which you want to drag and drop Clone is a method of BitMap class as per my memory says. Try this BitMap bmp= (BitMap)img.Clone(); please check in MSDN.

Member Avatar for Diamonddrake
0
756
Member Avatar for SEOKRU

char[] option = charQuery.Clone(); In a loop u are declaring an array. Please its so wrong. Declare it outside the for loop and enter the values inside the loop that should solve the problem for itself. And your logical concept is not clear to me. You want to put the …

Member Avatar for ddanbe
0
1K

The End.