What is the raise event used for?

Answers were Sorted based on User's Feedback



What is the raise event used for?..

Answer / nagasaichand

The RaiseEvent statement raises an event previously declared
with the "Event" statement. Since only classes can raise
events, usage of this keyword is reserved for class modules,
forms and user controls.

Is This Answer Correct ?    7 Yes 0 No

What is the raise event used for?..

Answer / dhananjay yadav

Raise Event is used for raising events. ex raising control
event from main page .

Is This Answer Correct ?    3 Yes 3 No

What is the raise event used for?..

Answer / vini778

It is used for raising the error from sql statement
Eg shown below

IF @@TRANCOUNT>0 ROLLBACK TRANSACTION
Raise an error with the details of the
exception
DECLARE @ErrorMessage NVARCHAR
(
MAX
)
DECLARE @ErrorSeverity INT;
DECLARE
@ErrorState INT;
SELECT
@ErrorMessage=ERROR_MESSAGE
(
)
,
@ErrorSeverity=ERROR_SEVERITY
(
)
,
@ErrorState=ERROR_STATE
(
)
;
-- Use RAISERROR inside the CATCH
block to return error
-- information about the original
error that caused
-- execution to jump to the CATCH
block.
RAISERROR
(
@ErrorMessage,-- Message
text.
@ErrorSeverity,--
Severity.
@ErrorState -- State.
)
;

Is This Answer Correct ?    1 Yes 4 No

What is the raise event used for?..

Answer / manav

it is used to raise an application.

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More Dot Net General Interview Questions

Explain what is mutex?

0 Answers  


What is iis? Have you used it?

0 Answers  


What do you mean by Driver Script?

0 Answers   TCS,


What is 3 tier architecture?

0 Answers  


What is the difference between a Hash Table and a Dictionary?

1 Answers  






How is a property designated as read-only?

2 Answers   Siebel Systems,


What is "common language runtime" (clr) in .net?

0 Answers  


Differences between namespace, class, assembly?

0 Answers  


What is .net code security?

0 Answers  


for the textbox if i want to allow only numbers.what ever the characters u enter it should not take.which event u used?

5 Answers   IBM,


Explain why do we use msmq?

0 Answers  


What is finalize method in .net?

0 Answers  


Categories