Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Author filtered by: yloginov [x]
Answer 14 May 2013   license: CPOL
put your buttons inside the System.Windows.Forms.Panel and set AutoScroll = truemore info here:Customize a panel with Autoscroll property[^]
Answer 13 May 2013   license: CPOL
Your service method signature does not match the one that the control expects. This is what your method signature should look like.[System.Web.Services.WebMethod][System.Web.Script.Services.ScriptMethod]public string[] GetCompletionList(string prefixText, int count) { ... }more...
Answer 13 May 2013   license: CPOL
public interface IOnStartChanged { public void OnIsStartedChanged(); } public class MyTimer { private List on_changed_listener = new List;(); private bool _isStarted; ...
Answer 10 May 2013   license: CPOL
The way I try to look at Breadth First Search is that you try the immediate possibilities first. Depth First you stick to one path until you hit a dead end and then try a different path. Say you are in a room with two doors that's inside another room with two door and you need to find an...
Answer 10 May 2013   license: CPOL
int index = ListBox.Items.IndexOf("");if(index > 0) ListBox.Items.RemoveAt(index);
C#
Answer 10 May 2013   license: CPOL
You have to reload the control on every post back, because its a dynamically added control.You can avoid the loading if you include the control in the XML markup. Then you could add both controls to the XML file and only display the one you want based on the query...
Answer 9 May 2013   license: CPOL
1. store an array of labels, just like you do with an array of CheckBoxes and create the labels at the same time you create checkboxeslabel= new Label[bran_count];for (int i = 0; i
Answer 8 May 2013   license: CPOL
1. Run your DLL.function() on a separate thread. 2. Have the DLL.function() fire an event every time a foreach loop has completed and increment the value.3. Have you main project listen for this event. Every time the event is triggered update your progress bar. You can pass the value for...

Page 1 of 1


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid