Setup Project in Visual Studio

Create a new project Right click on Soultion Explorer of a Project. Select New Project. Select Project Type ‘Setup and Deployment’ under ‘Other Project Types’. Enter project name in text box in front of Name: Press OK How do I change the Product Name, Author, Manufaturer, etc? Select created a project from the Solution Explorer …

HttpResponse to String android

HttpClient httpclient; HttpPost httppost; HttpResponse response; httppost = new HttpPost(“website-url-goes-here”); try { response = httpclient.execute(httppost); HttpEntity entity1 = response.getEntity(); InputStream is = entity1.getContent(); String w1url = convertStreamToString(is); } catch (ClientProtocolException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (IOException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } Add function into a class …

Last Page is Blank in Crystal Report

When you check the checkbox New Page After, you will see an icon just right to it. This icon represents Formula Workshop. Click this icon and type NOT OnLastRecord. Save and close the window, you are good to test this and praise me for the rest of your lives 🙂