Public Sub Main() Not Firing?
May 5, 2011
I made my application single instance using the Mutex example from the codebank (converted to VB).
If I place
If Not FirstInstance Then Application.Exit()
in the Form_Load event of the main form, the form will show briefly before it is closed (on second instance). So I thought the way around this was by using Sub Main() (as I plan to add commandline support later), but the event is not firing with a MessageBox test. Where does this code need to go to avoid having the main form show briefly?
Converted Mutex
Public FirstInstance As Boolean
Public Mutex As Mutex = New Mutex(False, "<ID>", FirstInstance)
View 4 Replies
ADVERTISEMENT
Feb 10, 2011
I can access a module from code behind but not from the aspx page in inline VB code <% ... %>.
View 2 Replies
Apr 7, 2011
Imports System
Imports System.Threading
Imports System.ComponentModel[code]....
how to declare "smsport" on class smscomms as public so that it can be access in class form1 or button1_click event.
View 5 Replies
Aug 26, 2010
How do declare a public variable .aspx web page that can be used in all the pages within my web application?
View 3 Replies
Jul 28, 2009
My app works fine on the development machine and 3 other machines. However, some machines just show the main login box and then fail to show the main screen. There is no error message. I installed VS 2008 express on on of such machines and when i compile the project, the following errors appear:
Type 'Microsoft.Office.Interop.Access.Application' is not defined.
Type 'dao.DBEngine' is not defined.
[CODE]..........................
View 3 Replies
Jun 14, 2010
I have a solution with more than one project and the main project contains buttons to open forms from different projects that are in the same solution. Say Project1 is the main project and Project2 is the different project that gives the following error when i compile it:
Error 3 'Sub Main' is declared more than once in 'SystemInformation': SystemInformation.Program.Main(), SystemInformation.My.MyApplication.Main(Args() As String) System Information II
I have already seen other threads with this question but it does not work for me because i have more than one project.For Project2: Application Framework is disabled and the startup object is "SubMain".
View 2 Replies
Jun 12, 2011
I want to know what implies to declare a function or a sub using public or directly Sub / Function i.e.:
Public Function Whatever()
' Process
End Function
versus.
Function Whatever()
' Process
End Function
View 4 Replies
Jun 4, 2012
I have the following button:[code]I have the following method but looks like it is not hitting the method:Protected Sub lnkEdit_Click(ByVal sender As Object, ByVal e As System.EventArgs)End Sub..Wondering if I am missing something. I put a breakpoint on the Protected Sub lnkEdit_Click but on click of the imagebutton I do not go there.
View 2 Replies
Nov 25, 2010
Here's the item from the View @Html.EditorFor(Function(model) model.BirthDate)
Here's the code from the EditorTemplate (simplified)
@ModelType Date?
<span>
@Html.TextBox("", Model)
</span>
[Code]...
Ok, so after some digging, I found that if I add <UIHint("Date")> to my BuddyClass, then the template works.
So my "new" question would be... why wouldn't it pick this up by default?
View 1 Replies
May 25, 2010
I am using a monthcalendar inside of a panel. when the user changes the "showweeknumbers" of the calendar I need to move some label to the right of the calendar, but I also need to resize the panel. The problem comes into play when the user hides the weeknumbers, the monthcalendar resize event fires and the labels move, but the panel resize causes the month calendar to fire the resize event again, making the labels all out of wack...
View 1 Replies
Oct 23, 2010
ABCDE keydown events, the ones I needed, are not firing. I even set my Form KeyPreview to true but no joy.
up and down arrow keydown events work though.[code]...
View 3 Replies
Feb 4, 2011
I have the following code:
Private Sub Exceptionquery()
Dim connection As System.Data.SqlClient.SqlConnection
Dim connectionString As String = "Initial Catalog=mdr;Data Source=xxxxx;uid=xxxxx;password=xxxxx"
[code]....
I get the error Invalid Object name 'Scratchpad3' on this line:
adapter.Fill(ds)
I have tried to debug this and can see that the query is correct, that the values that are being passed to the sql server are correct but it doesnt look like my code is firing off the Exceptionquery Sub. I thought to call a sub all you had to enter was the name of the sub such as this line:
Exceptionquery()
I have also verified that the mapping of the buttonclick event is mapped correctly. I have other subs that I am calling in almost the same way and those work.
View 1 Replies
Jun 1, 2009
I am creating a dropdown list in code for a gridview. I want to create an addhandler so I can have access to the selectedvalue. However, here (Rowdatabound) the add handler does not get fired off. How should I go about this?
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
''//------------does not fire off add handler-----
[code].....
View 3 Replies
Apr 1, 2012
I've been looking for a solution to this for several hours now and cannot find a solution.
The Scenario:I have a masterpage baseclass (called basemaster)All of my master pages inherit from basemaster
basemaster defines an event 'Public Event HandleClickEvent As EventHandler'I have a masterpage named master1
master1 defines an event handler 'Public Shadows Event HandleClickEvent As EventHandler'master1 has a user control named usr1 usr1 has a button that raises event ButtonClicked when clicked I have a page (thePage) that uses master1 thePage has a button click event handler that it registers like so: 'AddHandler Master.HandleClickEvent, AddressOf HandleTheClick' master1 has code something like:
Protected Sub Usr1_ButtonClicked(ByVal sender As Object, ByVal e As System.EventArgs) Handles Usr1.ButtonClicked RaiseEvent HandleClickEvent(sender, e) End Sub when thePage loads I see it register the handler on master1 when the button is clicked, Usr1_ButtonClicked is fired and I step through the RaiseEvent but HandleClickEvent on thePage is never reached.
View 1 Replies
Jun 18, 2012
I am upgrading a 1.1 web app to 4.0 and am running into an issue with the page_load of a custom user control firing twice, both being treated as non-postbacks (IsPostBack is false in the case). I have read around and it seems that there are 2 culprits to this, 1 being an img tag without something in the src part (which there are no images on this page at all) or 2 an issue with AutoEventWireup and Handles being used at the same time. I have looked through all my code and there are no Handles keywords in there at all and AutoEventWireUp is set to true on every page, yet I still get this issue.
[Code]...
View 1 Replies
Apr 26, 2009
I am creating a dropdown list in code for a gridview. I want to create an addhandler so I can have access to the selectedvalue. However, here (Rowdatabound) the add handler does not get fired off. How should I go about this?
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
''//------------does not fire off add handler-----
[code]....
View 4 Replies
Apr 20, 2012
The problem im having is a little complicated to explain, so please bear with me. I have 2 button controls. In the page load, I wanted to know what button created a postback on the page load. Through research I have found this snippet below and it works as expected. So here is my scenario of events that occur when click on the button.
1. Click the button does a postback
2. Runs the function below and tell me the id of the button
3. Runs the clicked event handlers for that button [code]
The problem comes in when I click the second button, it does steps 1 and 2 but NEVER DOES 3. Through testing, I have that it only does 1, 2, and 3 on the first button clicked.[code]
View 1 Replies
Apr 20, 2012
In the page load, I wanted to know what button created a postback on the page load. Through research I have found this snippet below and it works as expected. So here is my scenario of events that occur when click on the button.
1. Click the button does a postback
2. Runs the function below and tell me the id of the button
3. Runs the clicked event handlers for that button
Protected Sub btnCalc_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnCalc.Click
' Do this
End Sub
The problem comes in when I click the second button, it does steps 1 and 2 but NEVER DOES 3. Through testing, I have that it only does 1, 2, and 3 on the first button clicked.
Function GetPostBackControlName() As String
Dim control As Control = Nothing
Dim ctrlname As String = Page.Request.Params("__EVENTTARGET")
[Code]....
View 1 Replies
Jun 9, 2011
i have a page which dynanically create a link when it load, after i click on the link it should loop in the database fetch all the record and display another set of link , then when i click on these link it should give me all information about this particular record it like this one
Q: when the page loads, it creates the first link which is associated with an event handler, it fire the first event handler (Getname) but it not firing the second event handler (GetnameDetails)
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
If ViewState.Item("nameload") IsNot Nothing Then
If ViewState.Item("nameload").ToString = "True" Then
[Code]....
View 1 Replies
Nov 2, 2010
Can you write code to tell an event not to fire? Sometimes in my applications events fire unexpectedly. I know this is a broad question, but it must have happened to others out there.
View 2 Replies
Jul 1, 2011
The following code was working the other day. Now it isn't. When I type a character in the textbox the event doesn't fire.
[Code]...
why the event would just stop firing?
I'm trying to make it so this the cursor will jump to the next textbox after the user enters 1 character.
View 6 Replies
Sep 21, 2009
OS: MS Server 2003
Visual studio 2005
I had a button on a page that worked at one time and all of a sudden stopped working.
[code]...
View 3 Replies
Jun 5, 2009
[url]...and have applied the vb code. The problem I have is that the user doesn't navigate within the datagridview. They click a save button on a toolstrip. As the user doesn't move from the current cell then the cellvalidating event doenst get fired. [code]...
View 5 Replies
Apr 28, 2009
My ie.documentcomplete is not firing from my installer but it works fine from my source.I don't know where i m going wrongmy working environment
For Each Me.ie In New ShellWindows
If GetForegroundWindow = ie.HWND Then
AddHandler ie.DocumentComplete, AddressOf _
[code].....
View 4 Replies
Aug 26, 2011
We're trying to design a toolbar to use as an addon in another program. we want to set one of the buttons so that when u single click it, the image on the screen is blanked out. And when you double click the same button, it blanks everything except the selected image. However the DoubleClick event doesnt seem to be working at all.
[code]...
View 7 Replies
Feb 21, 2011
I have a textbox that sets the onchange property but when i start typing in the textbox the onchange doesnt fire initially. it never fires whats going on?
Here is the code:
VB.NET
Dim textBoxUrlYoutube As New TextBox
[code].....
View 1 Replies
Oct 13, 2011
I've got a listview with checkboxes activated. When I load data into the list view I have an:
View 2 Replies
Nov 21, 2011
I have two forms that I worked on separately, each has an event load button that works with a datagridview without any problem. but when I created a third form and moved the buttons on it and try to update the datagridviews on the two forms, it doesn't fire up here's my
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
View 8 Replies
Sep 20, 2011
Here is the .aspx code snippet.
[Code]....
Below is my databinding code. It is called from Page_Load()
[Code]....
Bind data to datasource of dropdown control when it is not postback Control was added from toolbox tried adding event handler in .aspx. Still did not work.
View 1 Replies
Sep 15, 2010
I've bound a bindingsource to a datagridview and each time i move the cursor on the datagridview to a different row, the positionChanged does not fire. This event handles other bindingsource too and I hv no problems with other datagridviews.
Im couldnt work out the behaviour for this particular datagridview.
View 2 Replies