Click here to Skip to main content
15,911,030 members
Home / Discussions / C#
   

C#

 
Questionnon-rectangular window Pin
TerRO_GirL29-Aug-08 23:54
TerRO_GirL29-Aug-08 23:54 
AnswerRe: non-rectangular window Pin
MarkB77730-Aug-08 0:50
MarkB77730-Aug-08 0:50 
GeneralRe: non-rectangular window Pin
TerRO_GirL30-Aug-08 5:42
TerRO_GirL30-Aug-08 5:42 
QuestionCombobox event Pin
vasusoftsol29-Aug-08 23:15
vasusoftsol29-Aug-08 23:15 
AnswerRe: Combobox event Pin
Anthony Mushrow29-Aug-08 23:38
professionalAnthony Mushrow29-Aug-08 23:38 
AnswerRe: Combobox event Pin
Mbah Dhaim30-Aug-08 10:50
Mbah Dhaim30-Aug-08 10:50 
Questionstencil bar in ms visio Pin
tahir_makhdoom29-Aug-08 23:14
tahir_makhdoom29-Aug-08 23:14 
AnswerRe: stencil bar in ms visio Pin
Abisodun30-Aug-08 9:01
Abisodun30-Aug-08 9:01 
Questioninvoices .. print to specefic Point or RDLC? Pin
Jassim Rahma29-Aug-08 22:18
Jassim Rahma29-Aug-08 22:18 
AnswerRe: invoices .. print to specefic Point or RDLC? Pin
Naji El Kotob26-Oct-09 4:03
Naji El Kotob26-Oct-09 4:03 
Questionproblem in binded columns to DataGridView Pin
Jassim Rahma29-Aug-08 22:16
Jassim Rahma29-Aug-08 22:16 
AnswerRe: problem in binded columns to DataGridView Pin
leppie29-Aug-08 22:51
leppie29-Aug-08 22:51 
GeneralRe: problem in binded columns to DataGridView Pin
Jassim Rahma29-Aug-08 22:53
Jassim Rahma29-Aug-08 22:53 
AnswerRe: problem in binded columns to DataGridView Pin
Wendelius30-Aug-08 4:57
mentorWendelius30-Aug-08 4:57 
GeneralRe: problem in binded columns to DataGridView Pin
Jassim Rahma30-Aug-08 8:22
Jassim Rahma30-Aug-08 8:22 
GeneralRe: problem in binded columns to DataGridView Pin
Wendelius30-Aug-08 8:31
mentorWendelius30-Aug-08 8:31 
GeneralRe: problem in binded columns to DataGridView Pin
Jassim Rahma30-Aug-08 8:36
Jassim Rahma30-Aug-08 8:36 
GeneralRe: problem in binded columns to DataGridView Pin
Wendelius30-Aug-08 8:48
mentorWendelius30-Aug-08 8:48 
Before setting the DataSource for dataVehicles, use the debugger and check that the data_table is holding columns in right order (the order you have defined in sp), just in case that they arrive correctly.

If that doesn't explain this, add following lines before setting datasource to test if any of them help:
...
sql_adapter.Fill(data_table);            
dataVehicles.DataSource = null;
dataVehicles.Columns.Clear();
dataVehicles.ResetBindings();
dataVehicles.DataSource = data_table;
...

GeneralRe: problem in binded columns to DataGridView Pin
Jassim Rahma30-Aug-08 13:17
Jassim Rahma30-Aug-08 13:17 
GeneralRe: problem in binded columns to DataGridView Pin
Wendelius30-Aug-08 21:12
mentorWendelius30-Aug-08 21:12 
QuestionRepository in sharepoint Pin
manju#12329-Aug-08 19:23
manju#12329-Aug-08 19:23 
Questionscroll bar Pin
algates002729-Aug-08 18:59
algates002729-Aug-08 18:59 
AnswerRe: scroll bar Pin
algates002719-Oct-08 20:12
algates002719-Oct-08 20:12 
QuestionCustom action not running during installation Pin
tahir_makhdoom29-Aug-08 17:55
tahir_makhdoom29-Aug-08 17:55 
Answer[Cross-Post] Re: Custom action not running during installation Pin
Scott Dorman29-Aug-08 18:08
professionalScott Dorman29-Aug-08 18:08 

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.