0
votes
1answer
26 views

WPF Possible to disable all click events in Window

Would it be possible to disable all click events (mainly buttons) in a Window for 10 seconds, then re enable them?. I realize I could write code to manually disable all click events by calling them ...
0
votes
1answer
28 views

WPF vb.net Make buttons on Window enable after click event on Page

I have a Window and a Page. The Window has 3 buttons, which are disable by default. The Page has 1 button that when clicked 10 times shows a message, and should enable the buttons on the Window. How ...
1
vote
2answers
39 views

VB.net control with same event handlers

Hello I have this question during my project I'm writing a program using VB with VB express2010 One of my feature is a group of control (lable to be exact), they are attached with same event ...
0
votes
1answer
45 views

WPF VB.net AddHandler from Page1 to Show Message MainWIndow

I'm stuck. I am trying to AddHandler for a button on Page1 that when button is clicked it will AddHandler to MainWindow_MouseUp Event,so I can click anywhere on the MainWindow to show Message. Any ...
0
votes
2answers
65 views

Using event in WPF

I have two textboxes in WPF. named txt1 and txt2. In the lostFocus of txt1 I write If txt1.Text is nothing then txt1.Focus End If In the lostFocus event of txt2 I write If txt2.Text is ...
0
votes
1answer
34 views

Asp.net (VB) Buttons do not fire

All my buttons under my aspx page do not fire. Even if events are assigned to them: button_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button.Click Also, I've tried to ...
0
votes
2answers
27 views

Fire Validated Event on WinForms ComboBox

I have some logic being handled in the Validated event on a combobox, but would like it to trigger as soon as a selection is made. I can handle the SelectedIndexChanged event separately in order to ...
0
votes
1answer
32 views

Retrieve client side ddl.change() selecteditemtext and save in vb.net string

This existing question "Filling a DropDownList with an AJAX response and getting the selected value on the server with ASP.NET WebForms" on stackoverflow came close to answering my question, but not ...
-1
votes
0answers
17 views

What events does BindingSource use to populate and read controls?

First let me set some context to the question and why I want to do it. The ISeries (AS400) uses an ISO timestamp field, it stores as a text "yyyy-MM-dd-HH.mm.ss.ffff" So when data binding to the ...
0
votes
1answer
60 views

WPF VB.net sharing public sub procedures

I'm new to VB.net so please understand. I have a MainWindow, Frame1, Frame2 (AdFrame1), Page1. MainWindow loads Page1 from Frame1 on startup. In MainWindow.vb class I have a Public Sub that makes ...
0
votes
0answers
27 views

Calling an event from another aspx

I have the next doubt, I have an aspx page where I want to put a button and then I have another aspx page with another button which have this event when you click on it. I want that when you put on ...
0
votes
1answer
25 views

How to raise event on a mocked object in VB.NET with Rhino Mocks

I know how to do it in C#: (from the docs) view.Raise(x => x.Load += null, this, EventArgs.Empty); I tried the following: Me.MockObject.Raise(Sub(x) x.SomeEvent(), someArgs) 'Compiler Error: ...
1
vote
1answer
73 views

Storing events in a dictionary, and then raising them

