Click here to Skip to main content
15,899,679 members
Home / Discussions / Windows Forms
   

Windows Forms

 
PinnedForum Guidelines - PLEASE READ PinPopular
Chris Maunder28-Jul-09 2:38
cofounderChris Maunder28-Jul-09 2:38 
QuestionHow to install all nugets from certain publishers in the package manager without install one by one ? Pin
Martin Adams 202314-May-24 14:49
Martin Adams 202314-May-24 14:49 
AnswerRe: How to install all nugets from certain publishers in the package manager without install one by one ? Pin
Dave Kreskowiak14-May-24 16:12
mveDave Kreskowiak14-May-24 16:12 
GeneralRe: How to install all nugets from certain publishers in the package manager without install one by one ? Pin
Martin Adams 202315-May-24 1:27
Martin Adams 202315-May-24 1:27 
QuestionAny solution for this error: Timed out while connecting to named pipe.? Pin
Martin Adams 202314-May-24 10:52
Martin Adams 202314-May-24 10:52 
SuggestionRe: Any solution for this error: Timed out while connecting to named pipe.? Pin
Maciej Los14-May-24 11:02
mveMaciej Los14-May-24 11:02 
AnswerRe: Any solution for this error: Timed out while connecting to named pipe.? Pin
Dave Kreskowiak14-May-24 11:04
mveDave Kreskowiak14-May-24 11:04 
GeneralRe: Any solution for this error: Timed out while connecting to named pipe.? Pin
Martin Adams 202314-May-24 11:18
Martin Adams 202314-May-24 11:18 
GeneralRe: Any solution for this error: Timed out while connecting to named pipe.? Pin
Martin Adams 202314-May-24 11:32
Martin Adams 202314-May-24 11:32 
QuestionCode-Behind in Designer.cs File [SOLVED] Pin
Richard Andrew x648-Jul-23 6:30
professionalRichard Andrew x648-Jul-23 6:30 
AnswerRe: Code-Behind in Designer.cs File [SOLVED] Pin
Andre Oosthuizen9-Jul-23 3:50
mveAndre Oosthuizen9-Jul-23 3:50 
Questionclosing serialport1 form 1 and form 2 Pin
geomeo12323-Mar-23 13:58
geomeo12323-Mar-23 13:58 
AnswerRe: closing serialport1 form 1 and form 2 Pin
Graeme_Grant23-Mar-23 15:10
mvaGraeme_Grant23-Mar-23 15:10 
GeneralRe: closing serialport1 form 1 and form 2 Pin
geomeo12323-Mar-23 16:10
geomeo12323-Mar-23 16:10 
GeneralRe: closing serialport1 form 1 and form 2 Pin
Graeme_Grant23-Mar-23 16:22
mvaGraeme_Grant23-Mar-23 16:22 
Questionchange new form in winforms process running by user Pin
Member 1235220616-Jan-23 2:02
Member 1235220616-Jan-23 2:02 
AnswerRe: change new form in winforms process running by user Pin
Dave Kreskowiak16-Jan-23 13:44
mveDave Kreskowiak16-Jan-23 13:44 
GeneralRe: change new form in winforms process running by user Pin
Member 1235220620-Jan-23 11:09
Member 1235220620-Jan-23 11:09 
Questionadd new row if not exist row in datagirdview1 Pin
Sufvan Adil 202315-Jan-23 15:25
Sufvan Adil 202315-Jan-23 15:25 
my code
If DataGridView1.Rows.Count - 1 Then

                   DataGridView1.Rows.Add()
                       DataGridView1.CurrentCell = DataGridView1.Rows(DataGridView1.Rows.Count - 1).Cells(1)
                       DataGridView1.BeginEdit(True)

               Else
                   Exit Sub
                   '    DataGridView1.Rows.Add()
               End If

i many code try

If (DataGridView1.Rows.Count > 0) Then
    For i = 0 To DataGridView1.Rows.Count - 1
        If DataGridView1.Rows(i).Cells("d1alisname").Value = "" Then

            Exit Sub
        Else
            DataGridView1.Rows.Add()
        End If
    Next
End If

but add row
AnswerRe: add new row if not exist row in datagirdview1 Pin
Richard MacCutchan15-Jan-23 22:01
mveRichard MacCutchan15-Jan-23 22:01 
AnswerRe: add new row if not exist row in datagirdview1 Pin
Richard Deeming15-Jan-23 22:33
mveRichard Deeming15-Jan-23 22:33 
Questionvb.net chart axis.X only every 5th Label should be shown. Pin
JTrum9-May-22 4:11
JTrum9-May-22 4:11 
AnswerRe: vb.net chart axis.X only every 5th Label should be shown. Pin
Dave Kreskowiak21-Jul-22 8:33
mveDave Kreskowiak21-Jul-22 8:33 
AnswerRe: vb.net chart axis.X only every 5th Label should be shown. Pin
Gerry Schmitz22-Jul-22 5:05
mveGerry Schmitz22-Jul-22 5:05 
GeneralMessage Closed Pin
1-Mar-22 19:44
SteveButtler1-Mar-22 19:44 

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.