Showdialog Help!!!
When i use showdialog, i have one button with a dialogresult as yes. when that button is pressed i want to be able to save data. i can do that, but when the form tries to close, it does so slowly, as if it's waiting to run through the steps of saving the data. the form will somewhat disappear and then after the save is done the entire form will disappear. what is going on? how can i fix this?
for ex i have...
result = myform.dialogresult
if result = dialogresult.Yes then
confirmDialog.disableTimer()
confirmDialog.Dispose()
saveProc()
elseif....
|