VS 2008 Passing Data Through A Function?

May 3, 2009

what i am doing is passing data through to a function, the function does a basic check if the file passed through exists then say so in the listview

function:

Function checkIfCredentialsExist(ByVal Check As String)
Try
If File.Exists("credentials/" & Check) Then

[code]....

View 3 Replies


ADVERTISEMENT

VS 2008 Passing Controls To A Function

May 4, 2009

I'm making the transition from VB6 (at which I was quite proficient) to VS2008, and I'm running in to a few 'snafoos' as I go. The most recent one (which I haven't yet been able to work out) is I'm trying to figure out how to pass a control (specifically a 'picture box' if that matters) to a function in a seperate class. This was pretty straight forward in VB6, but for the life of me, I can't seem to figure out how to declare the subroutine.

[Code]...

View 11 Replies

VS 2008 - Passing Class As Argument For Function

Mar 23, 2010

VB.NET is not letting me dance with both feet, or piss with both hands. I've got one foot and one arm tied behind my back at every turn. I want to use this statement in a function:
Return CType(Formatter.Deserialize(FS), DS)
Seems doable, right?

Function ReadFileStream(ByRef FS As FileStream, ByRef DS As Object)
Dim Formatter As New BinaryFormatter
FS.Position = 0
Return CType(Formatter.Deserialize(FS), DS)
End Function

Right? I mean, CType only accepts a class name as the second argument. I can't give it an instance of a class, or it croaks. Yet if I try to pass the class name as the argument to that function:
DataInfo = ReadFileStream(FileStream1, DataStruct)

VB.NET croaks on this, too, complaining that "'DataStruct' is a type and cannot be used as an expression.". It's used as an expression by CType just fine outside of the function. Does the VB.NET legislature provide a clause that allows for a 'Type' to be passed as an argument in a function? Writing all the supporting code ten million times to deserialize a file using CType ten million times in a large application will get very complicated and tricky very quickly. It should be handled by a routine so that any cases and adjustments that come up can be dealt with in one spot.

View 8 Replies

VS 2008 Passing Form As Paramater To Function?

Sep 24, 2010

I have a function that requires a form passed to it. Currently im using:ByVal oThisFormA As FormIf I do this though, obviously where I require txtboxes etc from the form being passed in arent recognised. e.g txtSurname is a textbox on a form called frmCustomer I have, but unless I use byVal oThisFormA as frmCustomerI will just get an error txtSurname is not a member of System.Windows.Forms.Form

View 12 Replies

2008 DLL Passing Data Among Different Exe's?

Oct 15, 2010

I have written a class library that creates a dll to pass data back and forth within the same compiled instance exe. Is it possble to configure this Class Library in order to pass the data produced in the first instance of an .exe to other instances exe programs written in VB.NET?

My first thought was to add a Module. Older versions used Declare Files. Is there something in the compiler that I should set where the variables point to a specific memory address, or something..., that makes the variable available to other VB programs running in a seperate instance?

[Code]...

View 2 Replies

Passing Data Between Form In VB 2008?

Dec 7, 2009

i have two form in vb form1,form2form1 contains button1,textbox1form2 contains utton2,textbox2form1 button1 contains code to show form2 myfrm2 As New Form2myfrm2.ShowDialog()

View 1 Replies

Passing Data Between Forms Vb 2008?

Oct 20, 2010

I need to pass a double from form1 to form2 and have form2 return this value back. My problem is while i can receive the proper value in form2 i can not seem to get the corrected value back in form1 (using byRef in form1). Here is the code snip

Dim AmountPaid As Double = 8
Dim newInvoiceRow As InvoiceDataSet.InvoiceRow
If (MakeAPayment.ShowDialog(AmountPaid) = Windows.Forms.DialogResult.OK) Then

View 4 Replies

VS 2008 : Passing Data From DGV To Another Form?

Jul 8, 2010

I have returned to a project I started a while ago. I have a small members database showing basic info (Title, Forename and Surname) in a data grid view with all data populated from a SQL database. I have the dataset populated with all this info as well as other data through the use of relationships/foreign keys (Addresses and Telephone Numbers, etc)I have tested the relationships using a simple form which shows the correct addresses, telephones, etc for each user as you navigate through it.

I now wish to show just the datagridview on form 1 which is read only with the row select set to full row (I have done all this so far). I have also set up a second form which displayes just the relationship data.I want to be able to load the second form (with the address and telephone number data, etc) when the row is double clicked by the user. ie - if row 15 is double clicked on, then the second form should load the address and telephone number data for record 15.

View 3 Replies

VS 2008 Passing Data Between Forms?

Jul 8, 2010

Form1 is a Datagridview which is non editable. I want a user to be able to double click and open Form2, which will allow editing BUTForm2 is a list view and also had a binding navigator so I guess I cannot use dialogue? I do not want to simply just edit in a dialogue and save.Is there an easy way to get the record from Form1 and pass it to the controls in Form2 so that the correct record is displayed?

View 5 Replies

[2008] Passing Data Between 2 Forms?

Jun 18, 2009

I am trying to pass data between forms on a double click operation. On Form1, I have a simple database with three fields (ProfileID(PK), Profile First, Profile Surname). The database has 10 records at present which displays all records in a datagrid view which is set to read only. I have the Selection Mode set to FullRowSelect to highlight the full row.Form2, is a form to Display one record at a time. This form allows editing and saving of changes.How would I go about coding in vb.net to firstly get the ProfileID from the relevant row and send this into Form2 to display that record for editing?

View 10 Replies

VS 2008 - Passing A Object Data To A Class?

Oct 5, 2010

I've got a main form (Form1.vb) where I created some controls (with the Designer).I've created a class myTextBox, inheriting from TextBox, in myTextBox.vb.In the main form, I call procedures from myTextBox. The issue is, those procedures use values from the Form controls. So the class doesn't recognise them as initialised.What's the best solution for this?I think I could pass the object itself as a parameter but doing it on each call seems a bitredundant and it thickens the code.Is there any way to access the Form1 controls and objects directly from the myTextBox.vb class?

View 6 Replies

VS 2008 - Sending Data / Passing Value Between Forms

Dec 15, 2009

Imagine a project with couple of forms and a module. Now as per my knowledge if i want to send some data from one form to another then :

- If I declare variable friend/public in a module then it can be accessed in the entire project (thus also between forms).
- If I just have to send data from one form to another, then I can call the other form's sub/function and pass value.
- If the pass value by reference then I can get new value only if its changed in that function.

Now what the issue is, I need to pass a variable to a form and in that form when user types contents in a textbox or makes other selection and presses OK button then it should return some values back to the calling form. Now how can I achieve this (without declaring global variables which will be accessible everywhere) ?

View 14 Replies

Sending/Passing Data To UserControl Textbox VB 2008?

Oct 2, 2009

I have a form that loads a UserControl which has a tabpage. Each tab has textboxes that I need to update when I create the tab page. I actually had this working but lost a major version of the code and can not remember how I did it. I want to send data to usercontrol this way from the form Do While

count <= intGrpSize With TabCtrlClient() .TabPages.Add(New TabPageEx) UC.SetSessionDate(tbSessionDate.Text) uc.SetCouncelor(CInt(cbProviderID.Text))

[code]....

View 2 Replies

VS 2008 - Passing Data From WPF Parent To Child Form

Jan 27, 2010

In my WPF Form1 I have TextBlock1 that fill from AddressTableAdapter. To edit address user must click EditButton to open Form2 to perform changes. My problem is passing data to Form2 from Form1. In Form2 I have 3 TextBoxes Street, City, Zip, and StateComboBox. I try to code in Loaded procedure of Form2 like this and got error message:

Private Sub Form2Detail_Loaded(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles Me.Loaded
Me.AddressTableAdapter.Fill(Me.AbcDataSet.Address)
Me.StreetTextBox = IIf(IsDBNull(AbcDataSet.Address.StreetColumn), "", AbcDataSet.Address.StreetColumn))
Me.StateComboBox = IIf(IsDBNull(AbcDataSet.Address.StateColumn), 0, AbcDataSet.Address.StateColumn))
End Sub

