Pass Values To A Parameter In A Rdcl File?

Nov 15, 2011

I have a RDCL Report called Report1.RDCL.In this report I put an image box named logo the select image Source is set to EXTERNAL and in the use this image I have Parameters!LogoPath.Value.

View 2 Replies


ADVERTISEMENT

VS 2010 Passing Values To A Parameter In A Rdcl File?

Nov 14, 2011

In this report I put an image box named logo the select image Source is set to EXTERNAL and in the use this image I have Parameters!LogoPath.Value.I would like the users to be able to pick their own logo.

View 1 Replies

How To Pass Parameter To EXE File

Oct 7, 2010

I am currently still learning to use VB.Net feature. Currently I am trying to execute a .exe file where there will be passing parameters to run the script. E.g. this how it works on the command prompt line:
C:Documents and Settingsproject1>textfile.exe file1.txt file2.txt file3.txt file4.txt
Above line will be able to run the textfile.exe script.

I am using VB .Net to create a User Interface where user will be able to use the 'OPEN CLICK' button to choose the files (which will display on a textbox) and click on a 'START' button to run the program. I managed to find a code - process.start() feature, however it cant seem to work..

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim MyProg As String
Dim executable As String
executable = "C:Documents and Settingsproject1 extfile.exe"
MyProg = TextBox1.Text
Process.Start(x, MyProg)

View 4 Replies

Pass Values From Combo Box To A Batch File?

Jun 19, 2009

How do i pass the combo box value to some batch file.The UI will have following parameters:Month (for which user wants to generate the report) Full name of the month e.g. January, February etc. Year (for which user wants to generate the report) YYYY e.g. 2009 We will use the following approach:User will select the month and year as per requisition. From dotNet call a batch file, and pass the selected parameters to the batch file

View 1 Replies

Sql - Configuration File For .net (Unable To Pass In Correct Values)

Aug 30, 2011

An exert from my config file looks liek this.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>

[Code].....

EDIT: I am able to pass in the string perfectly when using Visual Studio 2005. But when using VS 2003 and a loiwer .net framework it will not let me, unless I hard code it in.

Could something be enabled/disabled on one of these instances of VS? Or could this just be an error with the older versions of .net? I think I am using 1.1??(will have to check) in 2003.

View 2 Replies

A Procedure With A Single Parameter But The Input Values For That Parameter Are More Than One?

Oct 26, 2011

Is it possible to make a procedure have a single parameter but the values for that parameter are more than one? I have this procedure:

Public Sub autoComplete(ByVal cboCombo As ComboBox)
With cboCombo
.AutoCompleteMode = AutoCompleteMode.Append[code]....

Now I was wondering if there is a way to use it like this:

autoComplete(myCombobox1, myCombobox2, myCombobox3)

Or can I use a procedure like this with 'With...End With'?

View 1 Replies

Setting Parameter Values To Equal DataColumn Values?

Apr 23, 2011

I'm trying to assign some parameters for a stored procedure with some values that are stored in a data table. in the code, I can set the parameter values to the data table, and give a column header or index without issue, but when it tries to execute at runtime it bombs out.the error I get is a variation on "Failed to Convert Parameter Value from a DataColumn to a String" depending on exactly how I try to assign the value.the data types are all correct elsewhere in the code.

my code for this bit is

Try
ConnectionAttempt.Open()
Try
With NewYearCommand_Dates

[code]....

other things I've tried to get this to work are all variations on the .Value=dates bit, such as

.Value=dates(0) (so using column index)
.Value=dates.columns(0) (again using column index)

I've also tried declaring variables, and setting their values to the values in the columns, but the code returns an error saying that "Value of type 'System.Data.DataColumn' cannot be converted to string".I should point out that i'm doing this for 3 tables at once in this sub, 2 of them will only have a single row of data, but the third has an indeterminate number of rows.I'm afraid I don't know what else to do. I'm lead to believe by my mate and my lecturer that this should work, and of course it will work, but the evidence says otherwise.

View 1 Replies

How To Pass Parameter For Function

Dec 9, 2009

I have a statement:
dat.XoaNhanVien(Me.dtgcapnhatthongtin.CurrentRow.Cells(1).Value, message)
That is a function for deleting info. Now I want to create other function and get above function to parameter. I mean:
Public Function func(Byval func as " What type can be ?")

View 13 Replies

Object Must Pass Itself As A Parameter?

Sep 10, 2011

I have various shape objects, and I want each unique shape to implement a saveToDB method that simply calls a DB object that implements a Save method with an object as its input paramter. This DB.Save method will be a long case function that implements the proper SQL commands based on the type of attributes possessed by the input parameter object.how do I implement the SaveToDB method in my Shape class? Is it something like this:

Function Shape.SaveToDB
DB.Save(Me)
End Function

