Click here to Skip to main content
15,910,009 members
Home / Discussions / C#
   

C#

 
AnswerRe: Efficient method to build a CSV string Pin
Dave Kreskowiak23-Jul-21 11:59
mveDave Kreskowiak23-Jul-21 11:59 
AnswerRe: Efficient method to build a CSV string Pin
Richard Andrew x6423-Jul-21 12:18
professionalRichard Andrew x6423-Jul-21 12:18 
AnswerRe: Efficient method to build a CSV string Pin
Gerry Schmitz24-Jul-21 6:20
mveGerry Schmitz24-Jul-21 6:20 
QuestionHow to get double value in string format? Pin
Alex Dunlop23-Jul-21 7:48
Alex Dunlop23-Jul-21 7:48 
AnswerRe: How to get double value in string format? Pin
OriginalGriff23-Jul-21 8:12
mveOriginalGriff23-Jul-21 8:12 
GeneralRe: How to get double value in string format? Pin
Alex Dunlop29-Jul-21 6:20
Alex Dunlop29-Jul-21 6:20 
GeneralRe: How to get double value in string format? Pin
OriginalGriff29-Jul-21 6:32
mveOriginalGriff29-Jul-21 6:32 
GeneralRe: How to get double value in string format? Pin
Alex Dunlop29-Jul-21 6:48
Alex Dunlop29-Jul-21 6:48 
GeneralRe: How to get double value in string format? Pin
OriginalGriff29-Jul-21 6:32
mveOriginalGriff29-Jul-21 6:32 
AnswerRe: How to get double value in string format? Pin
Richard MacCutchan23-Jul-21 8:59
mveRichard MacCutchan23-Jul-21 8:59 
GeneralRe: How to get double value in string format? Pin
Alex Dunlop29-Jul-21 6:21
Alex Dunlop29-Jul-21 6:21 
GeneralRe: How to get double value in string format? Pin
Richard MacCutchan29-Jul-21 6:31
mveRichard MacCutchan29-Jul-21 6:31 
QuestionNotify Icon Context Menu Won't Go Away Pin
Richard Andrew x6422-Jul-21 13:19
professionalRichard Andrew x6422-Jul-21 13:19 
AnswerRe: Notify Icon Context Menu Won't Go Away Pin
Luc Pattyn22-Jul-21 16:25
sitebuilderLuc Pattyn22-Jul-21 16:25 
GeneralRe: Notify Icon Context Menu Won't Go Away Pin
Richard Andrew x6423-Jul-21 2:20
professionalRichard Andrew x6423-Jul-21 2:20 
GeneralRe: Notify Icon Context Menu Won't Go Away Pin
Richard Andrew x6423-Jul-21 12:27
professionalRichard Andrew x6423-Jul-21 12:27 
GeneralRe: Notify Icon Context Menu Won't Go Away Pin
Luc Pattyn23-Jul-21 12:37
sitebuilderLuc Pattyn23-Jul-21 12:37 
QuestionDataGirdView black screen Pin
Choi KyuJung21-Jul-21 16:08
Choi KyuJung21-Jul-21 16:08 
DataGirdView show black screen on some computers.
I don't know how to solve.Confused | :confused:

DataGirdView setting

C#
this.dGVMemberMain_MemberList.AllowUserToAddRows = false;
           this.dGVMemberMain_MemberList.AllowUserToDeleteRows = false;
           this.dGVMemberMain_MemberList.AllowUserToResizeColumns = false;
           this.dGVMemberMain_MemberList.AllowUserToResizeRows = false;
           this.dGVMemberMain_MemberList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
           | System.Windows.Forms.AnchorStyles.Left)
           | System.Windows.Forms.AnchorStyles.Right)));
           this.dGVMemberMain_MemberList.BackgroundColor = System.Drawing.SystemColors.Window;
           dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
           dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
           dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림체", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
           dataGridViewCellStyle1.ForeColor = System.Drawing.Color.DarkBlue;
           dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
           dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
           dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
           this.dGVMemberMain_MemberList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
           this.dGVMemberMain_MemberList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
           dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
           dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
           dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림체", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
           dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
           dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
           dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
           dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
           this.dGVMemberMain_MemberList.DefaultCellStyle = dataGridViewCellStyle2;
           this.dGVMemberMain_MemberList.GridColor = System.Drawing.SystemColors.ControlLight;
           this.dGVMemberMain_MemberList.Location = new System.Drawing.Point(7, 70);
           this.dGVMemberMain_MemberList.Name = "dGVMemberMain_MemberList";
           this.dGVMemberMain_MemberList.RowHeadersVisible = false;
           this.dGVMemberMain_MemberList.RowTemplate.Height = 23;
           this.dGVMemberMain_MemberList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
           this.dGVMemberMain_MemberList.Size = new System.Drawing.Size(758, 222);
           this.dGVMemberMain_MemberList.TabIndex = 14;

AnswerRe: DataGirdView black screen Pin
OriginalGriff21-Jul-21 20:20
mveOriginalGriff21-Jul-21 20:20 
GeneralRe: DataGirdView black screen Pin
Choi KyuJung22-Jul-21 18:33
Choi KyuJung22-Jul-21 18:33 
GeneralRe: DataGirdView black screen Pin
OriginalGriff22-Jul-21 19:12
mveOriginalGriff22-Jul-21 19:12 
AnswerRe: DataGirdView black screen Pin
Gerry Schmitz22-Jul-21 5:00
mveGerry Schmitz22-Jul-21 5:00 
GeneralRe: DataGirdView black screen Pin
Choi KyuJung22-Jul-21 15:33
Choi KyuJung22-Jul-21 15:33 
QuestionWhy I can not get requested data when I open connection? Pin
Sajo Nezic19-Jul-21 22:29
Sajo Nezic19-Jul-21 22:29 
AnswerRe: Why I can not get requested data when I open connection? Pin
OriginalGriff19-Jul-21 23:21
mveOriginalGriff19-Jul-21 23:21 

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.