all groups > dotnet windows forms > recent posts
RE: Making AutoHide AppBar
Posted by LogicNP at 2/23/2010 12:29:58 AM
Have a look at ShellAppBar (http://www.ssware.com/megapack.htm). It supports auto-hiding, drag-dock, multi-monitors, etc
From http://www.google.co.in/url?sa=t&source=web&ct=res&cd=1&ved=0CAYQFjAA&url=http://www.developmentnow.com/groups/post.aspx?newsgroupid=29&threadid=610694&rct=j&q="AutoHide+A... more >>
RE: Internal error in ToolStrip
Posted by Jason at 1/24/2010 5:08:44 PM
I am currently getting this error very randomly. Did you ever determine the problem and/or solution?
From http://www.developmentnow.com/g/29_2007_4_0_0_960308/Internal-error-in-ToolStrip.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: Error Marshaling Structure
Posted by Saleem at 12/31/2009 2:02:16 AM
Hi,
The tabs are working for me. But they are not following in the order set, They are doing randon tabs, though I have set the tab order correctly.
Any puts will be great.
Saleem
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: ControlDesigner OnMouseDragMove only called once?
Posted by Serge Wautier at 12/10/2009 1:42:26 AM
Same problem here: A few calls then nothing.
Even worse: OnMouseDragEnd not called unless user didn't move the control!
From http://www.developmentnow.com/g/29_2007_1_0_0_913705/ControlDesigner-OnMouseDragMove-only-called-once.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.c... more >>
RE: TextBox Beep on Enter Key
Posted by ben at 11/9/2009 1:09:34 PM
A very simple solution in vb.net is to use e.handled = true
Private Sub TextBox1_KeyPress(blah blah)
If KeyAscii = 13 Then
e.Handled = True ' prevents beep when enter is pressed in a textbox
Button1.PerformClick() ' performs button click event
E... more >>
RE: I need Microsoft.Web.Services Dll (Hell)
Posted by Bob at 10/8/2009 2:53:39 AM
Hello
I need webservices.dll (for C++ project).
Can you please send it to me ?
Thanks !
From http://www.developmentnow.com/g/29_2003_11_0_0_117142/I-need-Microsoft-Web-Services-Dll-Hell.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
Using ToolStripContainer on MDI Parents
Posted by Vijai Anand.K at 9/17/2009 4:37:31 AM
Add the child to the ContentPanel.Controls
private void ShowNewForm(object sender, EventArgs e)
{
// Create a new instance of the child form.
Form childForm = new Form();
// Make it a child of this MDI form before showing it.
ch... more >>
RE: The private components field: where is used?
Posted by Not_a Developer at 9/10/2009 4:54:46 AM
Theo I presume Passolo wouldn't have such ability.
From http://www.google.com/search?hl=en&rls=com.microsoft:en-us&q=theo+bebekis&aq=f&oq=&aqi=
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
RE: Please save me from killing myself over License Agreement dialog
Posted by arachnode.net at 8/20/2009 12:16:56 PM
Just adding a few other search terms to this...
c# LicenseFile not working
c# License File not working
.net installer License Agreement won't show EULA .rtf
From http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla:en-US:official&q=.NEt+setup+project+won't+show+"License+Agreemen... more >>
RE: System.Windows.Forms.Form.ActiveForm always null
Posted by Julian at 7/22/2009 6:27:30 PM
A quick solution for this problem is to create a static delegate method on your main form.
Have that method invoke other delegate methods.
sample:
public delegate void Invoker( Delegate function , object[] args );
in main form
public static Invoker MethodInvoker;
private void MethodI... more >>
RE: Deployment Problem
Posted by Josey at 7/15/2009 6:06:04 AM
I also face same issue , some antivirus not allow to install the application.
From http://www.developmentnow.com/g/29_2007_9_0_0_1020045/Deployment-Problem.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: How to hide the numericUpDown control's up and down arrows?
Posted by Deepa at 6/12/2009 4:41:12 AM
numupdown.controls[0].Hide()
From http://www.google.co.in/search?hl=en&client=firefox-a&rls=org.mozilla:en-US:official&hs=KpM&q=hide+Numericupdown+arrows&btnG=Search&meta=
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: NotifyIcon.ShowBalloonTip() not working in Vista
Posted by Never Again at 6/1/2009 10:01:16 AM
"Since the ShowBalloonTip method of the NotifyIcon component doesn't work
well on Ultimate version of Vista, I agree with you that using a borderless
form positioned in the buttom corner is a workaround."
Is this supposed to be a MSFT resolution? Why would this work NOT work in Vista Ultimate... more >>
RE: How to hide the numericUpDown control's up and down arrows?
Posted by CentauriBoy at 4/8/2009 8:28:45 PM
If you really wanted a NumericUpDown control without the arrow keys, take it one step further:
In Form_Load():
//////////////////////////////////////////////////////////////////////////
// Local variables.
int nArrowKeyWidth = myNumericUpDown.Controls[0].Width;
// 1) Set the border style ... more >>
RE: Property grid navigation
Posted by Neil at 3/9/2009 8:27:59 PM
Jeffrey,
Your solution works well.
Thank you.
Neil
From http://www.developmentnow.com/g/29_2004_8_0_0_11683/Property-grid-navigation.htm
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: ScrollBar System.ArgumentException
Posted by Sumit at 1/16/2009 7:11:01 AM
Are you disabling and enabling datagridview in your code. If yes then comment those line.
I resolved the issue by doing that
Use suspend and resumelayout instead of that
From http://www.developmentnow.com/g/29_2003_9_0_0_115624/ScrollBar-System-ArgumentException.htm
Posted via DevelopmentNow.c... more >>
RE: How to hide the numericUpDown control's up and down arrows?
Posted by Rajesh at 1/15/2009 9:57:18 PM
put this in your code
numericUpDown1.controls(0).hide
From http://www.google.co.in/search?hl=en&client=firefox-a&rls=org.mozilla:en-US:official&hs=KpM&q=hide+Numericupdown+arrows&btnG=Search&meta=
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
RE: Key pressed
Posted by sravani at 1/7/2009 10:07:01 PM
I want briefly about Unlicenced mobile access can u help me.
From http://www.google.com/search?q=www.newscroups.com
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com/g/... more >>
checkbox using in gridview
Posted by Roopa Roselin at 7/27/2008 11:15:14 PM
While connecting a database with visual studio 2005. After connecting that need to create check box for all records...
I dont know how create to check box for all records...
Please help me now...
From http://www.developmentnow.com/g/29_2003_6_0_0_0/dotnet-framework-windowsforms.htm
Posted vi... more >>
Re: preferred way to handle form events
Posted by John A Grandy at 6/23/2008 5:03:53 PM
I believe that's true , the "OnEvent" methods fire the events.
So, placing code in them is putting the cart before the horse, so to speak.
It might work, but it's not really correct. Code responding to an event
should be in handlers that are attached to the event and run after the event
is... more >>
Re: preferred way to handle form events
Posted by Fernando_Gómez at 6/23/2008 3:33:22 PM
John A Grandy wrote:
> I'm new to WinForms.
>
> What's the preferred way of implementing event handlers for a Form ?
>
> Override the protected "OnEvent" methods ... ?
>
> Write a custom handler and add to the event a new delegate initialized to
> the handler ?
>
> Thanks.
>
>
... more >>
preferred way to handle form events
Posted by John A Grandy at 6/23/2008 12:30:52 PM
I'm new to WinForms.
What's the preferred way of implementing event handlers for a Form ?
Override the protected "OnEvent" methods ... ?
Write a custom handler and add to the event a new delegate initialized to
the handler ?
Thanks.
... more >>
Re: Problem opening windows folder from code
Posted by Rick at 6/23/2008 10:36:28 AM
Rick <mttomb@gmail.com> wrote in
news:Xns9AC66DD13AAC5mttombgmailcom@216.196.97.131:
> Can you help me figure out how i can open a windows folder from code?
>
> I want a user to click a button to open a windows folder as you would
> when you click on a folder in "My Computer".
>
>
>
... more >>
Problem opening windows folder from code
Posted by Rick at 6/23/2008 9:47:44 AM
Can you help me figure out how i can open a windows folder from code?
I want a user to click a button to open a windows folder as you would when
you click on a folder in "My Computer".
Thanks for your help!
Rick.... more >>
RE: accessing connection string in data access layer
Posted by Morten Wennevik [C# MVP] at 6/22/2008 11:58:00 PM
Hi Tirrell,
The executing application needs to have a application config/web.config file
which copies the app settings from the dll. This needs to be copied exactly
or the dll will revert to the default setting. In case of user or application
settings remember to copy the sectiongroup as w... more >>
RE: Settings.Designer.cs deleted
Posted by Morten Wennevik [C# MVP] at 6/22/2008 11:00:01 PM
Hi John,
The designer.cs file is only used when you refer to the settings in code.
It isn't necessary to keep track of the properties, so if you accidentally
delete it, open the property designer by double clicking the settings file
and add a new setting. The designer.cs file should then ... more >>
Re: accessing connection string in data access layer
Posted by Peter Morris at 6/22/2008 6:12:13 PM
Change myapplication.exe.config and the app doesn't need to be recompiled,
but you do need to read the string using the ConfigurationManager class.
--
Pete
=========================================
I use Enterprise Core Objects (Domain driven design)
http://www.capableobjects.com/
=====... more >>
Re: clickonce with certificate
Posted by Peter Morris at 6/22/2008 6:11:12 PM
Minor correction...
> some guy in Nigeria who wants to give them money
some guy in Nigeria who wants to give them "the monies" :-)
--
Pete
=========================================
I use Enterprise Core Objects (Domain driven design)
http://www.capableobjects.com/
==============... more >>
Re: clickonce with certificate
Posted by jakoande@hotmail.com at 6/22/2008 2:01:43 PM
Thanks - so to be clear....
If I buy a certificate the "message box" comes up saying that I am who
I am, and the user get to click install or don't install. I the user
trust (CAS) apps comming from me it will install instantly, and thats
not possible without a certificate - right?
Thanks fo... more >>
Re: clickonce with certificate
Posted by RobinS at 6/22/2008 8:17:39 AM
You must sign your deployment. You can do this w/o buying a certificate.
Just go into the Signing tab for your main project and create a test
certificate.
The purpose of a certificate is to verify the source of the application. If
you use one that you create with Visual Studio, when the use... more >>
|