The goal here is to let each shape save itself without it knowing anything about database operations; I want to isolate db-specific information in my intermediary DB object, so the DB object will have to figure out what type of object wants to be saved into the SQL database and then execute whatever SQL instructions are needed. And then if I override the SaveToDB method in each shape subclass, I can avoid the case statement entirely, replacing it with a series of unique methods such as db.SaveCircle (ob), db.SaveSquare (ob), etc., sincle the caller already knows what it is.

View 4 Replies

Pass A DataRow As A Parameter To A Sub?

Apr 22, 2010

Is it possible to pass a DataRow as a parameter to a sub?The following example will (hopefully) make clear what I want to do.

Code:
myDataAdapter.Fill(myDataSet)
For Each myDataRow In myDataSet.Tables.Item(0).Rows
MySub(myDataRow)
Next

And the sub:

Code:
Private Sub MySub(ByVal drData As DataRow)
End Sub

I get an error at design time: Error 2 Expression does not produce a value.

View 3 Replies

Pass A Field As A Parameter

Jan 27, 2010

I have the following function:[code]I need to know if it's possible for a function to take a parameter as a type of field?

View 3 Replies

Pass A Parameter To A Query?

Feb 26, 2009

I am trying to load a combo box based on a selection of data from another combo box. I am not sure how I would pass the value to the object. My thought is I am loading all the table data onto my object and then I would run the query on the object. However I am at loss as to how I would go about doing that.

