2
votes
1answer
79 views
What is the VB equivalent of this C# syntax, dealing with delegates?
Is it possible to translate the following C# code into VB.NET, using VB 9.0?
delegate Stream StreamOpenerDelegate(String name);
void Exec1()
{
WorkMethod( x => File.OpenRe …
2
votes
2answers
104 views
What is the name for this usage of delegate in C#?
This is a terminology question. In C#, I can do this:
delegate Stream StreamOpenerDelegate(String name);
void WorkMethod(StreamOpenerDelegate d)
{
// ...
}
void Exec1()
{
…
2
votes
3answers
120 views
Anonymous c# delegate within a loop
Hi all i am trying to write and anonymous delegate. as the integer variable is shared among the delegate i need it to be the local instance of every delegate such that rs[0] always …
0
votes
0answers
58 views
Button Delegate not being called.
I have a page with a form in a user control. When the button is clicked the validation methods are called correctly client side and server side, but the delegate method is not proc …
0
votes
3answers
67 views
C# delegate with string reference to c++ callback
I wrote a C# application that uses an unmanaged c++ dll via managed c++ dll.
In the unmanaged dll, there's a callback that one of its params is std::string &.
I can't seem to …
0
votes
2answers
59 views
how to call anonymous delegate dynamically
I hava a delegate
public delegate void Context();
And i had implemented it by anonymous method,
public Context fakeHttpContext = () =>
{
...
…
0
votes
1answer
31 views
EXC_BAD_ACCESS on UITableView reloadData call
Hi all,
I've come to the point of pulling my hair out over this one. I keep getting a EXC_BAD_ACCESS when I call the reloadData for the UITableView. I'll lay the groundwork for …
0
votes
1answer
48 views
self.delegate = self; what’s wrong in doing that?
Hi,
self.delegate = self; what's wrong in doing that?
and what is the correct way of doing it?
Thanks, Nir.
Code:
(UITextField*)initWith:(id)sender:(float)X:(float)Y:(float)wid …
2
votes
1answer
36 views
Active Record with Delegate and conditions
Hi,
Is it possible to use delegate in your Active Record model and use conditions like :if on it?
class User < ActiveRecord::Base
delegate :company, :to => :master, :if = …
0
votes
1answer
45 views
Pass an Event as parameter
I have a class which bundles events and registers controls to easily register/unregister them, it's basically used this way:
Private Sub MyFocusHandler(ByVal sender As Object, ... …
0
votes
1answer
29 views
Can I call -indexPathsForVisibleRows after scrolling UITableView without subclassing?
After each scroll (however large or small) of a UITableView, I would like to call -indexPathsForVisibleRows to run a method on the data that corresponds to visible cells.
Are ther …
0
votes
2answers
44 views
C# Custom Events with Overloads
So I have a custom event like this:
Work w = new worker()
w.newStatus += new worker.status(addStatus);
w.doWork();
void addStatus(string status)
{
Messag …
4
votes
5answers
150 views
In C# could we imagine writing our own events without writing delegates?
I learned the object-oriented in Java. Now in develop in C#. This means that I never really understood the functioning of delagates but I know how to use them.
Lately I discovered …
1
vote
2answers
43 views
Merge iPhone app delegate into another project
I have an open-source iPhone API that I downloaded, and that is a standalone app with its own app delegate and applicationDidFinishLaunching: method. How do I merge this into my ow …
1
vote
2answers
41 views
How to Get Function String Assigned to Delegate
Hi Everyone,
As you may know, when we have this code in Javascript :
function getName()
{
var getName = "Hello";
return getName;
}
var NameString = getName;
alert(NameStrin …
