Click here to Skip to main content
15,905,563 members

Comments by bellatriks (Top 12 by date)

bellatriks 10-May-17 10:57am View    
None. I have use DataReader.


If rdr.HasRows Then
While rdr.Read()
Dim r As Integer = dgTestler.Rows.Add()
dgTestler.Rows.Item(r).Cells(0).Value = rdr(0)
dgTestler.Rows.Item(r).Cells(1).Value = rdr(1)
dgTestler.Rows.Item(r).Cells(2).Value = rdr(2)
dgTestler.Rows.Item(r).Cells(3).Value = rdr(3)
dgTestler.Rows.Item(r).Cells(4).Value = rdr(4)
dgTestler.Rows.Item(r).Cells(5).Value = rdr(5)
dgTestler.Rows.Item(r).Cells(6).Value = False
dgTestler.Rows.Item(r).Cells(7).Value = False
dgTestler.Rows.Item(r).Cells(8).Value = rdr(6)
AgirlikToplami = AgirlikToplami + rdr(6)
'Bulgular.rtxtTitle.Text = rdr(5).ToString()
End While
End If
bellatriks 10-May-17 9:51am View    
Yes, DataGridView is get datas from SQL database.
bellatriks 3-Jun-16 8:48am View    
Nobody has an idea??
bellatriks 19-Oct-15 7:29am View    
Hi Richard,

I don't save images. I use Clipboard and Paste images in RichTextBox.

Dim bmp As New Bitmap(Picture, Picture.Width * 10 / 100, Picture.Height * 10 / 100)

When I double click on the images which I added in rich text box, I'd like the image be shown in its original size.
Nothing is changed in the original images, as you can see.
bellatriks 19-Oct-15 6:06am View    
Hi,
I can't get added image(s) file path when I double clicked on added image(s).