View 1 Replies

Passing A Value To A Function?

Mar 22, 2011

I have a question concerning some homework. Here is my answer:

Dim intResult As Integer
intResult= Square(4)
lblResult.Text = CStr(intResult)

Now, if I understand functions correctly, this statement should pass the value 4 to:

Function Square( ByVal intValue As Integer ) As Integer
Return intValue^2
End Function

...and assign it's return value to "intResult".

View 6 Replies

Passing A Value Of A Function Into A Text Box?

Feb 21, 2010

Private Function Token() As String

Dim Length As Byte
Length = 10
Dim Chars As Char() = New Char() {"a"c, "b"c, "c"c, "d"c, "e"c, "f"c, _

[code]....

is the above bolded line a correct .. it s not working too and the above code is used to generate a random password for users which should be displayed on the text box?

View 3 Replies

Passing Arguments To A Function?

Aug 3, 2011

I am having a problem figuring this out. The text that is bold is where the problem is.

Imports Microsoft.Win32
Console.WriteLine(WMILookup("Win32_Bios","SerialNu mber"))
Private Function WMILookup(ByVal WMIClass as String,ByVal WMIItem as String) As String

[Code].....

View 2 Replies

Passing Double Value To Function

Sep 8, 2010

I have a .aspx webform, with code behind to handle data entered by user, most fields are in double.At business layer, at other class, let say there is a function: [code]I just wondering whether this is the correct way of writing it? And if I have more than 20 fields of double value, then I should declare additional 20 double value?

View 2 Replies

Passing Textbox Value To Function

May 27, 2010

I have a function that search database based on the 2 textbox value. I have a difficulty to call the function and pass the text box value to the function. This is my function: So I get this error:
{"Object reference not set to an instance of an object."}

Function getname(ByVal SearchedName As String, ByVal SearchedFirstName As String) As String
Dim temp As New System.Data.SqlClient.SqlCommand
Dim temp2 = ""
Dim sSQL = " select SearchedName, SearchedFirstName from student where SearchedName =@SearchedName AND SearchedFirstName = @SearchedFirstName"
[Code] .....

View 6 Replies

Passing Xmlnode To Function

Jan 31, 2012

I have function in my asp.net/vb application with following signature:Public Function ExtractText(node As XmlNode) As String..I want to call it/pass xmlnode. How to create an Xml node with value:<mynode Id="7743" Type="context" StartNode="4356" EndNode="1234"></mynode>

View 1 Replies

Call A C++ Function From Net Passing A 2D Array?

Jun 23, 2011

I am trying to call the method with the following declaration[code]...

The structs should both be twodimensional arrays with indexes of 4,4 and 5,4 respectively. The second one is an out parameter.

View 1 Replies

Call VBA Function With Parameter Passing

Dec 29, 2008

I wrote vba function in excel and I want to call this function in vb.net with parameter passing.

View 2 Replies

Passing A Class Reference To Another Function?

Jul 19, 2011

Let's says I have a class called Customer :-

Code:
Dim Cust as New Customer("Fred")

I also have a function in a seperate class :-

Code:
Shared Function Example(Example As Customer)

How do I refer to the class itself from within itself? For example :-

Code:
' from within the Customer class, call the Example function
AnotherClass.Example(Me??)

View 11 Replies

Passing A Constant Array To A Function?

Jul 23, 2009

pass an array to a function, like the code below shows

Private Sub SomeFunction(ByVal PassedArray() As String)
For i As Integer = 0 To PassedArray.Count - 1
Debug.WriteLine(PassedArray(i))

[code]....

But is there a way to pass a constant array to a function in VB .Net, for instance in PHP you could write

function SomeFunction($array)
{
for($i=0;$i<count($array);$i++)
{

[code]....

So to reiterate: Is there any way to pass a constant array directly to a function in VB .Net? Is there any benefit in doing so? I imagine a few bytes of memory could be spared.

PS.SomeFunction({"some", "array", "member"}) ' this obviously gives a syntax error

View 3 Replies

Passing A List's Enumerator To A Function

Dec 2, 2011

It looks like passing a list's enumerator to a function "byval" is quite different than passing it "byref". Essentially, regular "byval" passing will NOT change the caller's "enumerator.Current value", even if the function advances the enumerator. I was wondering if anyone knows why this is the case? Is an enumerator a primitive like an integer, without an object reference, and hence changes to it don't get reflected in the caller?This function is byval, and gets stuck in an infinite loop, spitting out "1" message boxes, because the enumerator's "current" never advances past 5.[code]The difference between the two functions is only whether the listFirstItem__ function accepts a byval or a byref enumerator.

View 2 Replies

Passing A Multidimensional Array Into A Function?

Apr 30, 2009

I am trying to use a simple quicksort routine for a multidimensional array but cannot figure out the syntax. I am stumped because it works fine in VB6 but no luck in .Net

Array Declaration:
Dim sArrIn(25000, 3) As String 'sort key (pkg, kitting, zip), kitting, data
Function Call:

[Code]....

View 4 Replies

Passing A Two-dimensional Array To A Function?

Jan 6, 2011

I am missing something obvious here

I have an array that is declared as

Dim
array1(,)
As

[Code]....

View 4 Replies

Passing A Value Of Text Box In Javascript Function?

Feb 18, 2010

MotherTongueTxtBox.Attributes.Add("onblur","val_Length(MotherTongueTxtBox.text,"hi friends",Length);")

in the above statement val_length s a javascript function in tat function the first parameter shd b the contents of the text box ,the second parameter s a string type, is the statement correct i think it s wrong can u suggest a correct valid statement

View 1 Replies

Passing An SQL Function When Using DataGridView And CommandBuilder?

Nov 16, 2011

Trying to generate a Datagridview based on a query which is working fine.

Basic method is:

Create DbAdapter (MySQL) Create DataSet Fill Dataset with DbAdapter.Fill Set Datasource of DG to Dataset
Works fine, have used a commandbuilder to handle updating, inserting and deleting. Where this doesn't work is if I pass a MySQL function in my query, e.g.

SELECT FROM testtable TestID, SomeFunctionForward(someproperty), anothersfield

A quick check shows the field omitted from Update and Insert. How do I go about 'setting this property' so it will work on the query with the CommandBuilder. It needs to be done in inverse, i.e.

INSERT INTO testtable TestID, someproperty, anothersfield VALUES SomeFunctionBackward("somepropertyvalue"), "anothersfieldvalue"

View 16 Replies

Passing Combobox.selecteditem To Function?

Jul 4, 2009

i have a very simple problem but i can't figure how to fix it.I'll explain, i have 3 array named "Auto, Legumes, Films". I i making a function so whenever the selecteditem of the combobox change(Auto, Legumes or Films) the name of the selecteditem is passed to a function. The function use this name to display the items of the corresponding table in a listbox.The 3 different item name in the combobox match the name of the 3 tables, so i want to be able to re-use the name dynamically in my function.

Code where i call the function:
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cbchoix.SelectedIndexChanged

[code].....

View 1 Replies







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