Hello, I'm having this problem in creating a new mvc asp.net project, what can be? http://img196.imageshack.us/i/errorvpt.jpg/[^] http://img195.imageshack.us/i/abouty.jpg/[^] Tks a Lot!
FernandoMartin
Posts
-
Problem to create mvc asp.net project in vs 2008 -
Clear the Service Broker QueueHi, How can i list the queues of the Service Broker and clear them? thank you a lot.:)
-
ContextMenuStrip and DataGridViewHello, I have to show a ContextMenuStrip in the Header of the DataGridView. In the event ColumnHeaderMouseClick do datagridview i catch the coordenates e.X and e.Y of the mouse, but the ContextMenu doesn't appear where the mouse is, i always appears in the first columns. look the image thank you a lot
-
Data Grid View Column Headersyou can try: foreach (DataColumn column in this.dataGridView1.Columns) { this.listBox1.Items.Add(column.HeaderText); }
-
datagridview selected row, highlight rowhello has anybody tried to deselect a row of the datagridview? i try to deselect a row, but the rowheader ALWAYS indicates a select row, i aleady tried to use: ClearSelection() .Selected = false; but nothing works. the "highlight" in the row disappears, but the rowheader indication not. then, if I try to verify the row to select it again, it never works, because the row is always selected. anybody knows the solution? thanks a lot again :)
-
deselect a rowthe "SelectedIndex" does not exist in this case.
-
deselect a rowhello, I want to deselect a row in the datagridview, and I'm using the code:
if ( dgv[ hti.ColumnIndex, hti.RowIndex ].Selected ) { dgv[ hti.ColumnIndex, hti.RowIndex ].Selected = false; } else { dgv[ hti.ColumnIndex, hti.RowIndex ].Selected = true; }
this code is in the DatagridView_MouseClick. the code does not work, anybody knows why? thank you -
selected column header datagridviewhi, when I click with the right button of the mouse in the datagridview, the full row is selected, but the "pointer" (column header) of the datagridview does'nt, then, the value of the current row is passed wrong. how I can fix it? thank u a lot :)
-
remove the datagridview "pointer"oh, thanks a lot man
-
remove the datagridview "pointer"the other post was deleted
-
remove the datagridview "pointer"Hello, i'd like to remove the pointer of the datagridview, i don't know exactly the name of that. look the picture: http://img105.imageshack.us/my.php?image=pointerua1.jpg thank you !!
-
each control in formhello, i have 5 checkboxes in the form, i want to do something like this:
foreach (control c in this.Cotrols) { if (c.GetType.ToString() == "System.Forms.CheckBox") { MessageBox.Show("anything"); } }
the problem is: if the checkboxes are inside a panel, ou a groupbox, i cant verify if exists checkboxes in the form... what i can do to find the checboxes that are inside de panel/groupbox? thanks a lot -
disable next buttonomg, where is it? i cant find...
-
disable next buttonHow do I disable the Next button on the Custom Setup screen if no features is selected? thanks !!! :)
-
Hi-jacked file extensionstry system restoration.
-
how to cancel a installation (rollback)i'm trying to rollback the installation in the override method OnBeforeInstall, but the error message appears "the savedstate dictionary does not contain the expected values and might have been corrupted", what i have to do? thanks a lot :-D
-
user control + app.configis it possible the dll read the app.config file of the application?
-
user control + app.configHi, i've created a user control and it must read an app.config, but it doesn't work. The user control can'f find the app.config file. how I do to user control find thee app.config file? thank you.