Calling A Sub Routine On A User Control?

May 30, 2009

I have a panel2 inside a split container that has several user controls loaded into it. Panel 1 has an exit button and I want to call one of the sub routines that is in one of the user controls loaded into Panel2.

Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
Dim dialogMessage As DialogResult
Dim a As New ucTimeTracker[code]......

This line is giving me trouble "ucTimeTracker.autoWriteFileOnExit()"

I am getting (reference to non-shared member requires an object reference).Basically I want the exit button on frmMain. SplitContainer. Panel1 to call autoWriteFileOnExit() on the user control named ucTimeTracker that is loaded into splitContainer.Panel2

View 2 Replies


ADVERTISEMENT

User Control - Calling A VB Linkbutton's(within A User Control) Click Event From Javascript?

Apr 11, 2009

how can i call a VB function - deleteevent() in usercontrol.ascx.vb from a javascript function in clickhandler(e) in usercontrol.ascx. The call should cause a postback because I need the usercontrol to display the changes.I am currently trying to do it by using a linkbutton with style display:none, and calling its click event from the javascript function. But i dunno how to call the click event.

View 2 Replies

Data Grid In Another Open Form Be Refreshed By Calling A Sub Routine?

May 7, 2012

Can a data grid in another open form be refreshed by calling a sub routine? This app has a form with 2 data grids. When the user double click on one of the grids another form is opened that shows data details. After the user changes the details the user clicks a save button. We have placed this code in the Closing event of the the details form.