I managed to get a dictionary that can store events: 'Terrible .NET events... where's sender and e?! Public Event ItHappened() Public Event ItAlmostHappened() Private mapping As New Dictionary(Of ...
0
votes
1answer
78 views

DataGridViw ComboBox Column Event SelectedindexChanged

in tha datagridview there are five columns as 1 -Product ID 2- Product Name 3-Description 4-Price and the fifth one is select-country which is comboboxcolumn ...
0
votes
3answers
45 views

How do I simulate a click event in VB Windows Forms

I just want to connect two arbitrary controls, so that if one is clicked, the other should act as though it's clicked - is this even remotely possible? it seems like it SHOULD be so easy, but the ...
0
votes
1answer
82 views

Combobox selected Item does not match with its selected

I faced with that issue which appears with spaces after letters finished more than Combobox.SelectedItem's length. Why? How can I fix this issue? Below is showing my issue as visual its a very short ...
0
votes
0answers
61 views

FileSystemWatcher - Reduce Multiple Event Raising (or Reduce Results of Multiple Events) in Visual Basic (VS 2012 V11)

I'm trying to reduce the number of events raised to one when the FileSystemWatcher changes (or at least display text in a textbox only once when an event is raised, by either removing the duplicate ...
0
votes
1answer
185 views

prevent duplicate record being enter in DataGridView

Process is as follow Entering record from textboxs to datagridview and then to database when enter data into textbox and fire the click event of Enter the data into datagridview button constraint ...
0
votes
1answer
78 views

WPF attach code behind handler for every mouse up/move event

I have my view build up with a TreeListView and its content is generated by a datatemplate. I now need to handle all the mousemove/mouseup events in my view on whatever visual element they may be ...
0
votes
1answer
47 views

pass datarow from a different form using multiple RaiseEvents

I've got two forms. frmProject has an ultragrid of system rows. When I double-click on a row, it opens frmSystem, displaying textboxes populated with details from the active row on frmProject. I want ...
1
vote
2answers
66 views

Why do ASP.Net events start with “On” [closed]

Say I want to use the TextChanged event on a TextBox. Why does the event show up in the aspx file as "OnTextChanged"? <asp:TextBox ID="Textbox1" runat="server" ...
0
votes
1answer
33 views

Where is Visible Changed Event gone in asp.net

I want to have visibleChanged event of panel in asp.net(using VB.net) to shorten my code. But I cant find it
-1
votes
1answer
30 views

Want to call a method with parameters of an listbox from a buttonclick

I have this method that looks like this: Public Sub CreateEditbox(sender As Object) ListBox1 = DirectCast(sender, ListBox) itemSelected = ListBox1.SelectedIndex Dim r As Rectangle = ...
2
votes
1answer
227 views

Visual Studio 2012 crash on startup

As soon as i open visual studio i goes unresponsive, i have looked at the event viewer and it gives 3 error when visual studio crashes in order: 1) Application: WDExpress.exe Framework Version: ...
1
vote
0answers
35 views

Detect screen shutdown in vb.net

I'm building an application using vb.net that should record some specific user actions, one of these actions is the screen shutdown, is there a way to do that? Maybe a system event or something that i ...
0
votes
0answers
134 views

MyBase.Load or Me.Load not firing while the form loads with no traceable error

I have a vb.net windows form that is not firing the form load handler when the form is open. This happen after I manually edit the designer.vb file to add some new fields. I've review a similar ...
3
votes
2answers
93 views

Detect Printer in Excel Workbook.BeforePrint Event

When handling the Workbook.BeforePrint event in Excel, is there any way to determine the printer that's being targeted? I know the event handler signature allows cancelling of the event, as documented ...
0
votes
0answers
23 views

Raising an event from within a ObjectModel.Collection(Of T)

I have a collection defined as follows: Public Class cData_X_Collection Inherits ObjectModel.Collection(Of cData_X) End Class This class is used in ListView on a WPF form and works correctly. ...
0
votes
1answer
67 views

VB.NET - Manually raise FormClosing Event

Im quiet new to vb.net and I'm trying to create a special system when a user closes a form. For my system I would like to raise the FormClosing Event manually. -> So: How can I raise the FormClosing ...
1
vote
1answer
56 views

Keydown event weird behaviour

