Silverlight - C# To .NET Delegate Command Translation?
Jan 27, 2012
Argument not specified for 'userList' of 'Private Sub OpenUserDetail(userList as Model.UserList)'. It works in the C# version just not sure about the C# to VB translation. Original declaration in C#:
private readonly DelegateCommand<EmailDocument> openMessageCommand;
this.openMessageCommand = new DelegateCommand<EmailDocument>(this.OpenMessage);
private void OpenMessage(EmailDocument document) {
// Do stuff
[code]....
View 1 Replies
ADVERTISEMENT
Dec 23, 2008
I have a problem in translating a piece of C# code
(
http://www.codeproject.com/KB/WPF/VMCommanding.aspx)static bool ConfigureDelayedProcessing(DependencyObject depObj, ICommandSink sink) { bool isDelayed = false;
[code]....
View 7 Replies
Jan 11, 2010
How can I put AddressOf, from another class?I get this error 'AddressOf' operand must be the name of a method (without parentheses). "Is there an Eval () function in VB.NET? Or how does one do this?
Public Shared Property e As UserControl
Public Shared Sub SetButton(ByVal button As String, ByVal Objekt As [Delegate])
Dim errorbuttom1 As Button = e.FindName("errorButton1")
AddHandler errorbuttom1.Click, AddressOf Objekt
End Sub
View 1 Replies
Jun 4, 2012
Background: My application is used to execute tests using Selenium RC servers, and occasionally I'm running into a problem when my call to a Selenium command doesn't return the response from the RC server - it then ends up blocking the thread that is executing the test.
[Code]...
View 1 Replies
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
Feb 9, 2010
I've created a Delegate that I intend to call Async.
[Code]...
View 2 Replies
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
Mar 19, 2009
I have a LOB app written in VB.NET with a WinForms front-end and SQL back-end. After many months weighing up how to get onto the Web, I decided last month to use Silverlight 2. Now, Silverlight 3 Beta is out, but there is no end-user runtime.
Does anyone know when the runtime will be available for deployment of SL 3 apps onto client sites?
My dev timeline is about 3 months: should I persist with SL 2 and then u/g to SL3, or jump straight in to SL3?
View 5 Replies
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
Aug 16, 2011
I tried to translate following c# code
public static class ObjectSetExtensions
{
public static void AddObjects<T>(this ObjectSet<T> objectSet, IEnumerable<T> objects)
{
foreach (var item in objects)
{
objectSet.AddObject(item);
[Code]...
View 4 Replies
Dec 21, 2010
Can someone translate me the following code from VB to C#? As far as I understand it is declaration of a function that calls another function from the native library "user32.dll"...Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Integer) As Integer
View 2 Replies
Sep 21, 2009
translate the following code from VB to C#? As far as I understand it is declaration of a function that calls another function from the native library "user32.dll"...
Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Integer) As Integer
View 2 Replies
Sep 28, 2010
What is the best/easiest way to "translate" it into VB.NET? Especially i tried to convert this code into VB.NET, but i failed with:
yield return new MatchNode(++index, current.Value);
What i have is:
Imports System.Collections
Imports System.Data.SqlTypes
Imports System.Diagnostics.CodeAnalysis
[code]....
View 5 Replies
Jun 17, 2011
[code].....
View 3 Replies
May 15, 2009
I am coding an application in VB.NET that sends sms.Would you please post PYTHON->VB.NET translation of this code and/or guidelines?
[Code]...
View 2 Replies
Jul 14, 2011
I have the following code in VB.NET
<#@ template debug="false" hostspecific="true" language="VB" #>
<#@ assembly name="System" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="System.Xml" #>
<#@ assembly name="System.Xml.Linq" #>
[Code]...
View 1 Replies
Mar 5, 2009
I have a combo box as a dropdownlist box that contains list of states like: IA - Iowa. On form_load, I want the combo box to display a string value that I pass in. However, my string value is a 2-char that represents the state (eg. IA). How can I populate it so that IA - Iowa is selected while my string value is IA. Technically, string "IA - Iowa" does not equal "IA".
[Code]...
View 5 Replies
Mar 31, 2012
It's to open a file by FID. I don't think the object ID will be used...
typedef struct {
DWORD dwSize;
FILE_ID_TYPE Type;
[code]....
View 9 Replies
Apr 11, 2012
I am attempting to find resources of information in regards to the adoption of- and the language translation for VB.NET.Specifically, I need what countries VB.NET was adopted into AND what languages it has been translated to.
View 3 Replies
Jul 19, 2011
translating this to VB? string sXml = string.Format("<?xml version="1.0" encoding="utf-8" ?><lPartID>{0}</lPartID>", Dts.Variables["PartID"].Value);
View 5 Replies
Mar 11, 2010
I am writing an application in vb.net using a mysql database.I need it to be multilingual.I have not found much useful info on this so I thought I 'd go ahead and work it out myself.I have started making a translation table in the mysql database consisting of the fields id, description, lang1, lang2. I would then use the proper language column according to the configuration. Not too hard upto this point.I was wondering if there is a good reason NOT to use the database, but in stead use plain text files. A good reason would be speed for example.
View 1 Replies
Mar 30, 2011
I found a C# class ActionCommand, that implements ICommand and bases on delegates for Execute and CanExecute.Looks perfect for me so far.
[Code]...
View 3 Replies
Feb 7, 2009
I'm very new to VB 2008, but have been using Access for some time. I would appreciate it if someone could give the VB equivalents of the following:-
[Code]...
View 1 Replies
Nov 3, 2011
We are in the process of writing a WCF service using the same pattern as in WSSF. It has its service implementation which makes use of Business logic project to get the resources or save the resources using Data Access Repository. This is where the problem comes since we have to write a translator for translating Data Contract to Business Entity and Vice Versa. This translation is becoming tedious.I am looking for a way (maybe using Reflection) to write one function to Translate Datacontract to Business Entity and vice versa.
View 1 Replies
Mar 11, 2010
i have two textboxes in my form.when i type the text in the first textbox which is english language.now i need to display the the text in telugu language in other textbox.
View 1 Replies
Dec 8, 2009
I have a program in which a user enters a sentence in English into a text box, then the sentence is translated into French and German based on words in an array of structures that gets its values from a text file. I have almost all of the program written, but I am a bit confused on how to get VB to get the English words that are entered into the text box separately so they can be translated individually and the value returned. I need to use a Sub Procedure to get the English Words and to Translate them.
Here is what I have so far.
Code:
Public Class frmTranslate
' Create Structure with a member for each language
Structure Translator
Dim english As String
Dim french As String
[Code] .....
View 10 Replies
Aug 31, 2010
In VB (ASP.NET)
Application("myapp")= Server.CreateObject("APP.Engine")
aa = Application("myapp").myMethod(2)
works.
In C# I tried
Application["myapp"]= Server.CreateObject("APP.Engine")
but
Application["myapp"].myMethod(2)
fails with 'object' does not contain a definition for 'myMethod'How can I expose the public interface in C#?
View 4 Replies
Jun 19, 2009
I have an APP that reads data from MS Access tables. It all works fine except that the numbers in Access table are formatted like 800001 so when the user puts "2" in the access table, it changes to 800002 and so on. I want to read the data AS THEY APPEAR in VB.Net but it reads them without the special format. So I get 1 or 2 etc.
I know how to format the data within VB but I don't want to hard code that as the format in MS Access might change. Is there anyway I can read the data format in MS Access ?
View 3 Replies
Sep 7, 2009
i have 2 polygons: 1 - A rectangle with a certain size defined with 4, 6 points or more (what ever becomes easier). 2 - A non-rectangular polygon (a quadrangular) what i need is that when given a certain point with inside the rectangle, i can translate that same point in the other polygon in the right position.
View 3 Replies
Sep 14, 2011
I want to translate this C# code into VB.NET 2010:
using System.Activities;
using System.Activities.Statements;
using Microsoft.VisualBasic.Activities;
[code]....
View 10 Replies