all groups > dotnet general > april 2006 > threads for friday april 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Crystal Report in .Net
Posted by Tedmond at 4/28/2006 8:15:01 PM
Dear all,
I have used Crystal Report Viewer in my .Net application. However, when I
run my application in user's PC, I got the error something like
'Can not find KeycodeV2.dll'
Why? How to solve it?
Thanks for any help!
Tedmond... more >>
Problem with timer in service
Posted by r norman at 4/28/2006 5:09:45 PM
Please excuse the cross-posting. This question was raised in
microsoft.public.dotnet.general but hasn't been answered so I am
trying where I can.
There are two of us who have the same problem in a service: the
Timer::Tick event processor never gets called. We have set the timer
interval, ... more >>
.NET 2.0 performance bug in ArrayList.Sort
Posted by Alex Chudnovsky at 4/28/2006 2:57:02 PM
I have come across with what appears to be a significant performance bug in
..NET 2.0 ArrayList.Sort method when compared with Array.Sort on the same
data. Same data on the same CPU gets sorted a lot faster with both methods
using .NET 1.1, that's why I am pretty sure its a (rather serious) bu... more >>
This a managed newsgroup? (was re: Conflicts between .NET 1.1 and .NET 2.0?)
Posted by Andrew at 4/28/2006 12:33:28 PM
Hello,
I posted a question about conflicts between .NET 1.1 and .NET 2.0 back on
March 20, but received no reply.. Did it just fall between the cracks?
Here is my original post:
I was looking on the Microsoft web page "How to Get Windows 'Monad' Shell
Beta" at:
http://www.microsoft.com... more >>
Are there main applications in .net
Posted by Kevin at 4/28/2006 12:13:54 PM
We are trying to decide if we should be porting our applictions to
..net. Are there main stream applications that are .net?
We like the framework, but worry that if Microsoft decides to go
another direction we would have wasted our time moving to .net.
Are there any real world examples of c... more >>
Compile error on TimerCallback
Posted by Thirsty Traveler at 4/28/2006 11:50:52 AM
I am getting a compile error ("No overload for 'Timer_Tick' matches delegate
'System.Threading.TimerCallback'") on the following code and can't figure
out why. Does anyone have any ideas?
public partial class CrystalService : ServiceBase
{
public CrystalService()
{
Initial... more >>
ServiceTimer won't fire
Posted by Thirsty Traveler at 4/28/2006 8:58:04 AM
I dropped a Timer object onto a Windows Service and set enabled=true...
however, it does not appear to be firing. Do I need to do something else?
... more >>
Regex Text parsing
Posted by JaythePCguy NO[at]SPAM gmail.com at 4/28/2006 7:37:40 AM
Hi,
I am trying to write a text parser to group all nonprintable and
control characters, spaces and space delimited words in different
groups using Regex class. Using a parsing of (?<Commands>[
\x00-\x1f\x7f-\xfe])|(?<Spaces>[ \x20])|(?<Text>[ \x21-\x7e]+) on my
sample text of \tOne\ncar red ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Encrpyt Simple String
Posted by DHarry at 4/28/2006 5:11:02 AM
In my app I have a MessageBox like the following:
this.MessageBox.Show("Hello");
Question: How do I encrypt the String "Hello" in C# (2.0), so that the user
can't "directly" see the String, for example while using Lutz Roeders .NET
Reflector?
What about using SecureString?... more >>
Debugging a .NET1.1 application in a. .NET2.0 process.
Posted by hvj NO[at]SPAM paralax.nl at 4/28/2006 4:54:36 AM
I need to run a .NET1.1 program in a .NET2.0 CLR. The .NET1.1 exe
starts correctly in .NET2.0. Now I want to debug in Visual Studio 2005.
But when I try to open the .NET1.1 project, Visual Studio wants to
convert it to .NET2.0 what I don't want.
How can I make Visual Studio open a .NET1.1 proj... more >>
Javascript Debugging
Posted by RG at 4/28/2006 12:30:41 AM
I am looking to debug javascript code imbeded in aspx page. I would like to
attach an ie process and step through js code. The attaching part I am able
to do. How do you break and step through in javascript?
Thanks in advance
... more >>
|