Answer Questions
Nagendran Sellaiah How to block events in a form
I've got the following problem. I need to block any event in a form while a separate thread is working. I've tried to use form.Cursor = Cursors.WaitCursor; but it doesn't work since I can close the form. Of course there's a way to make the form disabled but it's not good solution for me. Any other suggestions You can do something similar to this using the IMessageFilter interface. You can loo ...Show All
Sixfore Form maximize/minimize click event
I need to know when the maximize or minimize button has been clicked. I am saving the window state so it is in the same state as when the user closed the app. Anyone know how to do this Thanks Barry Use the form resize event. Deal. Hiding the form won't change the size. All he needs to do is save the form position. No need to get the message before the actual change. L ...Show All
Kent Liu Strange problem, assigning values to cells
Hi there, I do have a DataGridView on my project form. In loading code i bind the DGV to some db at run-time. SqlCommandBuilder scb = new SqlCommandBuilder (da); DataSet ds = new DataSet (); da.Fill(ds, "HAREKET_DETAY" ); datagrid_detay.AutoGenerateColumns = true ; datagrid_detay.DataSource = ds; datagrid_detay.DataMember = "HAREKET_DETAY" ; Then i insert 3 custom rows which are unbound ...Show All
NeerajAg Application Architecture Question
I was hoping someone would be kind enough to assist me with my dilemma. I have an existing web application that displays pictures (newspaper ads) on the server. This pictures reside under the web application “c:/inetpub/appname/imageupload”. We currently hav ...Show All
Itsme850 Databind textboxes
Hello, I've got several textboxes bound to a dataset. Everything works great the first time but then when I search for another record nothing changes. When I walk through the code the right value is passed into the sql statement, everything looks go ...Show All
Anton Klimov - MSFT Please help big newbie!
I have Vb .NET Can someone help me to create my first bug in VB I cant find anywhere where the come from the farm works! I checked, its VB code too. Please help as fast as u can! Thanks! The Online Documentation Step3a  ...Show All
MarkBU Windows Forms Design strategy
I am new to .net . When building forms to interface, say, to SQLServer tables and queries, I imagine forms splitted into components (as frames in html), like header, body, footer I suppose the way is to use UserControls as containers (for instance,& ...Show All
Doeb ListView Scroll and Resize Column events
Hi, I had to make a ListView that could show some ListBoxes and allow all items editing (Details view of course). At first I couldn't find any Item_Click events to simply show the TextBox (or ListBox) where that item is (when user clicks on&nbs ...Show All
samdalil UI types
This is probably a stupid question, but I can't seem to find any information on it. ANyway, how do you create the type of UI seen in many products where there are several buttons on the left, and they swap forms contained in a pane on ...Show All
Harry Gould Don't show form
Hi, I'm trying to write an app that doesn't open a form when run, but puts an icon in the system tray, which when double clicked, opens the form. I can do everything except stop the form from opening. I've tried adding a this.Hide(); to&n ...Show All
Surovich DateTimePicker column
Does anyone know if Microsoft will be including a DateTimePicker column in the DataGridView (for underlying date values) The current article says "TextBox, Image, CheckBox, ComboBox, Link, and Button column and cell types" will be included. I'm hoping ...Show All
PMurphMan Rebar and Band controls ported to .NET
I'd like to see the band and rebar controls ported to .NET to allow easier integration with the IDE. Jason If you're using IE, look at the menu and toolbar. Those are rebar controls. Under View->Panels are various panels you probably&nb ...Show All
Kent Chenery How to access to Task Vision?
Plz give me an acccount of task vision, I don't know it! Thanks a lot! You looking for username: jdoe password: welcome ...Show All
Daniel A. Kornev ComboBox issue
Hi all, I'm having serious trouble with an thing that is supposed work without troubles. I'm using VS 1.1 with XP pro for an Win32 app. Thing is: Have an form with an ComboBox, that is filled from an Business Object, to have the name displayed,  ...Show All
Srini Satrasala Connect to SQL Server
Hi! I tried to connect to SQL Server database by the following code: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Try Dim con As  ...Show All
