Click here to Skip to main content
15,915,603 members
Home / Discussions / C#
   

C#

 
AnswerRe: regarding patch development ?? Pin
Christian Graus2-Sep-09 0:31
protectorChristian Graus2-Sep-09 0:31 
AnswerRe: regarding patch development ?? Pin
Nagy Vilmos2-Sep-09 1:40
professionalNagy Vilmos2-Sep-09 1:40 
AnswerRe: regarding patch development ?? Pin
Henry Minute2-Sep-09 2:25
Henry Minute2-Sep-09 2:25 
QuestionSplash Screen In C# ? :S Pin
Saad Shuja1-Sep-09 23:50
Saad Shuja1-Sep-09 23:50 
AnswerRe: Splash Screen In C# ? :S Pin
Programm3r2-Sep-09 0:07
Programm3r2-Sep-09 0:07 
AnswerRe: Splash Screen In C# ? :S Pin
stancrm2-Sep-09 0:33
stancrm2-Sep-09 0:33 
AnswerRe: Splash Screen In C# ? :S Pin
Swetha Srinivasan3-Sep-09 20:04
Swetha Srinivasan3-Sep-09 20:04 
GeneralRe: Splash Screen In C# ? :S Pin
Saad Shuja3-Sep-09 20:53
Saad Shuja3-Sep-09 20:53 
QuestionDataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
cuker11-Sep-09 23:28
cuker11-Sep-09 23:28 
AnswerRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
Eddy Vluggen2-Sep-09 1:04
professionalEddy Vluggen2-Sep-09 1:04 
GeneralRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
cuker16-Sep-09 20:38
cuker16-Sep-09 20:38 
GeneralRe: DataGridView: Using different fonts in single DataGridViewTextBoxCell Pin
Eddy Vluggen6-Sep-09 20:51
professionalEddy Vluggen6-Sep-09 20:51 
Questionhow to show the data in datagrid with dropdownbox Pin
Manish791-Sep-09 23:27
Manish791-Sep-09 23:27 
AnswerRe: how to show the data in datagrid with dropdownbox Pin
Jacobb Michael1-Sep-09 23:48
Jacobb Michael1-Sep-09 23:48 
GeneralRe: how to show the data in datagrid with dropdownbox Pin
Manish792-Sep-09 0:07
Manish792-Sep-09 0:07 
GeneralRe: how to show the data in datagrid with dropdownbox Pin
Jacobb Michael2-Sep-09 5:41
Jacobb Michael2-Sep-09 5:41 
QuestionPlaying for medias using AxMediaPlayer [modified] Pin
Yonathan11111-Sep-09 23:19
professionalYonathan11111-Sep-09 23:19 
AnswerRe: axmediaplayer Pin
stancrm1-Sep-09 23:36
stancrm1-Sep-09 23:36 
QuestionImage Changed in PictureBox Event Question Pin
Programm3r1-Sep-09 23:19
Programm3r1-Sep-09 23:19 
AnswerRe: Image Changed in PictureBox Event Question Pin
Programm3r1-Sep-09 23:28
Programm3r1-Sep-09 23:28 
GeneralRe: Image Changed in PictureBox Event Question Pin
rsbiz20048-Sep-09 23:19
rsbiz20048-Sep-09 23:19 
' This picturebox has BeforeImageChanged and AfterImageChanged events.
' Taken from http://thedotnet.com/nntp/96040/showpost.aspx
'
Imports System
Imports System.Windows.Forms
Imports System.Drawing
'
Public Class MyPictureBox

Inherits PictureBox
Private _image As System.Drawing.Image = Nothing
Public Event BeforeImageChanged(ByVal sender As Object, ByVal e As EventArgsImageChanged)
Public Event AfterImageChanged(ByVal sender As Object, ByVal e As EventArgsImageChanged)

Public Shadows Property Image() As Image
Get
Return _image
End Get
Set(ByVal Value As Image)

If Not Value Is _image Then
If Me.DesignMode Then
MyBase.Image = Value
_image = Value
Else
Dim ea As New EventArgsImageChanged
If _image IsNot Nothing Then
RaiseEvent BeforeImageChanged(Me, ea)
If ea.Cancel Then
Exit Property
End If
End If
MyBase.Image = Value
_image = Value
RaiseEvent AfterImageChanged(Me, ea)
End If
End If
End Set
End Property
End Class
Public Class EventArgsImageChanged
Inherits EventArgs
Private _cancel As Boolean = False
Public Property Cancel() As Boolean
Get
Return _cancel
End Get
Set(ByVal Value As Boolean)
_cancel = Value
End Set
End Property
End Class
QuestionPaste Event Pin
cjb1101-Sep-09 21:48
cjb1101-Sep-09 21:48 
AnswerRe: Paste Event Pin
Hristo-Bojilov1-Sep-09 22:25
Hristo-Bojilov1-Sep-09 22:25 
GeneralRe: Paste Event Pin
cjb1102-Sep-09 6:53
cjb1102-Sep-09 6:53 
GeneralRe: Paste Event Pin
Hristo-Bojilov2-Sep-09 9:43
Hristo-Bojilov2-Sep-09 9:43 

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.