Answer Questions
Philip Wright DataGridViewComboBoxColumn Selection is not retained
Hi, I created a DatagridView and added two columns to it. One of them being a ComboBox Column. After running the form, I click on combobox, select some different value and leave the cell. At this point, the value I selected is getting lost and it reverts back to its original state. If someone has made samples on how to use the different column types, can you please put them on the net or mail it to me Thanks, Kunal ...Show All
Zdog DataGridTableStyle
I am writing an application that I needed to hide 3 columns in a datagrid. I used this code: (I am using VS 2005 compact framework). DataGridTableStyle tableStyle = new DataGridTableStyle (); tableStyle.MappingName = "Component" ; DataGridTextBoxColumn tbc; tbc = new DataGridTextBoxColumn (); tbc.MappingName = "ComponentAcre" ; tbc.HeaderText = "Acre" ; tbc.Width = 0; tableStyle.GridColumnStyles.Add(tbc); tbc = new Data ...Show All
Garfiled Query analomy
This one is driving me nuts! this works (both in the point of Previewing Data AND if I use the Query builder - on the Dataset Designer screen). It returns only exact matches: SELECT msrqt_item, msrqt_duedate FROM maxmast.msrqt WHERE (msrqt_item = ) the following works only in the Query builder, and not if I 'Preview Data' (returns empty dataset) SELECT msrqt_item, msrqt_duedate FROM maxmast.msrqt WHERE (msrqt_item LIK ...Show All
RameshKandukuri posting code
How do you guys post code so that it stays indented Thanks wrap it up in code tags... i.e. < code > (your code here) < /code > without the spaces ...Show All
Xinwei Hong - MSFT Transparent form in .NET
Hi I am working on creating a windows toolbar and I want to use this really cool transparent effect. The toolbar contains a list of buttons (links) to different web pages. I want all the buttons to be transparent. I know I can set the opacity on the form to do this, but I would like to be able to use this on the individual controls. To create the effect that when you hover one of the buttons it becomes solid and the rest stays semi-transpa ...Show All
Marius Dumitru Control Initializer Disappears from Designer
I've got an app written in C# in Visual Studio 2005. On one of my forms, I have a user control that contains some user controls and ListViews. For some reason, nearly every time I move off of the form's design view and back, or build the application, the initialization line of code in the designer disappears. I get either a null reference exception, or on the designer I get "The variable 'fltrOrganization' is either undeclared or was never ...Show All
Babujanatha Close button problem...URGENT!
Anyone know how I can conrol what happens when a user presses the close button on the for ( the x int the top right corner). My problem is that the form doesnt close when the button is pressed. Please help!!!!! I ...Show All
Blessy DataGridView + DataGridViewComboBoxColumn + FullRowSelect
I just started using VS.NET 2005 Beta 2 and have ran into what I assume is a bug in the .NET 2.0 framework. When I setup my DataGridView to have a DataGridViewComboBoxColumn and set the SelectionMode to FullRowSelect, it always throws an Exception. The exception message is: "Getting the Size property of a cell in a shared row is not a valid operation" and the exception gets thrown when I attempt to pulldown the contents of the Combo ...Show All
Ryan_Willardryan outlook 2003 like navigation bar
Hi! I'm new to this forum. I would ask you if someone knows where I should find a FREE outlook 2003 like navigation bar... or even some smart navigation bars... Tnx in advance Bye Hi cubeccu, Since you're new here, I thought I'd let y ...Show All
CodeAnger Problem in deploying the vb.net application.
Hi, I faced problem when i installed a vb.net application (containing crystal report) in client system. <error> cannot find keycodeV2.dll or invalid keycode <error> Then i added the following merge modules to the setup project Crystal_Database_Access2003.msm Crystal_Database_Access200 ...Show All
JR-MDX Validation issues (save and new items)
I implemented validation on my form overriding the OnColumnChanging of the underlying datatable. While this worked ok whenever I step on the control (let's say textbox), put an invalid value, and leave the control, it didn't worked in another scenarios: * I want the validation occurs hen I press the Save button * When I do an AddNew on the BindingSource, ColumnChanging event is never fired, so validation does not occur How can I sol ...Show All
Dave Black Easiest way to get the Datagridview's text while editing?
I want to capture the text while the user is typing in a datagridview textbox cell. So far, I've read that I have to use the Editingcontrol in some way. Thanks for any help! Beautiful! Thanks for your patience. Here is my converted C# code for anyone else who wants to view. private void items_tblDataGridView_EditingControlShowing( object sender, DataGridViewEditingControlShowingEventArgs e) { i ...Show All
WilliamDGJones flash problem
I'm using the flash activex control to load swf files. I want it to be dynamic, I'm adding the control at runtime,and it works ok, but I can't load the movie into the control. I tried the Movie property and the loadMovie method but bo ...Show All
KPC DataGridView and Editing Controls...
Hi all! I think there are Microsoft developpers on this forum, so I have a suggestion for the DataGridView. I tried to access the editing control of a column of a DataGridView but I never managed to do it in a "beautiful" way! In order to access it, I had to listen to the EditControlShowing event of the DataGridView which gave me a reference to the editing control! As I can see (If I didn't make any mistake ;)), the editing control of a col ...Show All
Kismet123 how to know app size before minimize app to taskbar
Hi, I need to know the size of the app before the user clicks on the minimize button to minimize the app so it shows on the taskbar. I am saving the size of an app in a config file. I need to know the size of the app be ...Show All
