VS 2008 Passing Or Calling A Variable To Another Sub?

Jul 9, 2009

Is there a way to call or pass a variable to another sub? I'm trying to reterive a variable (or even a field name) in somethign like this:

Private Sub PrintPageHandler(ByVal sender As Object, ByVal args As Printing.PrintPageEventArgs)
args.Graphics.DrawString(RS("field1"), New Font("arial", 8), Brushes.Black, 5, 5)

[Code].....

View 6 Replies


ADVERTISEMENT

Passing Variable To Calling Form?

Sep 3, 2009

I have a form with a list box. I'm calling it as a dialog. I can get the result of which button was pressed (OK/Cancel) but how do I get the value chosen from the list?

Dim frmCreateCSVFile As New CreateCSVFile
frmCreateCSVFile.dtpFirstEndDate.Value = dtpFirstEndDate.Value
frmCreateCSVFile.dtpLastEndDate.Value = dtpLastEndDate.Value

[code]......

View 1 Replies

VS 2008 - Passing Variable To Sub Dim

Nov 23, 2011

Not sure how to do this sub that passes a variable that is used in a Dim.
fill_in_field("main_form.WebBrowser1")
Sub fill_in_field(ByRef WebBrowser As String)
Dim ElementCollection1 As HtmlElementCollection = WebBrowser.Document.GetElementsByTagName("input")
End Sub
Dim ElementCollection1 As HtmlElementCollection = WebBrowser & "Document.GetElementsByTagName("input")"

This is what I would like.
Dim ElementCollection1 As HtmlElementCollection = main_form.WebBrowser1.Document.GetElementsByTagName("input")

View 2 Replies

VS 2008 Passing Variable From Form1 To Form3 Via Form2?

Jan 10, 2010

IThere's a button on the toolstip that's always enabled for form2 so they are always able to search the database.When a user is on form1 and selects the link button. They are taken to form2 to select criteria to search. On Form3 they choose 1 item in the grid andcan select the Link It button on the form to link the 2 selected grid items (form1 and form3). Since form2 and form3 are available at anytime.my problem is knowing when the Link button on form1 has been chosen and after a successful link to not allow anymore links. Technically, they could pull form2 up via the toolstrip or an existing form2 window and Link as long as Form1 is on the screen but I do not want this. It's as though I need a global variable to set to True/False.

View 1 Replies

Calling A Function Passing Array Content As Parameters?

Oct 27, 2009

I'm program to handle ftp multiple file transfers. What I had in mind was to create an array for each type of file I need to process. There are 8 file types each needs to be transferred to a unique host.

' Each array contains in order: FILENAME|SOURCE PATH|DESTINATION PATH|HOST|USERNAME|PASSWORD
Dim arrA() As String = {"*a*.dat", "/destpath1/", "host1", "id", "pass"}

[Code].....

View 10 Replies

Passing The Value Of A Variable

Dec 14, 2011

I am using a function that is provided by the maker of an IO device that I'm using and the call for this device turns on and off the 16 ports on the IO device by sending the value true or false to the board. The call is as follows:

[Code]...

View 12 Replies

Passing Variable From ASP.NET To ASP?

Oct 13, 2009

here's the snippet of my code that im trying to solve since last week...

icePayment.aspx If (Left(Request.Form("return_url"), 7) <> "http://") Then
errorInput = errorInput & "Invalid return URL path! <BR>" errorExist = True
Response.Redirect("InvalidUrlError.aspx")
Else

[Code]...

View 2 Replies

Calling A Button With A Variable?

Aug 15, 2011

I'm trying to call make visible an object, i can do this:

Button1.Visible = True

but, i was wondering if there is a way that i can call it like this. Lets say i have a variable 'OBJNAME' wich value is "Button1". What i want to do is to make visible the button like this:

OBJNAME.Visible = True

I want to do this because i have like 100 objects to show in the form and i dont want to code for every one of them.

View 3 Replies

Calling Form-name By Variable?

Jun 25, 2010

i am currently trying to re-write an old VB6 program into .net basically the program contains 100's of forms for different jobs each with a Public Sub runjob(). the form names are then stored on a database. the user then selects the job from the listbox and it calls the correct job.the code i use to use in vb6 was

