private void BtnJsonResponse_Click(object sender, EventArgs e) { if (SurveyRequest != null) { if (viewJsonResponse == null) viewJsonResponse = new frmViewJson(); viewJsonResponse.JSON = SurveyRequest.JsonResponse; if (viewJsonResponse.Visible == false) viewJsonResponse.Show(); } }
private void BtnJsonResponse_Click(object sender, EventArgs e) { if (SurveyRequest != null) { if (viewJsonResponse == null) { viewJsonResponse = new frmViewJson(); } viewJsonResponse.JSON = SurveyRequest.JsonResponse; if (viewJsonResponse.Visible == false) { viewJsonResponse.Show(); } } }