| MouseDown Event for Label (VIP replies) |
| microsoft.public.dotnet.framework.compactframework |
| How can I add a Mouse down event for a label? I tried the following but nothing happens: this.label1.MouseDown new MouseEventHandler(label1 MouseDown); private void label1 MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { MessageBox.Show("DOWN"); } Regards, Timo |
|
| MouseLeave event when holding button down (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| Hi all I want to create a custom button control for vb.net. I have the control, the only problem is with the MouseLeave event while the mouse button is held down. If you press and hold the left mouse button on a normal button, then move the mouse cursor off the button (with the left mouse button still held down), the button will pop back up. However, if I want to draw the button myself and I have ... |
|
| MouseUp-Event gets 'lost' (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, I have a child form in an MDI Application which seems to loose the MouseUp Event. I grid (for navigation purpose) appears on many of the child forms and in (I think) only one this issue occurs. What happens: Private Sub grdNavigation MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles grdNavigation.MouseDown Debug.WriteLine("Down: " & e.Button.ToStr... |
|
| Move Back command from server (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Is there a way to make the browser move back to the previous page via code behind on the server? The effect would be the same as the user clicking on the browser's back button. Thanks. moondaddy@nospam.com |
|
| Move rows in Datagrid! (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.databinding |
| Move rows in Datagrid! When i move a row in the datagrid DataSource datatable, Edit the row, When i hit tab key a new row inserts att the bottom of the datagrid with the edit value and the old row doesnt change at all. What is wrong? Begin Sample Code: *********************** Private Sub Button1 Click... MoveRowFromTo(1,2) End Sub Private Sub MoveRowFromTo(ByVal fromRow As Integer, ByVal toRow As ... |
|
| Moving a control as runtime (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I use the following three subs to click on a label and reposition it at runtime: Private Sub lblP1JoyUp MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lblP1JoyUp.MouseDown myMouseDown True mouseX Cursor.Position.X Me.Location.X (lblP1JoyUp.Width / 2) mouseY Cursor.Position.Y Me.Location.Y (lblP1JoyUp.Height / 2) End Sub Private Sub lblP1JoyUp Mouse... |
|
| Moving an application build on .NET (VIP replies) |
| microsoft.public.dotnet.security |
| Hi, I build an ASP.NET Application on my development Server. Our Production Environment has a Different Server on which IIS runs, And all the File reside on a different File Server, So i create a website on IIS and specify the remote path for the .net Application. The application doesnt work. How do i make this work. Thank you. Praveena. |
|
| MS Access 2000 Automation, can't quit process... (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I create a new Access.Application instance. As soon as I refernce the property "References", I am unable to issue a truly successful quit on that instance. By that I mean the call to quit is fine but if you look in task manager, the instance is still running. Furthermore, if you opened a database using that instance, you will not be able to open it until you quit the entire application or until yo... |
|
| MS Access and VB.NET (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I am attempting to automate the process within a vb.net windows application of importing a text file into an access database (setting the column seperators, first row being column names and such) but I am not finding examples of this on the net? Has anyone ran across such a thing? |
|
| MS Word & .NET? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| how to read MS Word files with VB.NET ? I'm using IO.StreamReader and work with *.txt files fine but with *.doc files (MS Word) I get something else. Any example ' THX |
|
| MSDN Sample - The ListManager's position must be equal to rowNum (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| Hi All, I used DataGridComboBoxColumn from MSDN magazine ( http://msdn.microsoft.com/msdnmag/issues/03/08/DataGrids/default.aspx). Normally things work fine. but in the following cases I get an error 'The ListManager's position must be equal to rowNum'. 1) when I click on a comboboxcolumn cell 2) and scroll the datagrid 3) and click on another comboboxcolumn cell OR 1) navigate to a tabpage other ... |
|
| Multi row header in Datagrid (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.datagridcontrol |
| I have two columns in my datagrid, Hours Bid and Hours Expense. I would like to have the word Hours span both columns and then just have the column headings Bid and Expense underneath. Is that possible and how do I do that? |
|
| Multi Row Select (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| I have a [DataGrid] that does is not displaying the left most default column of blocks (the one's that show the pencil icon etc). My problem is getting multiple row's selected in the absence of this column. When the user clicks on a read only cell, the row is selected. I want to append the selected row if the user clicks another row with the CTRL key down. I can't see how to do this because the "S... |
|
| Multi-Threaded UI (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I have an application that could do some lengthy updates of a database upon closing a form. So to keep the UI responsive, I'm pushing the updates off to a worker thread. I seen numerous articles on using BeginInvoke on delgates to keep you UI responsive. In these articles, they do a "WaitOne()" call on the UI thread while the worker thread is processing the data. This confuses me. How can the UI t... |
|
| Multiline Listbox? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I need some control that basically acts as a listbox, but allows each item to take up more then one line. I've tried adding a new item and putting in a vbCrLf in there, but that just comes out as a box on the same line. Is there some way of making the listbox show multiple lines for each item, or is there another control (3rd party maybe) that will let me do this? |
|
| multiple childs in MDIParent (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| FormParent load opens FormChildA. FormChildA btn click opens FormChildB. (FormChildA and FormChildB are both children of FormParent) (FormChildA and FormChildB are different forms) Problem: FormChildA btn click can only open one instance for FormChildB. I need multiple instances of FormChildB. Any suggestions or ideas please. tx, Paul |
|
| Multiple Event Handlers for a Single Event - Newbie Question. (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi, If I am not mistaken, it is possible to have multiple event handlers that deal with a particular event. If more than one event handler exists, is there a specific order in which the handlers are called? i.e. How do I determine which handler is called first, second third etc? Thanks, Andy |
|
| multiple forms on one page (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| what are folks doing to get around limitation of one server form per page ? |
|
| Multiple Header rows in datagrid (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.datagridcontrol |
| I have a need for multiple header rows in a datagrid. One header row contains the column headings, the next header row contains html input fields, buttons and other controls and serves as a template for javascript functions to add and delete rows from the table without a round trip to the server (too much latency involved in each round trip). The template row has a css display style set to none ja... |
|
| multiple portals? (VIP replies) |
| ASPFriends.com 'aspngibuyspy' list |
| In the "Portals" table, can we add portals and somehow have multiple versions of portals running in one database? How can we set these up? Thanks, Edward Join the world s largest e mail service with MSN Hotmail. http://www.hotmail.com |
|
| Multiple Recordsets inside a DataGrid (VIP replies) |
| ASPFriends.com 'aspngdatagridrepeaterdatalist' list |
| Hi all, I have two questions: I need to produce a report that has a structure like this: StatusCode,Property, Problem,AutProblems, MiscNotes, Action1, Date Due Action2, Date Due ... ... The report will have the ability to be sorted by StatusCode or by Property When I originally thought of how I would do it, I figured I would return two datasets and build an asp:Table on the fly My Datasets would b... |
|
| Multiple Resultsets - RecordsAffected (VIP replies) |
| microsoft.public.dotnet.framework.adonet |
| Hello, Im trying to send a number of insert statements to SQL Server 2000 at one time, using ADO.NET. The code im using is pretty standard (see below) and the insert is performed all fine and dandy. Dim objCmd As SqlCommand Dim dr As IDataReader objCmd SqlConnection1.CreateCommand() objCmd.Transaction SqlConnection1.BeginTransaction() objCmd.CommandType CommandType.Text objCmd.CommandText v sSQL d... |
|
| multiple selection in ListBox (VIP replies) |
| ASPFriends.com 'aspngfreeforall' list |
| the control System.Web.UI.WebControls.ListBox have a property "SelectionMode" wich lets you enable multiple item selection by setting it to "ListSelectionMode.Multiple".... but how do I get the collection of selected items ??? I haven't been able to find a property or method to accomplish this ? and worse the sample in the docs seems to be wrong because they said : " The following example illustra... |
|
| MULTIPLE SENDERS FOR AN EVENT (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| All of my controls are built at runtime. The events for the controls are hard coded and I relate the control to the event at runtime since the control is created at runtime. The problem is the same event might be used by different controls and I am having problems with determining what control called the event. The Name member is not supported in in .NET Compact Frameworks so I can't cast the send... |
|
| Multiple subforms into Panel Control? (VIP replies) |
| microsoft.public.dotnet.languages.vb.controls |
| The following is related to a Mobile .NET application I am experimenting with. I have a main form, which has the following controls: 2 x Combo boxes. 1 x Command Button 1 x Panel control I then have two (at this stage but it will increase) other forms. I want to load the forms into the panel on the main form, based on the selection in the combo boxes. At this stage I am only concerned with the inp... |
|