sValue = database.rsselectjobrun.Fields("callname")
Set frmName = Forms.Add(sValue)
frmName.runjob

Set frmName = Nothing i have looked into it and found this code which calls the form in .net

Dim objForm As Form
Dim sValue As String
Dim FullTypeName As String

[code]....

but i cannot get this to run anything other then the formload code. i know i can put all of this into a select case module but id rather not with the amount of forms i would have.

View 4 Replies

Javascript - Passing Variable From JS

Aug 18, 2011

I have a variable that gets a value in a js function. I need to get its value as a double into a vb.net variable. I have tried putting the variable into a label then grabbing it from the label in vb.net as shown in the code below:

[Code]...

View 3 Replies

Passing A Value Of Text Box To A Variable

Feb 18, 2010

Dim SecondName As String = SecondNameTxtBox.text()Is the above statement a correct one?Here I want to assign the value of the text box into tat "SecondName".If it's wrong, please tell me the correct way to write this statement.

View 1 Replies

Passing Value From Database To A Variable?

Nov 15, 2011

how to pass value from database to a variable.

This is my query:
Dim it As String = "Mouse"
Dim itNo As String
SELECT * FROM tblITEquipmentName WHERE equipmentName LIKE '" & it & "%'"

I would like to get the ItEquipmentNo and pass it to variable itNo

View 7 Replies

Passing Variable Between 2 Forms?

Jun 15, 2010

i have 2 forms -> form 1 and form 2

in form 1 -> 1 button
in form 2 -> 1 textbox and 1 button

when I click button in form 1, it will show the form 2..how can i pass the variable (data from textbox in form 2) into a variable in form 1 after clicking the button in form 2 ?

View 8 Replies

Passing Variable Between Button?

May 22, 2012

this is the linkbutton

<asp:LinkButton runat="server" ID="linkId" OnClick="doSomething(10)">ID
</asp:LinkButton>
and this is my sub

[code].....

View 2 Replies

Passing Whole Form As Variable

Jan 15, 2010

I know in VBA you could pass an entire form as a varible. Since using global variables are not advised in .net 2008, is there anyway to do this ?

View 9 Replies

Calling A Value From A Grid To A Variable In Another Form

Oct 8, 2009

I have datagrid in which the 0th column has ID. What i want is while clicking on the datagrid the id of the particular row has to be load in the variable in the second form. For this i have created a public variable in the second form [code]but here its not returning any value to EditID while loading the second form.

View 1 Replies

Change Variable Value When Passing As Argument

May 18, 2012

is there a way i can do like this in vb.net

[Code]...

what i want is that idx keeps incrementing after each line, without incrementing it on a seperate line.

View 1 Replies

Pass A Variable's Name Along With The Value When Passing Through Functions?

Jul 6, 2009

I want to know if it's possible to retrieve the variables name from when it was passed into a certain function. For example, if I call parseId(myId) to a function with the signature parseId(id), i can obviously retrieve the value of 'id'. However, is there any way I can retrieve 'myId' as a string (without passing it as another value)? Specifically in vb.net, but I'm interested in how it would work in any given language.

View 3 Replies

Passing A Declared Variable To A Sql Query

Nov 15, 2010

I have a public variable that I declared in form1 of an application. I am trying to call that variable in form2 and then pass that variable in a sql query. If I declare:

Public Class Form1
Public payPeriodStartDate, payPeriodEndDate As Date

How then to I declare that variable in form2 and how to I pass it to my sql query.

Here is the code I have for form1: [Code]

and when I debug this form, no data will appear. I'm sure that it's something wrong with how I'm either calling the variable in form2 or in the query. Can anyone offer any assistance on this?

View 9 Replies

Passing A Variable To A Dynamic Dropdownlist

Apr 26, 2011

I have 2 dropdownlists, one is State and the second is City. I am trying to create it so, when a user clicks the State, the second dropdownlist is populated with City names from a datatable.[code]

View 3 Replies

Passing A Variable To A Sub Procedure By Reference?

Oct 20, 2009

passing a variable to a sub procedure by reference. Not sure I understand how it works. Here is the code.

Private Sub bntcompute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bntcompute.Click
Dim x, y As Double
getnumbers(x, y)
displaysum(x, y)

