deadlock when using waitOne in a STA thread
Tue, 10 Jun 2008 13:41:27 +0300
Hi,
I have the problem described bellow with the calls to WaitHandle.WaitOne
causing re-entrancy on main GUI thread (STA) of a .NET application and I
would like to find out:
- did anybody else run into the same problem?
- is it a known issue? is there a fix for it?
- is there a workaround for it?
...
|
Updating custom control
Tue, 10 Jun 2008 17:00:54 +1200
Hi All,
My task is to port some .Net 1.1 custom controls to .Net 3.5 I wasn't expecting that there would be much to do but have
just spent a long time tracking down a runtime error on a button control that inherits from a Windows.Forms.Label and
implements IButtonControl.
The control modifies it's ImageLis ...
|
Automated gathering data from HTTPS websites
Tue, 10 Jun 2008 00:41:50 +0200
I'd like to create an application which would log into a particular web page
and get some information. I don't want to parse HTML so I thought about
WebBrowser. But there is a problem. The site is accessible only using SSL
and it has invalid certificate so WebBrowser shows warning dialog. I have to
click Yes ...
|
Drawing Over Other Controls
Mon, 9 Jun 2008 15:38:01 -0700
There is a functionality in the standard Splitter control I would like to
emulate. When a user presses the mouse down on a splitter, then begins to
drag the splitter left or right, a graphical line is drawn that tracks the
mouse movements. This graphical line has three features of interest...
1) the line ...
|
GroupBox similar to Outlook
Wed, 4 Jun 2008 10:09:23 -0500
I need to find or develop a control like the Group By Box in Outlook. I'm
not even sure how to get started.
Anyone know of a sample or a control for this?
Thanks,
Michael
...
|
Webbrowser Downloading file
Wed, 4 Jun 2008 17:29:02 +1200
Hello
I want programmatically surf a web site and then download a file
programmatically. I am using the WebBrowser control in wonforms
When I post the data, I get the file download dialog popping up asking me
where to save the file ( csv file ) .
How can I make this happen automatically without seeing ...
|
search within an arraylist
Tue, 3 Jun 2008 01:49:06 -0700
Hi,
Is it possible to search within an arraylist ?
eg:
Arraylist arlData = new ArrayList();
arlData.Add(new Item("test", "this"));
public class Item
{
private string a,
private string b,
public Item(string A, string B)
{ }
public string A
{get;set; }
public string B
{get;set ...
|
|
|
Why does WebBrowser leak registry handles if I don't explicitly
Dispose()?
Mon, 2 Jun 2008 13:42:36 -0700 (PDT)
And if I DO call Dispose(), it still leaks one handle when calling
after form closure. ...
|
How to Mak the password field
Mon, 02 Jun 2008 18:55:40 GMT
I have a datagridview, and it has 4 columns
ID, Code, User Name, password
I have a configuration button that brings the form up, where I can ad a new user, how can I make for the password field to when I type it shows like "*********",
and how can I make the data under the login to automatically upshift?
Tha ...
|
build context menu from menu strip
Mon, 2 Jun 2008 08:34:45 -0700 (PDT)
Hi,
I build the menu strip using the designer.I want the context menu of
the form to be same as children of one of the top leven Menu strip
item.
Items["actionToolStripMenuItem"] gives me a ToolStripItem object but
it does not have a hierarchy, no parents no children.
What do i do?
TIA ...
|