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

What are the new features of Framework 1.1 ?

1 Answers  


What versions of .net are there?

0 Answers  


Explain about the features and elements present in Visual studio.NET IDE?

0 Answers  


Can we use data reader to bind gridview?

3 Answers   TCS,


Explain security measures exist for .net remoting in system.runtime.remoting?

0 Answers  






Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?

0 Answers  


How is .net able to support multiple languages?

0 Answers  


Describe the compilation process for .net code?

0 Answers  


what is prototype design pattern in .net

0 Answers   Infosys,


What is Ajax? How it is related to your project?

0 Answers   Wipro,


How is development of a Windows service different from a Windows Forms application?

1 Answers  


Explain how to produce an assembly?

0 Answers  


Categories