[code]....

Is the newly modified variable actually being Passed back? and If so where in the statement is it passed back. is it being passed back to the call getnumbers or is it passed back to the statement displaysum?

View 6 Replies

Passing A Variable To An Action In JQuery?

Nov 29, 2011

I'm using MVC2 with jquery.I'm trying to open a partial view in a jquery Dialog container, passing an itemID of an object to be deleted.What I'm doing to accomplish this is passing in an action that renders a view to jquery, which I can get to work without variables.f I try to pass in the ID of the object to be deleted, the action doesn't even trigger.

Here's my jquery code:
$(function () {
var itemToDelete

[code].....

View 1 Replies

Passing Data (variable) To New Form

Feb 18, 2010

Doing a small project where I would like to be able to print the results of certain calculations. I want to open a new form where the data can be neatly presented and printed. I just can't seem to make the data get passed along to the new form when I open it..

[Code]...

View 2 Replies

Passing Variable From Table To Query?

Oct 5, 2010

Do you just need to format the date? Such as msgbox(New Date(2010, 1, 1).ToString("yyyy-MM"))

Or do you need a hashtable:

[Code]...

View 1 Replies

Passing Variable From Useform To Module

Jul 15, 2010

I have a useform set up to have a user input value, and I would like to pass that value to a module. I have made the variable public along with the subroutine that I am trying to use the variable in. I have a message box display the value of the variable in the subroutine and the value is 0, even though I have inputted a value in the userform.

[YearForm]
Option Explicit
Public Sub UserForm_Click()
Me.intYear.Integer = Year
Module1.OpenFile Year
[Code] .....

View 5 Replies

Passing Variable While The Forms Are Open?

May 22, 2011

I'm trying to pass value from form1 to form2, while both form is open.

Using New (Dim frm as new form2) only works when the form2 is not loaded yet. what if both forms already open?

PS: I don't want to use module since there will be a lot variable to pass and i don't want to maintain such large collection of variable in module.

View 4 Replies

Passing Variable With DBNull Via INSERT INTO

Jun 22, 2010

I use VB .NET 2002 (academic version) I have created an MS Access database to be populated with vaules extracted from dBase files. Some numerical values can be null - ie where no data was recorded in the dBase file. Relevant field properties in MS Access mdb table are set to "Not Required" as follows - dt0 is the name in code of the Access table "AllData":

With dt0.Columns
.Append("Date", DataTypeEnum.adDate)

colTest.Name = "Ch1Deg"

[CODE]...

Using an INSERT INTO command I can send a null value to the field:

SQLMdb = "INSERT INTO [AllData]" " ([Date],[Ch1Deg])" & _
" VALUES ('" & dDate1 & "',null)

My problem is how to pass a variable which sometimes takes the value System.DBNull.

If I use SQLMdb = "INSERT INTO [AllData]" " ([Date],[Ch1Deg])" & _
" VALUES ('" & dDate1 & "','" & dDeg & "')

Then when dDeg is numeric then there is no problem and the table is populated. When data is missing and dDeg takes the value System.DBNull then it's a no go! The error message is "Data type mismatch in criteria expression."

Is there a way round this with VB .NET 2002 or do I need to upgrade to a later version which has nullable data types, eg nullable integers and doubles etc?

View 3 Replies

Calling A Method Over Variable Of Type Object In Vb And C#

Jul 5, 2009

in vb I can do that

sub SetFocusControl(byref ctl as object)
ctl.Focus
end sub

in c# the compiler complaint that object doesn't have a Focus method

void SetFocusControl(ref object ctl)
{
ctl.Focus();
}

how can I do the same in c#?

View 3 Replies

Calling A Session Variable In A Class Object In Asp.net?

Aug 29, 2011

How can I access the values stored in a session object with a class in asp.net?

View 3 Replies

Adding Time Error When Passing Value To Variable?

May 24, 2012

dim pvalue as datetime pvalue = (Date.Now.AddHours(3), Date.Now.AddMinutes(2))

above code getting error of ')' expected

No Error MessageBox.show(Date.Now.AddHours(3), Date.Now.AddMinutes(2))

View 4 Replies







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