Answer Questions
Chris Keeble MouseMove event
Hi I have a MDI form with a label and I have a EventHandler for MouseMove. But it doesn't show me the proper x,y location of the mouse pointer. What sould I do The code of the EventHandler is given below: private void Form1_MouseMove( object sender, MouseEventArgs e) { int x = e.X; int y = e.Y; label1.Text = "x = " + x + " y= " + y; } What do you mean b ...Show All
SoulSolutions calling GetThumbnailImage()
How do I use GetThumbnailImage() What do I do with the Abort CallBack delegate I am currently using null which seems to work, but is probably not a good idea. It is used so that you can pass a reference to a method that will be called periodically to determine if the Thumbnail generation should be cancelled. The help says that it is not currently used at the moment, so passing a null reference should be fine. ...Show All
paulo.jorge.carvalho Suggestions for Remote Database Grid display in Web Page
Any suggestions regarding how I might start developing a Client side Web Page holding a dynamic displayable datagrid (or FlexGrid) to PULL from a remote SQL 2000 database RealTime data and show it at a one (1) second rate to the client. Not asking for coding, just direction. Thanks Joseph L. Cousins Computer Sciences Corporation Senior Software Technologist jcousins@csc.com ...Show All
Joel Bennett Dynamically switching queries and databases
I am using VS2005 and am able to bind a complex query to a DataGridView at design time. What I ultimately want to do is: (1) Select a named query from a drop-down box then reconfigure the DataGridView for the appropriate number of columns and repopulate with the new query. (2) Select a database from a drop-down box and refresh the DataGridView with data from the new database. (Assume I have created the appropriate DataSources.) I see wh ...Show All
DeepsR Count Panels in StatusBar?
How can I count number of panels in a StatusBar control int panelCount = statusBar1.Panels.Count;The Count property doesn't show up in intellisense because it is decorated withEditorBrowsable(EditorBrowsableState.Never)]Just type it in directly and it'll wo ...Show All
andrew_parlane How can I turn off tri-state for a DataGridBoolColumn?
Hi How can i turn off tri-state for a a DataGridBoolColumn Please help thanks in advance Anzer Dear all somebody please help............... Anz hello i do not know if you get a solution... i had the same problem and i just find this solution to this issue define a DataGridTableStyle define datagridboolcolumn DataGridTableStyle set allownull to false and add the tablestyle to to datagrid here is my code Dim ts1 As N ...Show All
MABrandt DataGridView Image Columns
I have been pulling my hair out on this one and decided it was time to post it here after Googling for countless hours without finding an answer to my problem. I have a simple databound datagridview that I am trying to display an image on a cell by cell basis based on the cell value (stop, started, finished) etc.. The values are int values and so far I have been able to get it to work but I have noticed lots of flickering while using the grid ...Show All
HoundOfHell DataBinding on Child TextBoxes
I have a Parent Table bound to TextBoxes and I have a Child Table bound to some other TextBoxes. Parent Table DataBinding: txtBrand.DataBindings.Add("Text", dsProduct.Products, "Brand"); txtDescp.DataBindings.Add("Text", dsProduct.Products, "Descp"); Child Table DataBinding: txtSeri ...Show All
SqlBoi How to drag & drop a string to another application ?
hello, i didn't find much help about it, except for the reverse. i would like to drag and drop a string to an external application that already accepts dragging. is it the same way as drag inside thank you You need to manually kick off the drag and drop operation yourself. So you need to intercept the MouseDown, MouseMove and MouseUp events. When the MouseDown occurs you need to rememebe ...Show All
softcore What's the right way to progamatically update values in a relationship?
What I'm trying to do is change a value for all child rows of a parent record. This works fine until I try to update the data source. Then I get a Concurrency Violation. I understand that this is caused becuase the data adapter  ...Show All
kzu Problems downloading PocketTaskVision code
Hi! I've been trying to download the source code and documentation of Pocket Task Vision at: http://download.microsoft.com/download/a/c/c/acc994ea-9a97-44d6-9e78-4d8d6afdcbd3/PocketTaskVision.msi but it's not available. Can someone give me an optional URL where to download it or can send ...Show All
Vimal@.Net Giving the DataGrid a Background Image
Does anyone know how to give the datagrid a background image I'm interested in this because when I set its Dock property to Fill, if the columns aren't wide enough or there aren't enough rows, it's BackColor shows through. I'd like to&n ...Show All
Chris Bilson Icons
Just a quick question. Does Windows XP/2000 contain a standard set of icons i can use in my app Such as the folder icon and the "group" icon Thanks. Sort of... The file Shell32.dll in %SystemRoot%\system32 contains the vast majority ...Show All
CharlieCharlie Main Menu Disappearing
My Code is in VB.NET 2005. I have a Launcher the sits in the system tray and show different forms from a menu. The problem is I have a mainMenu in one of the forms and it is disappearing from the form. When I first run the applet its there then after I do Me .Hide() when I do a frmWorkorder.Show sometime the menu is gone and I get runtime error when I try and make changes to the menu items like enable. Any help with be great. ...Show All
natX Problem with adding child controls
Hello! I am developing custom control. This control contains panel (System.Windows.Forms.Panel) inside. When designer is open, and I am trying to add controls into my control`s panel - problem occurs: controls are added to the form, but not into my cont ...Show All
