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 the use of activex control in .net?

0 Answers  


How do you turn off cookies for one page in your site? Give an example.

0 Answers  


What is machine.config in .net?

0 Answers  


What is the difference between the C#.NET and VB.NET?

6 Answers   MCN Solutions,


Explain dataset.acceptchanges and dataadapter.update methods in .net?

0 Answers  






Is atl redundant in the .net world?

0 Answers  


Is .net core free?

0 Answers  


Please explain what is immutability, what is it for and how is it codified?

0 Answers  


How is .net core cross platform?

0 Answers  


Difference abstract class and interface in .net?

0 Answers  


Tell us what is the native image generator?

0 Answers  


Explain manifest & metadata.

5 Answers   Wipro,


Categories