Click here to Skip to main content
16,004,686 members
Home / Discussions / C#
   

C#

 
GeneralRe: Deserializing in a different assembly... how to? Pin
gokselm23-Nov-03 8:35
gokselm23-Nov-03 8:35 
GeneralRe: Deserializing in a different assembly... how to? Pin
Heath Stewart24-Nov-03 4:30
protectorHeath Stewart24-Nov-03 4:30 
GeneralRe: Deserializing in a different assembly... how to? Pin
gokselm24-Nov-03 8:44
gokselm24-Nov-03 8:44 
GeneralRe: Deserializing in a different assembly... how to? Pin
Heath Stewart24-Nov-03 9:43
protectorHeath Stewart24-Nov-03 9:43 
GeneralMysterious vanishing tooltips... Pin
ToddTTT20-Nov-03 15:30
ToddTTT20-Nov-03 15:30 
GeneralRe: Mysterious vanishing tooltips... Pin
Heath Stewart21-Nov-03 4:04
protectorHeath Stewart21-Nov-03 4:04 
GeneralC# and Crystal Reports Viewer Pin
trevleyb20-Nov-03 13:45
trevleyb20-Nov-03 13:45 
GeneralRe: C# and Crystal Reports Viewer Pin
Heath Stewart20-Nov-03 14:14
protectorHeath Stewart20-Nov-03 14:14 
The only event on ReportDocument is InitReport which fires when the report definition is loaded. I also didn't notice any private or internal methods or properties you could leverage through reflection when looking at the IL for that class. Frown | :(

At least make sure you show a wait cursor. A good way to do this is to save the current cursor and make sure that that cursor is restored - even in case of a failure:
Cursor old = Cursor.Current;
try
{
  Cursor.Current = Cursors.WaitCursor;
  // Do work.
}
// Optionally catch exceptions.
finally
{
  Cursor.Current = old;
  old.Dispose();
}
I know it's not what you want, but it at least informs the user that something's going on (which is part of the Windows UI guidelines anyway).

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralExecuting scripts Pin
Alex Korchemniy20-Nov-03 13:13
Alex Korchemniy20-Nov-03 13:13 
GeneralRe: Executing scripts Pin
Heath Stewart20-Nov-03 14:04
protectorHeath Stewart20-Nov-03 14:04 
GeneralRe: Executing scripts Pin
Alex Korchemniy20-Nov-03 14:32
Alex Korchemniy20-Nov-03 14:32 
GeneralRe: Executing scripts Pin
Heath Stewart21-Nov-03 3:16
protectorHeath Stewart21-Nov-03 3:16 
GeneralLeppie, please read Pin
Den2Fly20-Nov-03 10:44
Den2Fly20-Nov-03 10:44 
GeneralRe: Leppie, please read Pin
leppie20-Nov-03 11:28
leppie20-Nov-03 11:28 
GeneralCuz he's a C# wizard, has to be a twist... Pin
Jeremy Kimball20-Nov-03 6:47
Jeremy Kimball20-Nov-03 6:47 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Heath Stewart20-Nov-03 7:24
protectorHeath Stewart20-Nov-03 7:24 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Jeremy Kimball20-Nov-03 7:39
Jeremy Kimball20-Nov-03 7:39 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Alvaro Mendez20-Nov-03 8:21
Alvaro Mendez20-Nov-03 8:21 
GeneralHow do you think he does it? I don't know. Pin
Kentamanos20-Nov-03 8:39
Kentamanos20-Nov-03 8:39 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Giles20-Nov-03 8:55
Giles20-Nov-03 8:55 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Jeff Varszegi20-Nov-03 14:24
professionalJeff Varszegi20-Nov-03 14:24 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
eggie520-Nov-03 16:14
eggie520-Nov-03 16:14 
GeneralRe: Cuz he's a C# wizard, has to be a twist... Pin
Nick Parker23-Nov-03 6:22
protectorNick Parker23-Nov-03 6:22 
GeneralClass not registered error Pin
Rekha desai20-Nov-03 5:12
sussRekha desai20-Nov-03 5:12 
GeneralRe: Class not registered error Pin
Heath Stewart20-Nov-03 7:20
protectorHeath Stewart20-Nov-03 7:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.