6
I Use This!
Activity Not Available

News

Posted about 10 years ago by Gembiart
Hello, I'm trying to develop my first app with Sourcegrid. I tried to find soulution for me with planning grid. 1) In one form c# i've two controls. One is simple datagridview , second is planning grid. I can fill my dgv with data and than creats ... [More] some appointments which are displayed in planninggrid. My questions is: is it possible when i highligth one row in dgv it will be highlited also correct "box" in planning grid and in other way highligth "box" and swe highlited row in dgv ? 2) is it posible to add tooltip for each "box" in planning grid to display some cells value from selected row of dgv.? 3) when i run app and fill planning grid with "boxes" and i give strech column size to control width it's look ok, but after setting full Window (maximize) filled comuns has diffrent size than not filled. How to do it correctly ? ..... Ufffffff thanks a lot for answer....... I'm waiting for your answers clever peoples. Thanks a lot gembiart [Less]
Posted about 10 years ago by jdc20181
First off is this still useable and can i use it in VB instead of C#? Thanks
Posted about 10 years ago by jdc20181
First off is this still useable and can i use it in VB instead of C#? Thanks
Posted about 10 years ago by brightak
I don't know what changed, but I revisited the problem and the above code seems to work now. Too bad the result is still unreadable. I guess that's why RTF is no longer supported in SourceGrid.
Posted about 10 years ago by brightak
I don't know what changed, but I revisited the problem and the above code seems to work now. Too bad the result is still unreadable. I guess that's why RTF is no longer supported in SourceGrid.
Posted about 10 years ago by brightak
Is RichText supported in SourceGrid or isn't it? I can't find any documentation on implementation, which is very frustrating. What follows is my code. It doesn't change the font of the text, which I thought was the point. Am I missing something? ... [More] //Should be bold, italic Courier new, but it isn't. string txt = @"{\rtf1\ansi{\fonttbl\f0\fmodern Courier New;}\f0\b\i Hello\par}"; DevAge.Windows.Forms.RichText rt = new DevAge.Windows.Forms.RichText(txt); grd[r, c] = new SourceGrid.Cells.RichTextBox(rt); //Plain text. Thank you in advance. [Less]
Posted about 10 years ago by brightak
Is RichText supported in SourceGrid or isn't it? I can't find any documentation on implementation, which is very frustrating. What follows is my code. It doesn't change the font of the text, which I thought was the point. Am I missing something? ... [More] //Should be bold, italic Courier new, but it isn't. string txt = @"{\rtf1\ansi{\fonttbl\f0\fmodern Courier New;}\f0\b\i Hello\par}"; DevAge.Windows.Forms.RichText rt = new DevAge.Windows.Forms.RichText(txt); grd[r, c] = new SourceGrid.Cells.RichTextBox(rt); //Plain text. Thank you in advance. [Less]
Posted about 10 years ago by poohwen
I found solution for this. Use code like grd.ShowCell(new SourceGrid.Position(tmpRow, 5), true); grd.Refresh();
Posted about 10 years ago by poohwen
I found solution for this. Use code like grd.ShowCell(new SourceGrid.Position(tmpRow, 5), true); grd.Refresh();
Posted about 10 years ago by poohwen
If I did not set cell like "new SourceGrid.Cells.Cell((""), typeof(string));", then the cell will not draw lines around the cell? How to draw lines around the cell?