Private Sub FormParents_FormClosing(sender As System.Object, e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
FormParentsAndStudents.RefreshDataGrids()
End Sub

[Code]...

Can you tell us what additional coding is needed to refresh this data or if we are using the incorrect place to call this code from within the details form?

View 1 Replies

Asp.net Vb User Control Raising An Event On The Calling Page

Apr 7, 2010

i'm trying to learn about user controls. I created a user control that has a textbox and a button. What i'd like to be able to do is when i click the button in the user control, populate a label in the aspx page. I understand that i could just have a button on the page that uses some properties on the user control to get that information.. but i'd like to know how to do it with the button the user control.. the reason for this is the button is just an example.. a learning tool. if i can get this working, i'd likely be putting thing in the user control that might require this kind of passing information. Anyway.. i've found some c# examples that i tried to get working as vb.. but once started getting into the delegates and events..

View 3 Replies

Asp.net - Calling A Vb Linkbutton's (within A User Control) Click Event From Javascript

Apr 13, 2009

how can i call a VB function - deleteevent() in usercontrol.ascx.vb from a javascript function in clickhandler(e) in usercontrol.ascx. The call should cause a postback because i need the usercontrol to display the changes. i am currently trying to do it by using a linkbutton with style display:none, and calling its click event from the javascript function. But i dunno how to call the click event.

[Code]...

View 1 Replies

Calling Methods In Forms From Embedded User Control Class?

Jul 21, 2010

control which will need to be reused in several forms in my program. It basically consists of several buttons in a panel. To start with, what I need to do is get the button values from the control into a text box on the first form. But I don't want to have a method calling the textbox directly from within the control, because then it won't be reusable in my other forms. Is there something I can do in VB like parentform.textbox.append for example, where you can generically call the methods of the form in which the control appears?

View 2 Replies

X86 Application Calling "AnyCPU" User Control

Nov 8, 2010

I'm building a UserControl which will be used by other developers.

If I build the UserControl for "AnyCPU" will there be any problems if another developer uses my UC in an application which he builds for x86.

I mean if the complete application is running on a 32 bit machine then all should be OK but if the app is running on a 64bit machine then the x86 app will run on wow64 but where does my UC run ? In native 64bit or does it default to the same as the parent ?

Or do I have to make x86 and x64 versions of my UC ?

View 12 Replies

Design A Routine That Will Allow The User To Search?

Dec 12, 2011

I am new to vb.net and am trying to design a routine that will allow the user to search for a record and return the results in a datagrid. Then double click on a row within the datagrid to view a more detailed form. I have been able to build the search form but am having problems with the double click event.I found a sample application on the Microsoft web site which is doing this on a smaller scale. The sample is built on the Northwind sql database and searches the customer table when you double click a row in the datagrid the following Microsoft code runs and opens a detailed form.

[Code]...

View 8 Replies

Sub Routine - Textboxes Using For The User To Enter Number

Mar 12, 2012

If IsNumeric(Hundreds.Text) Then
HundredsTotal.Text = (CDec(Hundreds.Text) * 100).ToString("##,##0.00")
DollarAmtVar = CDec(HundredsTotal.Text)

[CODE]..

The above code is from a small program I have written. This test is done on about 30 textboxes I am using for the user to enter number.

The following is the sub routine that is called.

Sub ShowError()

MessageBox.Show(BoxName & " must be a number.")

End Sub

Here is what I want to do but it won't work.

BoxName.Select()

This is so I can put the focus on the different boxes that might contain an error.

View 4 Replies

Fire The Timer Or Other Routine While Still The WHILE TRUE Routine Checks For Incoming Connections And Messages?

Jan 24, 2012

I am using sockets to send message between computers. I send the messages alright. What I want is when the message "x0x" comes, the client must be closed within 5 minutes. Teh admin can cancel the request by sending message "-xx" as well. The routine that checks for incoming connections and accepts messages uses WHILE TRUE...END WHILE since it must always listen. Once I get a message, I need to fire a timer control or other that fires within 5 minutes. But the program cant leave the WHILE TRUE at all. If i exit it early, the timer fires and the program does get exit. How do I fire the timer or other routine while still the WHILE TRUE routine checks for incomin connections and messages?

View 5 Replies

Reference A Particular Code Routine In .net External To The Current Loop/routine?

Apr 17, 2011

is there any way to reference a particular code routine in VB.net external to the current loop/routine?Example:

If Var01 < 5
[Routine A]
Else
[Routine B]
End If

where Routine A and Routine B are code sequences at the end of the entire program -- such as outside of the current sub or class? The idea would be to reference an otherwise repetitive code.

View 4 Replies

Asp.net - Share A Variable From Sub Routine To Sub Routine?

Mar 3, 2009

I have a sub routine where I pull in information from a database. I want to use variables from this sub routine in another sub routine. I tried making everything public but it doesn't want to be friendly and share.

Dim strEmail as String
Public Sub readDB()
strEmail = "whatever@doohikcy.com"

[Code]....

The readDB would read the database and set the variables and do whatever it needs to do. Then when they submit the form it would e-mail the form to whatever the email address was.

View 2 Replies

Webbrowser Control - Create A Routine That Lists All Elements Values And Then Display Each Element Name And Its Value?

Dec 27, 2009

I wish to read a web page that had various frames and div elements.To start with I would like to create a routine that justs lists all of those elements values and then display each element name and its value so I know what I have and how to reference it later on.I have been using the WebBrowser control and have managed to do a few basic things so far like go to a website and auto login.

View 2 Replies

User Control And Panel - TargetPnl To Display User Control Named Vviewer When Click SearchBtn?

Nov 6, 2009

I have an application going here Form1 has a panel on it named TargetPnl. I need my TargetPnl to display my user control named Vviewer when I click my SearchBtn and also need it to disappear when I click another button.

View 1 Replies

Call A Routine When The User Press CTRL+Z Or Ctrl+somthing?

Jul 28, 2009

how do i call a routine when the user press CTRL+Z or ctrl+somthing?

View 10 Replies

Find And Interact With A User Control On Page From Separate User Control?

Oct 17, 2011

I have an aspx page that has two different user controls. I want to find user control A and be able to set properties, etc., from user control B.

I was thinking I could do something like this:

Dim CMFilters As Control = Me.Parent.FindControl("CMFilters")

...but that doesnt work to be able to set properties and call methods. I somehow need to get the user control and and declare it as that user control type.

View 2 Replies

Run A User Control Sub After Container Has Initialized User Control Properties?

Dec 22, 2010

In a user control I have the code shown below.

I now realize that it is incorrect because the container's InitializeComponent property initializations have not run yet and they must be run prior to Refresh being called.

How (where) can I run Refreash after the container has initialized this user control.[cod]e...

View 1 Replies

VS 2005 Using Combo Box In User Control And Getting Selected Value In Another User Control

Aug 31, 2009

i am using vb.net 2005 to developed desktop application I am having two windows form user control , the first control name con.vb containing the design and code for connecting to database and getting a list of my project values in combo box.

Now the second user control report.vb which i am using to generate some reports , since the code behind is using connection to connect to various project database , so i want to get the value of

First user control into another how i can get the i have tried the below but its giving me error in run time but no error in design or code behind -

MR.MainForm.Connection1.project_combobox.SelectedV alue.ToString

Error i am getting is :

System.NullReferenceException was unhandled
Message="Object reference not set to an instance of an object."
Source="MDR"

View 1 Replies

Why Use User Events Instead Of Just Calling

Nov 21, 2010

I'm using VB10. Can someone explain why you would use user events instead of just calling a sub or function? Isn't user events the same thing a sub's or function's?

View 7 Replies

Calling For User's Attention From Background

Nov 17, 2010

The purpose of my application is to keep track of users waiting to use another application that may only be accessed by one user at a time.My vb.net application adds the persons name to the end of a text file, removes names when a person either gets to the front of the line or exits by closing my app.It regularly checks the list, and when the user gets to the front of the list, it notifies him and loads that other program.My problem is, I don't want the user to have to sit staring at my app until they get to the front of the line.I want the app to cause the computer to emit a regular, slightly annoying beep,even if the user has minimized my app or pulled up Microsoft Word on top of it, and continue to beep repeatedly until the user switches back to my app and presses a key or clicks the mouse.

View 4 Replies

Access User Control Attributes From A User Control?

Mar 27, 2009

I am trying to build a tournament bracket application. In order to build the application efficiently I would like to make a user control "GameControl" that represents a game and give it attributes that represent the names of the competitors "TeamNameA" and "TeamNameB" ,an attribute "Winner" to represent which team should move on, and an attribute "NextRoundGame" that assigns another instance of the user control so that it can assign the "winner" to one of the "TeamName" attributes of the next round in the competition. If the controls were native to VB I feel like I could do it easily (I have only spent about 30 hours self teaching/tutorial following) but I can't seem to find out how to pass values to custom attributes of custom user controls through code.

View 6 Replies

Calling A ComboBox Control?

Dec 9, 2009

I am trying to create a sub routine that I can use to clear all items on various ComboBoxes on a Form; this is the code I was trying to use [To no avail]:

Public Sub Clear_ComboBoxes(ByVal ComboBox_Name as String)
if Controls(ComboBox_Name).Items.Count > Nothing then
Controls(ComboBox_Name).Items.Clear
end if
End Sub

I am writing the code on a seperate module to the Form; which means I can't use ME.Controls; but Form_Name.Controls doesn't seem to work either.

View 18 Replies

VS 2010 - Calling A Control Not Yet Created?

Sep 11, 2010

I have create a small routine to Generate Tabpages on a tabcontrol, and on each tabpage I have Created a label and a combobox, my problem is that since Im generating them in the code and the name of the two controls change based on an index.. ie. Combobox.name = "cmb" + Index I need to be able to retrieve the selected item from this combobox in order to move on to my next routine.. but I do not know how to reference these comboboxs since there is no pre or defined named for them.

View 4 Replies

VS 2008 - Calling Sub When User Press Enter On Textbox (Computer Beeps)

Nov 10, 2011

I may be doing this wrong but I want to call a sub when the user presses enter on a textbox. The sub then shows a window in dialog mode. When I close that window, the computer makes a ding sound. Why is that? Is there a better way for detecting enter being presses on a textbox and not getting that ding?

If e.KeyChar = vbCr Then
LookupItem()
End If

View 3 Replies

ASP.NET - Pass The Value Of The TextBox As The Value Of The Whole Control To Use In The Calling Code?

Apr 9, 2010

I created a DatePicker user control (ASP code below, no code behind) which is simply a textbox, image button, and a sometimes visible calendar.

[Code]...

Can I somehow tie or pass the value of the TextBox as the value of the whole control to use in the calling code? EDIT: My actual goal here is to be able to tie the SelectedDate as a parameter of a database query. I was able to select values for the other parameters in a controls dropdown list in a query parameter configuration window.

View 2 Replies

Timer Control - Calling Function At 8 To 11 Seconds

Apr 15, 2010

I have successfully set up a timer in visual basic, see the code below. My timer uses case statements and at specific case/time it calls a function, 'ShuttleA'. 'ShuttleA' function, is a function that 'getskeystate', which inturn from the user interface tallies a response in a text box. My problem is that the program runs fine when calling the function at eg; at 10 seconds, case 10. But I want to be able to call the function e.g., at 8 seconds to 11 seconds. Or create a tolerance of e.g., 1 second either side of e.g., 10.

PrivateSub Timer1_Tick(ByVal sender As System.Object,ByVal eAs System.EventArgs)Handles Timer1.Tick
Dim secondsAsInteger
seconds += 1
Label1.Text = seconds
SelectCase seconds
[Code] .....

View 1 Replies

VS 2010 Error Calling A Control From Another Thread?

Feb 20, 2012

A thread listens for incoming information from a server will add the received string to a custom control (containing a textbox and a listbox, I've called it console). This requires an invoke so I used the following

Dim InvWriteCons As Console = Gary.ChatCons
Dim INvWriteText As String = "DEFAULT"
Public Sub InvWrite(ByVal cons As Console, ByVal message As String)

[code].....

View 2 Replies

Asp.net - Calling Browse File Window Of Fileupload Control?

Oct 5, 2010

I have an ImageButton and a FileUpload controls in a child page of a master page. I would like to achieve something like when user click on the ImageButton, the browse file window will pop-up like what we did when we click on the Browse button of the FileUpload control.How can call the browse file window of the FileUpload control when i click on the ImageButton?

View 1 Replies

Calling DoEvents From Inside Custom Control Library

Sep 21, 2010

I have a custom control's library. Now there's a control which looks like a panel, and when it opens up I want to animate its vertical growing like this:

For h As Single = 0 To finalHeight Step 0.5
Me.Height = CInt(h)
' HERE I WANT TO CALL DoEvents'
Next
Me.Height = finalHeight

If I don't call DoEvents in the loop then the animation is not shown, I only get the final height without a visual feedback along the way. I can call DoEvents from inside my main WinForm project, but can't inside a library. How can I do that, without drowning into the deep threads waters?

View 6 Replies

Auto-fill A User Input Control With The User's Windows?

Feb 11, 2011

I am creating a form for work where managers can report when they find a customer's personal information laying around on a desk (we work at a call center where agents answer calls for a wireless cell phone provider, so we take personal information security very seriously). Anyway, I am wondering if there is a way to have a text box autofill with that manager's windows username (since they will need to be logged into their own profile to use the form).

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved