Click here to Skip to main content
15,890,438 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Dollar value Pin
K03063-Jul-09 0:15
K03063-Jul-09 0:15 
GeneralRe: Dollar value Pin
ksss_maheshece3-Jul-09 0:31
ksss_maheshece3-Jul-09 0:31 
QuestionDatabinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo2-Jul-09 18:24
ShweBo2-Jul-09 18:24 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
Arindam Sinha3-Jul-09 20:41
Arindam Sinha3-Jul-09 20:41 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
Infarkt4-Jul-09 11:54
Infarkt4-Jul-09 11:54 
AnswerRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo8-Jul-09 0:37
ShweBo8-Jul-09 0:37 
GeneralRe: Databinding to ToolstripcomboBox in ToolstripDropdown Pin
ShweBo8-Jul-09 0:40
ShweBo8-Jul-09 0:40 
QuestionHow to disable mouse capture Pin
PIEBALDconsult2-Jul-09 7:09
mvePIEBALDconsult2-Jul-09 7:09 
For a little WinForms application I'm working on, I have a grid of Buttons and I want to be able to press and hold the left mouse button and as the mouse is moved from Button to Button I want the Buttons it crosses to receive mouse events (kinda sorta like in MineSweeper). But I find that the Button I start on captures the mouse.

So far I have written a handler for the MouseCaptureChanged event that will set Capture to false if it has become true and it works pretty well.

private void 
DeCapture
( 
    object           sender 
, 
    System.EventArgs e 
)
{
    System.Windows.Forms.Control temp = sender as System.Windows.Forms.Control ;
 
    if ( ( temp != null ) && ( temp.Capture ) )
    {
        temp.Capture = false ;
    }
 
    return ;
}


However, it seems like I should be able to set the Button so that it won't capture the mouse in the first place; is there a way to do so?
AnswerRe: How to disable mouse capture Pin
Henry Minute3-Jul-09 0:17
Henry Minute3-Jul-09 0:17 
GeneralRe: How to disable mouse capture Pin
PIEBALDconsult3-Jul-09 5:46
mvePIEBALDconsult3-Jul-09 5:46 
QuestionGetting the Installation root directory from inside an Installer Pin
Tristan Rhodes2-Jul-09 6:34
Tristan Rhodes2-Jul-09 6:34 
AnswerRe: Getting the Installation root directory from inside an Installer Pin
Moim Hossain2-Jul-09 20:43
Moim Hossain2-Jul-09 20:43 
AnswerRe: Getting the Installation root directory from inside an Installer Pin
Jack Vanderhorst11-Jul-09 3:54
Jack Vanderhorst11-Jul-09 3:54 
QuestionHow To Check If An Mdi Child Form Is Already Open? Pin
thyrith2-Jul-09 3:41
thyrith2-Jul-09 3:41 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
DaveyM692-Jul-09 3:53
professionalDaveyM692-Jul-09 3:53 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak2-Jul-09 8:49
mveDave Kreskowiak2-Jul-09 8:49 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
SilimSayo3-Jul-09 3:47
SilimSayo3-Jul-09 3:47 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak3-Jul-09 6:40
mveDave Kreskowiak3-Jul-09 6:40 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
SilimSayo4-Jul-09 11:37
SilimSayo4-Jul-09 11:37 
GeneralRe: How To Check If An Mdi Child Form Is Already Open? Pin
Dave Kreskowiak5-Jul-09 15:57
mveDave Kreskowiak5-Jul-09 15:57 
AnswerRe: How To Check If An Mdi Child Form Is Already Open? Pin
Jack Vanderhorst3-Jul-09 14:34
Jack Vanderhorst3-Jul-09 14:34 
QuestionProblem while assigning stored procedure from a different schema to sql datasource Pin
tonymathewt2-Jul-09 2:46
professionaltonymathewt2-Jul-09 2:46 
QuestionRe: Problem while assigning stored procedure from a different schema to sql datasource Pin
led mike2-Jul-09 4:40
led mike2-Jul-09 4:40 
QuestionError in Crystal Report The Report has no tables Pin
Amit52-Jul-09 0:43
Amit52-Jul-09 0:43 
AnswerRe: Error in Crystal Report The Report has no tables Pin
The Vikash!25-Sep-09 3:55
The Vikash!25-Sep-09 3:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.