What Am I Missing About Numeric Comparisons In This Simple Delegate Example?
Jul 26, 2011
I am looking specifically at the ShowInOrder method which has been passed the delegate function CompareNumbers. I am trying to figure out exactly what is going on here:
If compare(_num1, _num2) Then ...Here is the full sample.
Module Module1[code]....
View 1 Replies
ADVERTISEMENT
Apr 6, 2012
Is there a numeric text box, not an up-down box, a SIMPLE numeric box into which the user can place a number, 5 boxes actually, then on command have the five boxes added and the sum displayed?
View 8 Replies
Nov 26, 2011
I am missing something simple. I know how to bind asp.net datagrids and webforms, but this is my first time trying to bind to an object list of T in a windows form. (I am use to using datasets with datatables and im trying to get away from doing that).I have a simple object list that gets populated on the form load. However if I click a button to add a dummy record the datagridview does not display the new record added. The bindingNavigator (if clicked nextrecord) and "debug stops" all show that the new record I just added to the object list is there.
Even adding the datasource object in the watch list shows the new records are there. They are just not displaying.
I cannot seem to figure out as to why the new record is not being displayed in the datagridview when I can see the record got clearly added to the datasource.
[Code]...
View 4 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
Aug 30, 2010
I have a database of tables that I needed to do some comparison work on and sql server is limited to the means of doing string comparisons. I put all the data into lists and thought of using [URL] or string.contains but does not seem like it is working right. It is large amount of data and I need to be able to make some matches in order to avoid the manual checking of each string. Here is sample data and code;
[Code]...
View 1 Replies
May 7, 2012
I ran into a situation where I have to compare an element in one array to the corresponding element in a separate array of the same size. I've tried using Google and search for the answer though all searches came up nothing I could use.
[Code]...
View 6 Replies
Mar 6, 2010
how i would check to see if a given class supports the >, = and < operators?
Given an object passed in, I am looking for code that implements the following logic:
If GetType(someObj).SupportsScalarComparisons() Then ...
I don't know if this is a case for Reflection, or ?
View 2 Replies
Jan 5, 2010
I'm developing a relatively quick-and-dirty approach to copying some files over. The situation is that I have a point on the network where a master directory is located. This directory includes the official directory structure as well as all official files. The user's local machine should have a place in their C:Program Files directory that has the exact same directory structure.
If it doesn't, the application should create it and copy files over based on the network master. If the user's local machine does have the appropriate folders in place, then any newer files found in the network master directory should be copied over to update the user's local files. It seems to me that this would require knowledge of the root directories up to the point of the network master and the same for the local directory.
At first glance, this looks to be a bit more complicated to accomplish than I was thinking it should be. Are there any shortcuts to using say the Directory/DirectoryInfo, File/FileInfo classes, etc that would allow this to be accomplished? I'm trying not to overcomplicate it as I need to get something out pretty quick. But the answer just doesn't seem to be showing itself.
View 2 Replies
Apr 5, 2009
Has anyone here used either of the following (or any other tool) to convert your vb6 code to a .net language?Artinsoft's upgrade companion (converts to c# and vb.net)
vbmigration partner(converts to vb.net)How effective were they and what size project did you convert?
How much work was left to do afterwards?How happy are you with the resultant .net project.What was the support like?Is there a support forum anywhere for users of tools like these, neither vendor seems to offer one.What did they charge, their prices are not published and I have heard wildly differing prices from different sources for both the above examples
View 6 Replies
Jan 13, 2012
Anyone have any insight on the Big O notation for comparisons for a LINQ Except query using primitive datatypes? I couldn't find anything on google.
View 3 Replies
Jul 15, 2009
I got a list of 16 items and I have sorted them and I want to show the number of comparisons the program had to make using the insertion sort?(in a textbox for example)I mean is there a formula?
View 10 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
Jun 10, 2011
Is there anyone can post a simple code using vb,that start building a simple games ?
View 2 Replies
Jan 22, 2010
I am reading a data file and storing them in an array of string.Data is random, could be like "1","2","133,18" but sometimes there can be missing values like "?".Once I load the data in the array, I want to check if at least a majority (like 60% of them) are numeric values.If yes, then I wanna track down the higher and lowest value in the array, and output a range of 5.Loop through the array
If 60% of them are numbers (integers or decimals) then find highest value, find lowest value end if produce range
If for example lowest = 1 and highest = 100, range of 5 means 0,20,40,60,80,100 (so 5 ranges are 0-20, 20-40, 40-60, 60-80, 80-100).Also if the ranges turn to have decimals due to weird numbers, I would like to round them up.My problem is, in order to find highest and lowest when there are non numeric values in the array like "?", how should I handle those? I was thinking of something like Double.NaN but I would have to have an array of doubles.
View 3 Replies
Dec 9, 2011
Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
View 2 Replies
Apr 22, 2009
While reading this threadthe code sample there came from MSDN, which was used to demonstrate the use of a delegate. I know what Delegates are. And I know how they work when it comes to things like crossing threads and even sinks.... how ever, the sample given is a simplecontrived example, and I'm wondering why/when would I use a delegate in this situation? Or in any situation? In my head, it seems it would have been easier/cleaner to call the function pointed to directly...
View 18 Replies
Feb 11, 2010
I heard once that .net introduced an already defined delegate with no parameter that we could use instead of creating one.
View 1 Replies
Nov 23, 2009
I came across a snippet of C# code which is very useful. I am trying to convert it to VB.NET, but can't seem to.
timer.Tick += delegate { panel.Children.Add(source); timer.Stop(); };
Is it possible to translate this to something similar in VB?
View 7 Replies
Jun 28, 2010
I have below code in C#:
[Code]...
View 3 Replies
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
Oct 28, 2011
how can I convert the following code from C# to VB without exposing "variable" as global variable.
[Code]...
View 3 Replies
Dec 31, 2009
I'm in the process of converting some existing code to VB. However, I'm running into a bit of a snag. It seems that in C#, a delegate can have a return value, but not so in VB. So my question is, how would I convert the following VB code to handle this?.[code]
View 3 Replies
Jun 20, 2009
im developing a way of calculationg differentil equations in VB 2008 using the 4th order ruge-kutta method. I pursched a book by Jack Xu called "Practical WPF Graphics programming".
[Code]...
View 2 Replies
Jan 1, 2010
how this is written in VB.NET? This was an example I found on [URL]
ThreadPool.QueueUserWorkItem(delegate
{
var channelFactory = new ChannelFactory<ISimpleService>("*");
var simpleService = channelFactory.CreateChannel();
var asyncResult = simpleService.BeginGetGreeting("Daniel", null, null);
[code]....
View 3 Replies
Jul 8, 2011
I am using this delegate to invoke my methode:
[Code]...
View 2 Replies
Apr 5, 2009
for few solutions it work outs well but not for the following code. I find an error when executing the following code. I find an error :
ErrorMethod 'Public Sub test()' does not have the same signature as delegate 'Delegate Sub DataRowChangeEventHandler(sender As Object, e As System.Data.DataRowChangeEventArgs)'.C:UsersKashifDocumentsVisual Studio
[code].....
View 3 Replies
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
Apr 7, 2009
I am trying to create a delegate(as a test) for: Public Overridable ReadOnly Property PropertyName()As String My intuitive attempt was declaring the delegate like this:
[code]...
So the question is, how do I make a delegate for a property?
View 6 Replies