Click here to Skip to main content
15,901,205 members
Home / Discussions / C#
   

C#

 
QuestionHow to view SOAP request/response contents [modified] Pin
blackjack21509-Jan-07 19:41
blackjack21509-Jan-07 19:41 
QuestionHow to check form object created or not Windows App Pin
indiaone9-Jan-07 19:24
indiaone9-Jan-07 19:24 
AnswerRe: How to check form object created or not Windows App Pin
Christian Graus9-Jan-07 19:59
protectorChristian Graus9-Jan-07 19:59 
Questionform maxmizied Pin
md_refay9-Jan-07 19:22
md_refay9-Jan-07 19:22 
AnswerRe: form maxmizied Pin
Christian Graus9-Jan-07 19:59
protectorChristian Graus9-Jan-07 19:59 
GeneralRe: form maxmizied Pin
md_refay9-Jan-07 20:25
md_refay9-Jan-07 20:25 
Question.net remoting proxy Pin
s o v a n n9-Jan-07 18:03
s o v a n n9-Jan-07 18:03 
QuestionIs event handler bound to instance of object, and will it stick? Pin
JoeRip9-Jan-07 17:59
JoeRip9-Jan-07 17:59 
When you start a file conversion process in iTunes (programatically, through the COM interface), it hands you back a status object. You can poll that status object for progress data, or you can create event handlers and that object will raise progress events for you. Hence:

iTunesConvertOperationStatus itcoStatus = null;<br />
...<br />
<br />
itcoStatus = iTunesApp.ConvertFile2(strPath);<br />
...<br />
<br />
itcoStatus.OnConvertOperationCompleteEvent +=new (shortened)_OnConvertOperationCompleteEventEventHandler(itcoStatus_OnConvertOperationCompleteEvent);


My question is: once I've bound the event handler to the instance of the object, can I call:

itcoStatus = iTunesApp.ConvertFile2(strPath)

over and over without first releasing the handler? Or do I have to wait for the Complete event, release the handler, call ConvertFile2(), and rebind the handler each time?
AnswerRe: Is event handler bound to instance of object, and will it stick? Pin
Scott Dorman9-Jan-07 18:36
professionalScott Dorman9-Jan-07 18:36 
GeneralRe: Is event handler bound to instance of object, and will it stick? Pin
JoeRip10-Jan-07 14:42
JoeRip10-Jan-07 14:42 
GeneralRe: Is event handler bound to instance of object, and will it stick? Pin
Scott Dorman10-Jan-07 15:18
professionalScott Dorman10-Jan-07 15:18 
QuestionHow to send password value securly Pin
mohd imran abdul aziz9-Jan-07 17:34
mohd imran abdul aziz9-Jan-07 17:34 
AnswerRe: How to send password value securly Pin
Not Active9-Jan-07 17:40
mentorNot Active9-Jan-07 17:40 
AnswerRe: How to send password value securly Pin
Russell Jones9-Jan-07 22:27
Russell Jones9-Jan-07 22:27 
QuestionError handling Pin
Harikrk9-Jan-07 15:43
Harikrk9-Jan-07 15:43 
AnswerRe: Error handling Pin
Paul Conrad9-Jan-07 16:03
professionalPaul Conrad9-Jan-07 16:03 
AnswerRe: Error handling Pin
Christian Graus9-Jan-07 16:04
protectorChristian Graus9-Jan-07 16:04 
GeneralRe: Error handling Pin
JoeRip9-Jan-07 18:12
JoeRip9-Jan-07 18:12 
GeneralRe: Error handling Pin
JoeRip9-Jan-07 18:25
JoeRip9-Jan-07 18:25 
GeneralRe: Error handling Pin
Scott Dorman9-Jan-07 18:33
professionalScott Dorman9-Jan-07 18:33 
GeneralRe: Error handling Pin
Christian Graus9-Jan-07 18:42
protectorChristian Graus9-Jan-07 18:42 
GeneralRe: Error handling Pin
Martin Sp.10-Jan-07 3:41
Martin Sp.10-Jan-07 3:41 
QuestionTree View and Database Pin
64-bit9-Jan-07 14:49
64-bit9-Jan-07 14:49 
AnswerRe: Tree View and Database Pin
Judah Gabriel Himango9-Jan-07 15:42
sponsorJudah Gabriel Himango9-Jan-07 15:42 
GeneralRe: Tree View and Database Pin
64-bit9-Jan-07 17:35
64-bit9-Jan-07 17:35 

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.