Answer Questions
TonyL82 WebBrowser and pop up (VS2005)
Hi all, how can i handle pop up windows opening with the webbrowser control Especially those opened by a window.showmodaldialog javascript function Thanks in advance To block pop-ups, use the following registry key: HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER) SOFTWARE Microsoft Internet Explorer Main FeatureControl FEATURE_WEBOC_POPUPMANAGEMENT For more information on this topic, see ...Show All
BauerK WindowForm Corners
What I would like is be able to do is choose if I want round corners or not for Window Forms in Windows. I honestly prefer a window without round corners thats why I like classic windows theme so much but I like how Vista aero looks so... I would like a config where I can choose either no round corners, top corners, all sides corners. Dunno mabe a preference you guys can add would be nice :) or you can set which corners you want round and then b ...Show All
JCNationwide MdiChildActivate Form Closing Event
MdiChildActivate Event Occurs when a MDI child form is activated or closed within an MDI application. Is there anyway that we can find that the event is raised by the child form closing event I found a solution by adding an close event to every child form that opens as following AddHandler form.FormClosed, AddressOf ClosedChild. And In the ClosedChild event I am able to do what I intend to do. Thank ...Show All
archiered load data only if needed...
hi to everybody! i would like to have a custom datagrid, that only loads the first 10 records of a table. when the user scrolls down on the bottom of all avaliable records a function should then load the next 10 records. i need this 'cause i&nb ...Show All
cybercoaster Super simple question about adding a row to a DataGridView
Howdy folks, I just recently started playing with the DataGridView and love how superior it is to VS2003's DataGrid. I have a question that sounds so simple, yet I can't figure out the solution. I have an unbound DataGridView and add the columns dynamically via code when the application is launched (columns were not created in the designer). Now I want to start adding rows to the grid, but I'd like to be able to create them withou ...Show All
darkangel_17 How to use BindingSource.Filter to select Null fields
I have a BindingSource control bound to a DataSet table. The table has a column called EndDate, which can be Null. I want to set the Filter property to select only rows that have an EndDate of Null, or have EndDate after today. This is what I tried: Me .myBindingSource.Filter = "IsNull(EndDate, '01/01/2099') > '" + Date .Today.ToShortDateString + "'" However, that didn't work. What is the correct syntax ...Show All
WillRogers OpenFileDialog "hangs" on Windows 2000
I have a WinForms remoted application using a simple OpenFileDialog control. When I instantiate the dialog, the program hangs and never responds. This only happens on Windows 2000. The program functions perfectly on Win XP & Win 98. The ...Show All
Dylan Robbins Searchable DataGrid
I am trying to implement searchable DataGrid. I am creating a DataSet object with DataRelation on form load, as follows: Private Sub BindDataGrid() Dim planTS As New DataGridTableStyle Dim appTS As New DataGridTableStyle Try ...Show All
Zano toolStripStatusLabel.Text doesn't update?
I am able to set the toolStripStatusLabel.Text before showing the Form, but after the Form is shown then changing the status is not possible. I do have tried Application.DoEvents() but didn't help. Am using .Net/VS2005/C#. This works: Application .EnableVisualStyles(); Application .SetCompatibleTextRenderingDefault( false ); gui = new GUIForm (); gui.StatusLabel = "Ready" ; Application .Run(gui); This doesn't works: A ...Show All
Mondo327 Debugging ADO.net
Can anyone recommend good online tutorials, books, etc. on debugging ADO.net I have an update of a Dataset and then the datasource through a Windows Form that works great first time the app is run. If I shut down the app&nbs ...Show All
Steelhand ComboBox not selecting Item in new record
Hi! In DataGrid, there is a combo box. when adding new record it is not selecting any item, giving blank. after writting in any text box the combo box is starting select. There is also a autoincreament id. &nb ...Show All
luyan Bubble events to parent control
Hello, Does anyone know if there is an easy way to pass events to a parent from child controls I have a base user control and i have overridden the OnMouseUp, OnMouseDown and OnMouseMove event handlers to drag the control across the screen. I ...Show All
Christoph De Baene CheckedListBox items
... are just a grouped ObjectCollection, doesn't allow you to specify DisplayMember and ValueMember properties to have underlying data values recorded instead of the full-text description one usually displays to users. What's a good hack to workaround this CheckedListB ...Show All
StatlerW Inheritance Base Form lock
I am using a base form which has menu and toolbar in a windows forms application. I changed modifier property all the toolbar items and menu items to protected. The other forms inherits the base form. I can see the controls on my inherited form but can't click on any button on toolbar or menu and neither I can write code for events for the controls on base form. It used to work on Beta1; now the inherited form shows the small lock on ...Show All
Shyju Null Reference Exception
Hi all - Here is the problem. I have a program i used in VB6 that had a set of APIs (not windows but from another program) that were referenced in a module. The code called the api functions and they worked just fine. &nb ...Show All
