Answer Questions
Hal Styli Customise Click Once Update Process
I have been using the UAB for a while, and have not yet had a chance to play with clickonce within VS2005. I was wondering if anyone knew if it is possible to customise the update process as you can with the UAB, by implementing your own Activation Processor. With the UAB i found this useful as i could create a custom processor to run Database scripts that i had downloaded along with the application files. Any Ideas ...Show All
Suma Sushilendra Fotovision Enhancement
I to everyone i've just (quite) finished a little mod on fotovision. I've added the possibility to use accounts to access different website. It's now possibile to manage more that one website. So, let's say you have www.yourisite.com/friends and www.yoursite.com/parent ...Show All
ChuaWenChing DataGridView and trapping row changes
I have a DataGridView bound via a BindingSource to a typed DataSet. Every row is read-only except for a checkbox column bound to a boolean. I want to detect any changes to the checkbox column. Originally I intercepted CellValueChanged, which worked fine, but since setting the SelectionMode to FullModeSelect this event does not fire. What should I be trapping CellContentClicked event should fire when the check box cell changes. -mark ...Show All
Orschiedt Wierd MDI behavior
I have a project where the Parent, and the children have a "transparency" issue. I can see through the Caption of the parent form, all the way to the desktop. In other words, I see all the way through Visual Studio, to what ever ...Show All
Ronen Tidhar how do u change the appearance of the windows and buttons
how do u change the appearance of the windows and buttons from Windows classic style to the Windows XP kind. I have XP and it wont let me change, like there's no choice to put it back HELP ME!!!! PLEASE do you have a manife ...Show All
cfBianchi its very urgent + 'AxWebBrowser' control
I have added a 'AxWebBrowser' control in my windows form for showing the explorer. I m using 2 browser control , one in each tab page. However when I close the screen, i got the following error. "Unable to get the window handle for the 'AxWebBrowser' control. Windowless ActiveX controls are not supported." I have override dispose method. code: if( disposing ) { Marshal.Release(this.axWebBrowser1 .Handle); if(components != null) { com ...Show All
Johan Andersson Setting datagrid column width ??
Hi, How do I set the datagrid column width such that it fits datagrid column's header text or the length of the cell with maximum length. Thanks, Try this. dataGridView1.Columns(1).AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells ACtually I am using DataGridTextBoxColumn and adding them to DataGridTableStyle. I cant see these property there. ...Show All
Arvind2004 Type BindToObject
It would appear that when ControlBindingsCollection.Add(string, object, string) is called, a BindToObject is placed in the "Changed" event handler of the dataSource object. The problem is that this object is not public so it's members cannot be accessed. I would like to be able to retrieve the orginal construction parameters from this object in order to serialize the binding (it's not [Serializable]). Is there a way to convert a BindToObject t ...Show All
Jim Svoboda imports user32.dll into vb.net
Hi, I'm trying to overload the system menu of my window form. for that purpose i'm using the "user32.dll". my statements are as this: Private Declare Function GetSystemMenu Lib "user32" ( ByVal hwnd As Int32, ByVal bRevert As Boolean ) As Int32 Private Declare Function AppendMenu Lib "user32" Alias "AppendMenuA" ( ByVal hMenu As Int32, ByVal wFlags As Int32, ByVal wIDNewItem As Int32, ...Show All
byteshack where to open my connection object?
i am developing a c# windows form app that connects to an oracle backend. i will have a data class object that talks to the db to get data. my questions are: - should i open the connection in the main form and pass it into the&nb ...Show All
Doctor Steve Removing Duplicate Records
I have a datatable which is the result of the import of some proprietory data. It's a transaction record table for customer purchases. Each transaction is linked to the customer account via their unique account code. In my sample data, i have about 4000 transaction records, which relate to approximately 350 unique customers. I want to filter my transactions table based on a date range (which i can do) and then REMOVE all records that ...Show All
A. Fontana Bindingsource AddingNew causes "Cannot add external objects to this list"
Hello! I want some columns to be prefilled before added so I handled the AddingNew event of my bindingsource: Dim _view As System.Data.DataView = New System.Data.DataView(OrderTable ) Dim _row As System.Data.DataRowView = _view.AddNew _row.Item("PositionsNr") = 4 _row.Item("PositionsSubNr") = 1 e.NewObject = _row While executing it raises the error "Cannot add external objects to this list". I think it's some kind of mis ...Show All
Justin Bennett component
What makes up a component Well, it depends on what you mean. A component is generally a unit of code and data, and is sometimes called an object. Do you mean a .NET component Or something else Let us know what you want to ...Show All
captainglassback DataSet change does not update bindingSource.
Hi, I have a DGV with a datasource of a BindingSource. THe BindingSource has a DataSource of a typed DataSet table. These have been linked using the designer. On a button, I want to change the rows that the DataSet table contains, and then have the bindingSource and DGV update automatically (as well as any other controls bound to the bindingSource). Currently, I make the change to the DataSet using tableAdapter.Fill(DataSet.Table) and ...Show All
Andrew Barker Problems with GetHicon method
I've a problem converting System.Drawing.Bitmap in System.Drawing.Icon using the GetHicon method. This is my code sample : private void pSetIco( int parNumImg) { System.Drawing.Bitmap b; b= new Bitmap( this .ilIcons.Images[parNumImg]); this .StartIcon.Icon = Icon.FromHandle(b.GetHicon()); } There are no runtime errors but the result icon is a black box. I've try to save ...Show All
