Anonymous Delegate
Thu, 28 Aug 2008 14:56:23 +0200
hi @all,
is there something like an anonymous delegate?
This is the original code:
--
private delegate void DelegateSetFormCaption(string text);
private void SetFormCaption(string text)
{
if (this.InvokeRequired)
{
DelegateSetFormCaption d = new
DelegateSetFormCaption(SetFormCaption);
thi ...
|
MSDN Spotlight video stops after 5 seconds
Thu, 28 Aug 2008 05:56:00 -0700
This is driving me nuts.
I really need to watch a video on MSDN spotlight
(http://www.microsoft.com/emea/msdn/spotlight/) but every video just stops
working every 5 seconds. I've browsed online and it seems this is a problem
for other people, yet there doesnt seems to be a solution available.
I am runn ...
|
Linq. Select
Thu, 28 Aug 2008 04:47:05 -0700 (PDT)
Hello,
I have 3 tables with the following fields:
Posts: PostID, Title, Body
Tags: TagID, Name
PostsTags: PostID, TagID
1. I need to select all Tags (TagID and Name) that exist in PostsTags
adding a field Count which holds the frequency of how often each tag
is associated to a post, i.e., the number of ...
|
References to other assemblies
Thu, 28 Aug 2008 12:08:11 +0200
Hello!
Assume I have this simple program below. Here I use another assembly when
calling Console.WriteLine(...);
The code for this method WriteLine is located in another Assembly which is
mscorlib.dll
Now to my question in the assembly which is created for this program is
there a reference
to the assembly m ...
|
Examine an Assembly
Thu, 28 Aug 2008 11:42:56 +0200
Hello!
Is it possible for a program to look up classes, methods and properties of
the
objects defined within the assembly.
How is that done if it's possible ?
//Tony
...
|
Printing(desperate!)
Thu, 28 Aug 2008 02:11:43 -0700 (PDT)
I need to print to a slip printer. The printer has a continues feed .
I need to print the data i have with a small space below the slip.But
even when i print raw text to the printer the printer still takes the
page to be a A4 and spits out a slip the length of an A4. What could i
set so the printer just prints t ...
|
MSIL code
Thu, 28 Aug 2008 10:54:15 +0200
Hello!
I'm reading in a book and it says the following.
"MSIL(Microsoft Intermediate Language) generated by all the .NET language
compilers. This is a common
standard for the binary code generated by the compilers and is what is
executed by the CLR"
Now to my question about the text.
Is it really true t ...
|
|
|
Metadata in the assembly
Thu, 28 Aug 2008 09:31:45 +0200
Hello!
Can somebody give some example for what kind of metadata in included in the
assembly ?
//Tony
...
|
OT:Passing Data without database or Dataset
Thu, 28 Aug 2008 08:53:33 +0200
Hi there
Im a crystal reports newbe, an have following question:
Is it possible to pass data (e.g. Images or Strings) to a crystal report
without using a dataset, datasource or similar?
Can i define some accessors in the report, for changing an image, or a text
in the report during runtime?
TIA
Lukas
...
|
Click-once app does not run
Wed, 27 Aug 2008 18:58:06 -0700 (PDT)
I built a small app with VS C# Express 2008, and published it as a
click-once app. I tried installing it on my local machine, and when I
click on its icon from the Start menu, nothing happens. Everything
works fine when I run the code from VisualStudio. I get this problem
if I use Debug or Release build config.
...
|