Click here to Skip to main content
15,912,021 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Icon -> Cursor conversion Pin
Mario Zafonte9-Mar-24 22:53
Mario Zafonte9-Mar-24 22:53 
GeneralValue in a Datagrid Cell Pin
bexarcounty8-Dec-04 12:34
bexarcounty8-Dec-04 12:34 
GeneralRe: Value in a Datagrid Cell Pin
Jim Matthews9-Dec-04 3:10
Jim Matthews9-Dec-04 3:10 
GeneralArray problem Pin
Jason Weibel8-Dec-04 11:49
Jason Weibel8-Dec-04 11:49 
GeneralRe: Array problem Pin
Dave Kreskowiak9-Dec-04 3:24
mveDave Kreskowiak9-Dec-04 3:24 
GeneralConverting hex data to ascii using vb.net Pin
Member 15285688-Dec-04 11:03
Member 15285688-Dec-04 11:03 
GeneralRe: Converting hex data to ascii using vb.net Pin
Dave Kreskowiak9-Dec-04 0:55
mveDave Kreskowiak9-Dec-04 0:55 
Generaldb grid col width Pin
Paps28-Dec-04 10:08
Paps28-Dec-04 10:08 
Hi all,

I am trying to fix teh col width of my datagrid but I get an error

@ dbgrd.GridColumnStyles(0).Width = 50

The error Msg is :
An unhadled exception of type 'System.ArgumentOutOfRangeEception'
Occured in mscorlib.dll.

Addional Information: Index was out of range. Must be non negative and less than the size of the collection.



Code:

With ds.Tables("Ord1")
Dim iCount As Integer
Dim nRow As Data.DataRow

For iCount = 0 To .Rows.Count - 1

nRow = objDT.NewRow()
nRow(0) = CType(.Rows(iCount).Item(0), String)

nRow(1) = CType(.Rows(iCount).Item(1), String)

nRow(2) = CType(.Rows.Item(iCount).Item(2), Long)

objDT.Rows.Add(nRow)

Next

Dim dbgrd1 As DataGridTableStyle = New DataGridTableStyle()

dbGrid1.DataSource = objDT
dbGrid1.ReadOnly = True

Dim dbgrd As DataGridTableStyle = New DataGridTableStyle()

dbgrd.MappingName = "Ord1"
dbGrid1.TableStyles.Add(dbgrd)
dbgrd.GridColumnStyles(0).Width = 50
dbgrd.GridColumnStyles(1).Width = 500
dbgrd.GridColumnStyles(2).Width = 500


can some one help.

Tnx


GeneralRe: db grid col width Pin
Jim Matthews8-Dec-04 10:36
Jim Matthews8-Dec-04 10:36 
GeneralRe: db grid col width Pin
Paps28-Dec-04 10:54
Paps28-Dec-04 10:54 
GeneralRe: db grid col width Pin
Paps28-Dec-04 11:05
Paps28-Dec-04 11:05 
GeneralRe: db grid col width Pin
Jim Matthews9-Dec-04 2:48
Jim Matthews9-Dec-04 2:48 
GeneralRe: db grid col width Pin
Jim Matthews9-Dec-04 8:25
Jim Matthews9-Dec-04 8:25 
QuestionReturn value from modal dialog? Pin
TAlvord8-Dec-04 10:03
TAlvord8-Dec-04 10:03 
AnswerRe: Return value from modal dialog? Pin
TAlvord10-Dec-04 9:57
TAlvord10-Dec-04 9:57 
Generalpassing variables between windows forms Pin
mpiotro8-Dec-04 8:51
mpiotro8-Dec-04 8:51 
GeneralRe: passing variables between windows forms Pin
Pablo.ar8-Dec-04 9:04
Pablo.ar8-Dec-04 9:04 
GeneralRe: passing variables between windows forms Pin
mpiotro8-Dec-04 9:14
mpiotro8-Dec-04 9:14 
GeneralRe: passing variables between windows forms Pin
Dave Kreskowiak8-Dec-04 10:28
mveDave Kreskowiak8-Dec-04 10:28 
GeneralRe: passing variables between windows forms Pin
Jim Matthews8-Dec-04 10:14
Jim Matthews8-Dec-04 10:14 
GeneralRe: passing variables between windows forms Pin
Pablo.ar8-Dec-04 14:20
Pablo.ar8-Dec-04 14:20 
GeneralRe: passing variables between windows forms Pin
Jim Matthews9-Dec-04 2:53
Jim Matthews9-Dec-04 2:53 
Generaldetecting/removing shared folders Pin
tutank738-Dec-04 7:52
tutank738-Dec-04 7:52 
GeneralPlace pictures in listview items (bigger than LargeIcons) Pin
evermood8-Dec-04 6:50
evermood8-Dec-04 6:50 
GeneralI am in Very bad position please Help (Runtime Error 430) Pin
sathiyaram8-Dec-04 6:43
sathiyaram8-Dec-04 6:43 

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.