| Thread | Last Post | Replies |
|
| submitting a form with a webbrowser control as the target | 28 Aug 2007 17:34 GMT | 8 |
I've come across a problem with the Webbrowser control that I am hoping some of you folks might be able to help me with. FWIW, I am using VB.Net in Visual Studio 2005. On my company's website, we have a situation where a new window is opened
|
| set focus on the first control | 28 Aug 2007 12:08 GMT | 3 |
I need to create a method to set focus on first control in a windows form How i can do it?
|
| need some advice in creating a plug-in type architecture fro windows app | 28 Aug 2007 01:51 GMT | 2 |
I would like some advice in how to go about creating a plug-in type windows form architecture, this is what i had in mind: a form similar to windows explorer with the grouped navigation items on the left, each group in the left nav section will represent a plug-
|
| Can't load .dll after changing version | 27 Aug 2007 07:08 GMT | 4 |
I have two assemblies, AppObj and AppControls, that originally had the default version of 1.0.0.0. Another assembly, AppForms, references AppObj and AppControls as Project references, and contains a class that inherits from
|
| Disable code generation on double-click of control | 26 Aug 2007 23:34 GMT | 1 |
There are times when I mistakenly double-click a control and then VS goes to the code window and either generates the code signature for the default event or it navigates to the default event. Is there a way to disable this feature?
|
| Control.Invoke and anonymous methods | 26 Aug 2007 23:33 GMT | 1 |
I'm a little confused about using Control.Invoke with an anonymous method. It seems like the compiler is able to generate whatever glue code is necessary to turn an anonymous method into a delegate type in several situations, such as starting a thread:
|
| Playing multiple sounds continuously and simultaneously | 26 Aug 2007 23:24 GMT | 1 |
I need to play multiple sounds (.wav files) simutaneously in my windows forms application. I have already taken a look at System.Media.SoundPlayer class. I tried the following but it didn't work: - Create two instances of SoundPlayer.
|
| How to iterate through a listbox | 25 Aug 2007 20:10 GMT | 5 |
I have the following code: sendToAgent.DataSource = someDataSet.Tables[0]; someListBox.DisplayMember = "AGENTNAME"; someListBox.ValueMember = "AGENTID";
|
| Winforms version of User.Identity.Name | 25 Aug 2007 09:42 GMT | 1 |
In Webforms, I can access the user's network login (windows authentication) by: User.Identity.Name What is the Winforms way of doing this?
|
| ClickOnce: Certificate cannot be validated | 24 Aug 2007 14:42 GMT | 8 |
we recently purchased a CodeSigning certificate from a CA for signing our ClickOnce manifests. We put the certificate into the certificate storage and use the SignFile task of MSBuild and the thumbprint we see in the storage. However, when we run the .application file on a freshly ...
|
| How to draw custom title bars on MDI child forms? | 24 Aug 2007 14:33 GMT | 6 |
I am doing .Net Windows Forms development using VS 2005 and C#. The application I am working on uses the MDI pattern. The original implementation was done using .Net 1.1 and VS 2003. How can I customize the title bar of the child forms such that the following
|
| Login Dialog | 24 Aug 2007 13:58 GMT | 4 |
I am new to C#, but not new in programming. I am trying to add a Login form to a test Win forms application. Somewhere in the internet I found a post suggesting using LoginDlg, I added the code provided
|
| How can i find out if a control is databound | 24 Aug 2007 13:42 GMT | 2 |
Firstly, sincere apologies for cross posting this, I did post on the DataBinding forum but the traffic there is very low so I'm not confident of a reply. Anyway, I'm trying to put together a method to loop through all
|
| ClickOnce and Side-by-Side com components | 24 Aug 2007 07:58 GMT | 2 |
I'm trying to publish my .net application with some side-by-side com components but no success so far. My manifest is: <?xml version="1.0" encoding="utf-8"?>
|
| Convert from C# to VB | 24 Aug 2007 03:18 GMT | 3 |
How to convert the following code from C# to VB. var photos = (from photo in xroot.Element("photos").Elements("photo") select new PhotoInfo {
|