Private Sub cboOrder_SelectedIndexChanged(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles cboOrder.SelectedIndexChanged
Dim selecteditem As String

[Code]....

View 4 Replies

Pass An ID Parameter Using A Button?

Feb 10, 2009

how to use a button to pass a SQL parameter "ContactID" to the next page to allow the SQL to execute the Select Query. From what I've found here is what the code behind for the button looks like.

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim ContactID As String
ContactID = Request.QueryString("id")

[code]....

Here is the error I'm getting back. What have I done wrong?Compiler Error Message: BC30506: Handles clause requires a WithEvents variable defined in the containing type or one of its base types.

View 2 Replies

Pass Event As A Parameter?

Nov 9, 2010

The reason why I need to do this is because I have a sequence of two lines of code that is littered all over my program, where I dynamically remove the handler to an event, then set the handler again. I'm doing this for several different events and event handlers, so I've decided to write a function that does this. [code]...

View 3 Replies

Sql - Pass Parameter As Date In .net Web?

Apr 18, 2010

I have a mail webform where I have to show the user only (-1) one day behind messages, so how do pass (yesterday)date as parameter and retrieve the only records of one day back ?This query is for 'ALL' messages, but I need to filter (yesterday) one day back messages and add a hyperlink or add in a dropdown ?

select MSG_SRNO,MSG_SUBJECT,MSG_ID,MSG_CHKD,
DOF_SENT,DOF_SEEN from MESSAGES_MAILBOX where USER=1234

View 2 Replies

Asp.net - Pass Two Parameter To Event Handler

Jun 13, 2011

i struggling to pass two parameter to an event handler basically when the page is load it dynamically create some control lable, textfield, and linkbutton when i click on the link button it fire an event handler, here is my problem i want to pass first the Product ID and quantity, the product id is fetch from the database passit thorugh an object where as the quantity it enter by the user first part of the code it connect to database loop through and display all record on the page dynamcally

[Code]....

View 2 Replies

Asp.net - Pass URL Parameter To Repopulate Page?

Apr 11, 2012

I currently have a page that is populated using a filter, which passes the parameters of the filter via URL.

I'd like to catch those parameters and give the user the opportunity to return to the page with the same filter applied to their view. Essentially, it's a back button. AKA: pass the parameters back into the URL so it repopulates the page.

View 1 Replies

How To Pass Integer As Unsigned Parameter In .Net

Jul 16, 2010

I'm new to VB.Net. I'm using a library call setInstance(ByVal instance As UInteger) in my VB.Net code. The parameter I need to pass is an Integer. Is there anything I need to do to convert the integer parameter to an unsigned integer? The number is garunteed to be positive and less than 10.

View 3 Replies

Pass A Form As A Parameter In A Function/Sub?

Mar 23, 2010

Can I pass a form as a parameter in a sub like public Sub GetData(Byval Frm as form) and access its controls?I have few forms (you can say: FrmAccounting, FrmEngineering, FrmIT) with almost the same controls in each of them (txtEmployeeID, txtEmployeeName, optMale, optFemale etc), where no two forms are open at same time, and each of those forms have a Button which opens a new Form (you can say FrmCollectData) now I want to fetch data in FrmCollectData depending on which form it was opened from.. like if user was on FrmEngineering and it clicks button to open FrmCollectData.. form collectData fetches data from FrmEngineering Controls and if user was on FrmAccounting and it opens FrmCollectData, form Collectdata fetches data from FrmAccounting..

earlier, in VB6.. In one of the Sub written in frmCollectData I checked which form is opened by setting flags in each of forms (frmEngineering, frmAccounting etc) and then I passed the same form in a sub which writes data in frmCollectData controls.. but am not able to do the same in VB.NET.

View 5 Replies

Pass A Parameter Vs Using Shared Member?

Jun 30, 2011

Just asking for personal preferences, pros,cons on the following situation. I have a class(classA) that has some shared members in it. I have a procedure in a form that needs to execute a function in a separate class(classB). This function requires some of the shared member values from classA. I can either pass these values as parameters from the form to classB, or in classB I can just access them directly by referencing classA. As a general rule I've tended to try to use parameters to pass all the information a function needs but it starts to seem a little unwieldly when passing several parameters to multiple procedures.

View 9 Replies

Pass Array To Function As Parameter?

Dec 7, 2010

I would like to pass array to function as parameter. Here is an example for variable that is not array:

[Code]...

View 5 Replies

Pass Control As A Parameter To A Function?

May 27, 2009

i am designing an application in which contents of an excel file are displayed in the ListBox. i have created a class which contains methods for doing this. Statement used for function call is:

oSheet = obj.displayColumns(oWB,
Me.lbColumnNames)

[Code].....

line where i am getting error is underlined. Is it possible to send controls as a parameter ?

View 5 Replies

Pass Crystal Report Name As Parameter?

Dec 3, 2010

I am using a function which is calling a crystal report as [code]...

View 1 Replies

Pass MethodName As Parameter Of A Procedure?

Jan 2, 2012

I want to create a Procedure that its parameter is also a procedure. I created some procedures to be used as parameters below:

Private Sub Jump(xStr as string)
Msgbox xStr & " is jumping."
End Sub

[code]....

this procedure should call the procedure above:

Private Sub ExecuteProcedure(?, StringParameter) '- i do not know what to put in there
? ' - name of the procedure with parameter
End Sub

usage:

ExecuteProcedure(Jump, "StringName")
ExecuteProcedure(Run, "StringName")

View 1 Replies

Pass Parameter To Read It On New Form

Mar 2, 2012

From a button located to a new form i am trying to open another form using
Manage_groups.ShowDialog()
That works fine, but now I need to pass a parameter in order to read it on the new form but
Manage_groups.ShowDialog(thisbutton.Text) it's giving me error
Unable to cast object of type 'System.String' to type 'System.Windows.Forms.IWin32Window'.

View 3 Replies

Pass Parameter To Stored Procedure Through .net?

Jun 22, 2010

this is my coding when i run this coding for display the content in textboxes from the database by click event in datagrid. "Procedure or Function 'sp_developer_display' expects parameter '@developerid', which was not supplied."this error will display my sp in sql express is ALTER PROCEDURE dbo.sp_developer_display(

[Code]...

View 2 Replies

Pass Text Parameter To ProgressChanged?

Jul 31, 2011

I need to write a long-running process with a While/End While loop.

To avoid freezing the UI, I added a BackgroundWorker object on the form.

Next, I needed to update the UI, but found that the thread cannot do this. Instead, the thread must call ReportProgress() to trigger the ProgressChanged() event.

However, I need to pass the text from the exception (ex.Message) to the event, but didn't find an example on how to do this. I need that text message to update the form's title bar.

Here's the code:

Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
While (True)

[Code]....

View 1 Replies

Pass Variable As First Parameter To A NameValueCollection?

Jun 26, 2011

When adding to a NameValueCollection you normally would do this:

nvc.Add("SOME LITERAL STRING", "MY VALUE")

but if you dont know the first parameter until you read it in from a file then you would want this:

nvc.Add(myVar, "MY VALUE")

this does not work! The NameValueCollection parameters SAY they want a string, but they really don't, they want a "Literal" sting.

So, the question is: How do I pass a variable string to the first parameter?

View 3 Replies

VS 2010 Pass A Parameter To A Form

May 13, 2011

When the user clicks on a control on my form I want to open or show another form and display some properties of the control that was clicked. I want to use the same form to display the properties of several controls, based on which one was clicked. I am not sure how to approach this, can someone point me in the right direction?

View 8 Replies

C# - Pass An Anonymous Type As A Parameter To A Function?

Aug 1, 2011

After reading this post i realized that i cannot pass an anonymous type as a parameter to a function. So what other options do i have?

Perhaps, passing a Query.ToList as parameter would help, or am i re-inventing the wheel?

Update: I have the following query, which i would like to pass to a function:

Sub Test
Dim Query = (From c In DB Select New With { .ElementName = c.Name })
DoSomething(Query)

[Code].....

View 3 Replies







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