I'm trying to catch shortcut keys. I need an explanation on how KeyDown Events are managed. Let's take this as an example : Private Sub SoldeOuvertFou_KeyDown(ByVal sender As System.Object, ByVal e ...
0
votes
1answer
90 views

Why does my RichTextBox not activate its events vb.net

Okay so i found this code on stackoverflow and i implemented it into a new class file in my project. Imports System Imports System.Collections.Generic Imports System.Text Imports ...
1
vote
4answers
175 views

How do I fire an Event in VB.Net code?

I have a form that has a start button (to allow users to run the processes over and over if they wish), and I want to send a btnStart.Click event when the form loads, so that the processes start ...
0
votes
0answers
386 views

How to catch the print event When user Clicks Print Button In Crystal Report Viewer?

I created a report using vb.net 2008 and crystal report viewer. If user print the report, I need to recored it. User click on print icon and print dialog show up with default print then user can click ...
0
votes
2answers
99 views

VB.NET Object Class Event not working

I'm trying to write some code which will raise an event in one of my objects which is then handled in one of my window forms. It appears to be quite simple but I can't get the code to work; the ...
0
votes
0answers
180 views

VB.NET (2010) pass event from Form to calling class to raise from dll

I have some usb code that requires a form handle to operate, which has been used successfully for over 2 years now. I am now trying to wrap up that functionality into a dll, but a,m having problems ...
0
votes
0answers
58 views

how to handle an event fired from a thread in .NET

I'm trying to handle events fired from a third party dll (SDK). Basically, I am able to catch (handle) these events if the object is instantiated from the main thread (i.e. from the main application ...
5
votes
1answer
85 views

Does WithEvents in Visual Basic keep its EventHandlers when changing the reference to the object?

Does WithEvents in Visual Basic keep its EventHandlers when changing the reference to the object? Say I have declared a button, firing events: Private WithEvents _MyButton Now I am subscribing to ...
0
votes
0answers
114 views

Combo box value On Not in List

im new to access 2007 my data have been added into my Faculty database. but in my Faculty form i have a combo box for staff which has a staffDesc and textbox which always increment when i add new ...
0
votes
1answer
76 views

Adding WithEvents to SerialPort object place on form in VB.NET

I have added a SerialPort object onto a form I created in a VB.NET solution. How do I add "WithEvents" to it, since I dragged it onto the form instead of creating it in code. Is it even necessary to ...
0
votes
0answers
66 views

Intermittent Event Firing VB.NET

I encountered a strange problem at work today, and I'm not sure where to go next. I work on software (VB.NET) that runs on multiple computers over a network. On one (and only one) of the computers, ...
0
votes
0answers
70 views

VSTO Built-in buttons OnClick event

I have an Excel addin, and I'm trying to set some of the button images to be dependent on the Theme Color (colour) of the workbook. Is there a way to determine when the Theme Color has been changed, ...
1
vote
1answer
247 views

VB.NET right button click event on dynamically created button

Similar to: Get the ID/Name of a button in a click event. VB.NET ? I am looking to find whether the left or right button was clicked on a mouse. I have declared a block class which holds buttons. ...
1
vote
1answer
40 views

Autoupdatable properties in Visual Basic .NET

I am a beginner VB.NET programmer and I am trying to implement a class Principal with two members which are instances of two different classes. As I am learning how to use events and delegates I ...
0
votes
2answers
118 views

Event binding to ViewModel events in XAML

WPF newbie here. Suppose my ViewModel class has an event SomethingHappened defined as: Public Event SomethingHappened(message As String) and there is a local resource in my View define as: ...
1
vote
1answer
88 views

How create object and and the new created object events by coding in vb.net

Hello Friends i hava a big problem with my new project, How to create object and and the new created object events by coding in vb.net this is my code i can create the object with array but i can't ...
0
votes
1answer
61 views

Migrating Handles (HttpApplication) methods from VB.NET to C#?

I'm migrating some code from VB.NET to C# (4.0). I find structurs like: Private Sub WhitePointHttpApplicationBase_BeginRequest(sender As Object, e As System.EventArgs) Handles Me.BeginRequest End ...
0
votes
2answers
115 views

Audio file class

I am using VB.net VS2012 and would like some help playing an Audio file. Here is my code: ''' <summary> ''' This class is a wrapper for the Windows API calls to play wave, midi or mp3 files. ...
-2
votes
3answers
201 views

Multiple event handling on the same function on .NET

I was recently testing with some FileSystemWatcher and I wonder how the event handling works in .NET. For example, with this code in Vb.NET: Dim fsw1, fsw2, fsw3 As New FileSystemWatcher() Private ...
0
votes
1answer
59 views

treeview node event

I want to add a event to my TreeView after a user select a node. For i = 0 To Informacion.Count - 1 Step +1 arreglosplit = Informacion(i) Select Case arreglosplit(3) ...
0
votes
1answer
106 views

Datagridview filtering blank

I don't know if there's something wrong with the code, but every time I enter a value into the text box the datagridview doesn't filter, meaning it just goes blank as if it didn't find anything. can ...

1 2 3 4 5 7