Hi Iam using VB.NET 2003 with Access Databse to retrieve images and display it in the grid.My Problem Image column overlaps text column. Could any one help me.....It is very Urgent...............
http://www.codeguru.com/csharp/csharp/cs_controls/datagrid/article.php/c4783/Images-in-a-Data-Grid.htm
ReplyCould this be implemented for a drag and drop where the images come from a file instead of from a database? If so, what changes would need to be made? Thanks, RABB17
ReplyJust what I needed. Very clear documentation
ReplyOriginally posted by: Cesar Ruiz
I'm using Visual Studio 2003.
Originally posted by: melon
when I builder the project, the IDE gives me an error --- "文件"Resource.resx"的资源转换失败。无效的 ResX 输入。"
I translate it to English
"fail to convert the resourses in the file of 'Resource.resx'.it is invaliuable to input Rexs.
Originally posted by: sushil
How can I include one windows component inside another. For instance, how can I include a Treeview control inside a combo-box, and place that combo-box inside a cell in a data grid?
Reply
Originally posted by: Saroj
Set the visible property to false of a combobox at design time. then add the following code to the datagrid_currentcellchanged event.
comboBox1.Visible = true;
Rectangle rect;
rect = dataGrid1.GetCurrentCellBounds();
comboBox1.Width = rect.Width;
comboBox1.Height = rect.Height;
comboBox1.Left = rect.Left + dataGrid1.Left;
comboBox1.Top = rect.Top + dataGrid1.Top;
Originally posted by: qiongwen
I want to draw Rich Text in the Grid Cell, how to do it?
Must I implement the Column style myself? Are there any better ways to do that?
Originally posted by: LuckyMIC
Hi...
How can I use a ComboBox as a DataGridColumn ? I want to inherit the DataGridColumn to define my own Column, but how can I add my own Item ?
Thanks in advance,
MIC
Originally posted by: lamar
Help me with some code I was working on, Thanks
Reply