Convert C# Delegate Function?

Oct 2, 2011

Here there's an old question about this code.

xmpp.OnLogin += delegate(object o)
{
xmpp.Send(

[code]....

View 2 Replies


ADVERTISEMENT

Convert Delegate From C# To .net?

Aug 3, 2011

I'm having trouble converting a C# delegate to VB.NET.

How can this be done?

public MainForm()
{
InitializeComponent();
_twain = new Twain(new WinFormsWindowMessageHook(this));
_twain.TransferImage += delegate(Object sender, TransferImageEventArgs args)

[Code]...

View 2 Replies

Convert Delegate From C# To VB?

Oct 28, 2011

how can I convert the following code from C# to VB without exposing "variable" as global variable.

[Code]...

View 3 Replies

Convert Code C# To Delegate

Jun 8, 2012

I'm trying to convert the c # code of a sample code to vb.net but I could with the following line of code. it is an event, delegate. but I can not build a functional structure.

[Code]....

View 1 Replies

Convert Lines Of Delegate From C#

Mar 19, 2012

I have a code from Fleck that actually works fine in the C# (no errors)and this is a line in a class library:[code]can someone tell me what is the valid vb .net code for that?

View 1 Replies

Can't Convert A Delegate (from AddressOf) To A Long?

Feb 19, 2009

I am using the EnumWindows API Call, and I've looked at an API website. It can't convert a Delegate (from AddressOf) to a Long, so I made a delegate type for it. (Uh-oh, already.) I need to know something that will take the returned IntPtr and get the window title, so I can activate it with another API call and send some keys.

View 8 Replies

Function Calling Using Delegate?

Feb 2, 2011

I have one master page and then content page on the master page and also have one UC on the master page, now i want to filter data from usercontrol on and populate on content page using delegate.

I have achieved this in C# but i am not able to do this in VB.NET

Because in VB.NET i am not able to overload event of the uc.

View 3 Replies

Dynamically Change The Function Of A Delegate In .NET?

Jun 18, 2009

Suppose I have a class that represents a product to be priced using one of a number of different pricing strategies. This pricing occurs hundreds of times per second, so to eliminate repetitive if/else statements I am instead using a delegate to launch the appropriate strategy, like so:

Private Delegate Sub PricingModel(ByVal params As PricingParameters)
Private myPricingModel As PricingModel
Private myPricingParameters As PricingParameters[code].....

But this doesn't look right to me (though it seems to work). Is there an accepted/better way of doing this? Or is this the standard way? Or is this just simply a doomed approach from the start?

View 2 Replies

Function Have A Non Compatiable Signature With This Delegate?

Oct 26, 2011

The compiler is telling me that these signatures are incompatiable, but they seem fine to me.[code].....

View 2 Replies

Passing Parameters To Delegate Function?

Nov 21, 2010

I need to convert the following C# code to VB.NET:

public bool TryGetRewriteMatch(UrlContext url, out RedirectMatch match)
{
// NOTE: Normally this would use regular expression matches, cached database

[Code].....

However, I need to reference Url and ProductID in the function and I don't know how to pass them as parameters or get their values from the original function.

View 4 Replies

.net - Create And Pass Custom Function As A Delegate?

Aug 5, 2009

I have a function Process(data, f) where data is a normal parameter and f is a function needed to process the data (passed as a delegate to Process)

The signature of f is int f(a,b,c), with a, b, c supplied by Process when it calls the delegate.

Up until here, standard delegate usage.

Now, I have a special but common case where I would like to call Process with a constant f function. So I would like to write SimpleProcess(data, k) so that the caller does not need to create a delegate in this case, just pass the constant k (the only information needed).

So I need to dynamically create a constant function, g(a,b,c) which takes 3 parameters (which are ignored) and always returns k. This has to be done within the SimpleProcess function, so that I can then simply call Process(data, g) from within that function, without the need to rewrite the whole Process function for this special case.

View 3 Replies

C# - Registering A Delegate Function With An ISO C++ Callback (on Mono)

Apr 8, 2010

I am exposing some ISO C++ data types to .Net (mono on Linux to be precise).For the purpose of brevity, I shall refer to C# in my question, although my question relates to all of the .Net languages (with C# and VB.Net being my target languages). So far, I have worked out how to expose the ISO C++ data types in C# class(es) for use in mono -The only problem so far is how to deal with the C++ callbacks. In .Net languages (C# and Vb.Net), I believe 'delegates' are the callback equivalent.

Sticking with C# for now, can anyone recommend a way that I can register the C# delegate functions with my ISO C++ code.The ISO C++ code is a notification library, and I want to be able to "push" the notifications to the mono framework (i.e. C# delegates in this case).My underlying assumption is that the mechanism/steps to implement this would be the same for the .Net languages - I'll just have to code the actual delegates in the .Net language of choice - is that assumption correct?Last but not the least, is the question of thread saftey. The underlying ISO C++ code that I am exposing to .Net (mono to be more specific), is both re-ntrant and thread safe - do I have to do anything "extra" to call .Net delegate from my ISO C++ code?

View 1 Replies

Delegate Function .net : Error Says Expression Expected

Aug 13, 2010

Having problem understanding Delegate error. Error says expression expected, How do I fix?Here is the offending line (#259)....

mylist.ForEach(Delegate Function(P As linkItem) As System.Char[] )

Here is the entire code.

<script language="VB" runat="server">
Function sectionTitle(ByRef f As String)
'Open a file for reading

[code]....

View 3 Replies

Multicast Delegate: Represents A Multicast Delegate; That Is, A Delegate That Can Have More Than One Element In Its Invocation List?

Jan 30, 2010

from the documentation we have this: Multicast Delegate: Represents a multicast delegate; that is, a delegate that can have more than one element in its invocation list.

so am i right to say that Multicast delegate is no different from a normal delegate other than the fact that it has arguments. so System.Action is a 'normal' delegate whereas System.Action(T)(Byval obj as T) is a multicast delegate?

View 5 Replies

Create A Delegate And Use The Function In Program Called DoStuff()?

Jan 4, 2012

For a class, I have to create a delegate and use the function in my program called DoStuff(). There is an error tht says "Method 'Public Sub DoStuff(stringVal As String)' does not have a signature compatible with delegate 'Delegate Sub MyDel()'.

[Code]...

View 2 Replies

Invoke Parameterized Function Delegate From Background To UI Thread?

Oct 4, 2010

What is the Invoke syntax to marshall data from a background thread receive callback method to a function on the UI Thread?(Form1).

Public Class Form1
MyDelegate = New DisplayData(AddressOf DisplayData)
Private Sub Form1_Load()
MyDelegate = New DisplayData(AddressOf DisplayData)

[code]....

View 12 Replies

.net - Performance Implications Of Implementing A Generic Type And A Delegate In A Function?

Aug 4, 2010

I wrote a serializer (to Byte Array) for dictionaries that have a string key, but an object of some sort as its value.I've never implemented a generic type in a function or used a delegate before, so I'm a bit concerned about this being significantly slower than writing a serialization function for a specific type of Dictionary (Dictionary(Of String, MyClass) for example)Should this code be significantly slower due to the use of the generic type or the delegate?

[code]...

It works, and I could loop it and compare it to a more static Dictionary serializer, but I'm more concerned about when I start using this for a lot of different String/Object dictionary combinations, and it'll take me a long time to write a bunch of static dictionary serializers (that's what I'm hoping to avoid in the first place)edit: simplified intro text

View 1 Replies

Nested Function Does Not Have The Same Signature As Delegate 'System.Func(Of Object)'

Apr 5, 2012

I have a section of code that deletes a lot of columns, one at at time, based on conditions that arise. Currently it does this:

objrpt.objXLSheet.Columns(col) _
.EntireColumn.Delete(Excel.XlDeleteShiftDirection.xlShiftToLeft)

There are so many of these, that I'm getting tired of looking at these lines so I want to curry the references to the Excel stuff.I tried:

Dim DelCol As Func(Of Integer) = Function(col As Integer) _
objrpt.objXLSheet.Columns(col) _
.EntireColumn.Delete(Excel.XlDeleteShiftDirection.xlShiftToLeft)

but that won't compile, giving me the error: "Nested function does not have the same signature as delegate 'System.Func(Of Integer)'. Ah forget it. I see that I'm trying to call a method from a function. I guess that won't work.Wait, I'm now trying it another way. I first defined a function:

Private Function DeleteColumn(ByRef objrpt As ExcelReport, ByVal col As Integer) As Object
DeleteColumn = Nothing
Dim objrng As Excel.Range

[code]....

Now the error message is a little different:

"Nested function does not have the same signature as delegate 'System.Func(Of Object)'.

View 14 Replies

Delegate - BeginInvoke - EndInvoke - Clean Up Multiple Async Threat Calls To The Same Delegate?

Feb 9, 2010

I've created a Delegate that I intend to call Async.

[Code]...

View 2 Replies

Get A Error" Method 'Private Shared Sub Ping Does Not Have A Signature Compatible With Delegate 'Delegate Sub ?

Jun 1, 2010

Code:
Public Class SendPings
Shared Sub New()
AddHandler Post.Saved, AddressOf Post_Saved[code].....

I get a error" Method 'Private Shared Sub Ping(item As BlogEngine.Core.IPublishable, itemUrl As System.Uri)' does not have a signature compatible with delegate 'Delegate Sub WaitCallback(state As Object)'.

View 4 Replies

VS 2010 : Convert A DLL Function Call Which Has The Callback Function Routine Called Within The DLL Function Call?

May 25, 2012

I am trying to convert a DLL function call which has the Callback function routine called within the DLL function call.The DLL function call signature is like this:

typedef void *HANDLE;
typedef HANDLE HACQDESC;
DECLARE_HANDLE (HWND);

[code]....

how to convert this DLL call to VB.NET and also how to create the callback function and send it as parameter to this function
call.

View 15 Replies

Invoke An Instance Function Delegate On An Instance Of A Generic Type?

Aug 4, 2010

D is a dictionary whose entry values are of Type T..What I'm attempting to do is have a delegate like "Serializer" below that I can invoke on an instance of T, such as "Entry.Value" below.Please see the "return Entry..." line below for my wishful thinking.[code]

View 2 Replies

Converting C# Codes With "Delegate Function"

Sep 8, 2010

[Code]...

I tried to convert it using the converter in developer fusion but I got following codes which breaks where the "delegate" code is.

[Code]...

View 4 Replies

C# - Solve This Error "Cannot Convert Lambda Expression To Type 'string' Because It Is Not A Delegate Type"

Jun 12, 2010

. I get this error: "Cannot convert lambda expression to type 'string' because it is not a delegate type" - keyword select become underlined in blue

[Code]...

Above code should displays drop list of employees first name and last name in a combo box

View 2 Replies

Multithreading - Delegate Within A Delegate?

Mar 23, 2010

I am trying to write a VB.NET alternative to a C# anonymous function.I wish to call Threading.SynchronizationContext.Current.Send which expects a delegate of type Threading.SendOrPostCallback to be passed to it. The background is here, but because I wish to both pass in a string to MessageBox.Show and also capture the DialogResult I need to define another delegate within. I am struggling with the VB.NET syntax, both from the traditional delegate style, and lambda functions.My go at the traditional syntax is below, but I have gut feeling it should be much simpler than this:

Private Sub CollectMesssageBoxResultFromUserAsDelegate(ByVal messageToShow As String, ByRef wasCanceled As Boolean)
wasCanceled = False

[code].....

View 2 Replies

Convert Function From VB6 To .NET?

Mar 10, 2009

In VB6 there was a function called String$. Is there an equivalent of this in .NET?I am trying to convert this function from VB6 to VB.NET

VB6 Private Function ByteOrder(ByVal vNumb As Variant, ByVal vByte As Variant) As String
Dim bLeft As Byte Dim sNumb As String

[Code]...

View 4 Replies

Convert PHP Function To VB?

Jan 31, 2012

only code I can find after several hours of searching is a PHP function. Although I can more or less see what's happening, I'm not able to convert everything. The main problem is the "temp_getBytes" function. I don't know how to convert that.I already have the file as a byte array, because it was decrypted, so I'm writing the byte array to a memory stream in order to work with the data. I've added a bunch of question marks where I'm having a problem converting the code.

vb.net
Imports System.IO
Public Class Form1

[code].....

View 1 Replies

Convert This Function To C#?

May 25, 2010

I need to convert this function to C#.
Public Function GetAppGUID(ByVal sectionId As String) As String

Dim hexString As String = Nothing
Dim i As Integer[code].....

View 4 Replies

BindingSource With Convert Function

Mar 21, 2011

I'm using a SQL Server database and a bindingsource, and i want to filter a numeric field in order to, for instance, when I write 1, the grid shows all the rows in which that field begins whith 1 (1,10,14...). In order to do this, I have to convert the field to varchar, but VB shows an error message when using cast or convert functions. I have this sentence in my

[Code]...

View 3 Replies

Convert C# Lambda Function To .net?

Oct 6, 2011

I have this function that maps a IDataReader to a class. It is obviously written in C#. My co-worker wants to use the same method in his code, but he is writing in VB.net. Basically I am having difficulty rewriting this due to the Lambda expressions used in C#. He is running .Net 3.5.

[Code]...

View 3 Replies







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